首页 > 代码库 > uva-10905Children's Game(贪心)
uva-10905Children's Game(贪心)
题目:uva-10905Children‘s Game(贪心)
题目大意:给出N个正整数,问将这N个整数连接后得到的最大的数。
解题思路:排序,将两两连接有AB 或是BA,将如果AB > BA ,那么就将A排在B的后面,反之则反之。
代码:
#include <stdio.h> #include <string.h> #include <algorithm> using namespace std; const int N = 55; const int M = 10000; int n; char str1[M], str2[M]; struct Num { char s[M]; }num[N]; int cmp (const Num &a, const Num &b) { strcpy (str1, a.s); strcat (str1, b.s); strcpy (str2, b.s); strcat (str2, a.s); if (strcmp (str1, str2) > 0) return 1; return 0; /* int l1 = strlen (a.s); int l2 = strlen (b.s); if (l1 <= l2) { for (int i = 0, j = 0; j < l2; i = (i + 1) % l1, j++) { if (b.s[j] != a.s[i]) return a.s[i] > b.s[j]; } } else { for (int i = 0, j = 0; j < l1; i = ( i + 1) % l2, j++) { if (a.s[j] != b.s[i]) return a.s[j] > b.s[i]; } } return 0;*/ } int main () { while (scanf ("%d", &n), n) { for (int i = 0; i < n; i++) scanf ("%s", num[i].s); sort (num, num + n, cmp); for (int i = 0; i < n; i++) printf ("%s", num[i].s); printf ("\n"); } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。