标签:style blog http java color strong
178543 4 1000001 1 100001 2 12345 2 54321 2
13 1 0 123 321
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cstdlib> 5 #include <vector> 6 #include <climits> 7 #include <algorithm> 8 #include <cmath> 9 #define LL long long 10 using namespace std; 11 char str[1100]; 12 int main(){ 13 int m,len,i,top; 14 while(scanf("%s %d",str,&m) == 2){ 15 len = strlen(str); 16 top = 0; 17 for(i = 1; i < len;){ 18 if(m && top >= 0 && str[top] > str[i]){m--;top--;} 19 else if(top != -1 || str[i] != ‘0‘) str[++top] = str[i++]; 20 else i++; 21 } 22 while(top >= 0 && m){top--;m--;} 23 if(top == -1) str[++top] = ‘0‘; 24 str[++top] = ‘\0‘; 25 printf("%s\n",str); 26 } 27 return 0; 28 }
E. A Magic Lamp,布布扣,bubuko.com
标签:style blog http java color strong
原文地址:http://www.cnblogs.com/crackpotisback/p/3842142.html