标签:highlight strlen 最大 算法 amp 搜索 editable ++ i++
请在整数 n 中删除m个数字, 使得余下的数字按原次序组成的新数最大,
比如当n=92081346718538,m=10时,则新的最大数是9888
输入
2 92081346718538 10 1008908 5
9888 98
思想:贪心算法,最优子结构达到最优全局解
第一次从头遍历cut个数,找到最大数,并将子结构起始搜索点定在它的下一位,同时将搜索结束点后移一位。
代码:
1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) 5 { 6 int T; 7 scanf("%d", &T); 8 while (T--) 9 { 10 char string[101]; 11 int cut; 12 scanf("%s", string); 13 scanf("%d", &cut); 14 int len = strlen(string); 15 int find_time = len - cut; 16 char cur_max; 17 int index = 0; 18 while (find_time--) 19 { 20 cur_max = string[index]; 21 for (int i = index; i <= cut; i++) 22 { 23 if (string[i] > cur_max) 24 { 25 cur_max = string[i]; 26 index = i; 27 } 28 } 29 printf("%c", cur_max); 30 cut++, index++; 31 } 32 putchar(‘\n‘); 33 } 34 return 0; 35 }
标签:highlight strlen 最大 算法 amp 搜索 editable ++ i++
原文地址:http://www.cnblogs.com/ray-coding-in-rays/p/6209684.html