标签:c++
请在整数 n 中删除m个数字, 使得余下的数字按原次序组成的新数最大,
比如当n=92081346718538,m=10时,则新的最大数是9888
2 92081346718538 10 1008908 5
9888 98
我的代码:
#include <iostream> #include <cstring> using namespace std; int main() { int n,m,i,j,len,k; char a[110],b; cin >> n; while (n--) { cin >> a >> m; len=strlen(a); k=0; /*cout << "len:" << len << endl;*/ for (i=len-m-1;i>=0;--i)//规定了一共多少位 { b='0'; for (j=k;a[j]!='\0';++j)//从固定的位数中找最大的数 { if (len-j-1>=i&&(b-'0'<a[j]-'0')) //要保证取的这为数后面还要剩余足够位数的贪心(因为规定位数了) { b=a[j]; k=j+1; } } cout << b; } cout << endl; } return 0; }
标程:
#include <stdio.h> #include <string.h> int main() { int k,l,max,z; char s[105],ans[105]; scanf("%d",&z); while(z--) { scanf("%s%d",s,&k); l = strlen(s); for(int i=0,q=-1;i<l-k;i++) { max = 0; for(int j=q+1;j<=k+i;j++) if(max < s[j]) max = s[j] , q = j; ans[i] = max; } ans[l-k] = '\0'; puts(ans); } return 0; }
标签:c++
原文地址:http://blog.csdn.net/zsc2014030403015/article/details/45007807