首页 > 代码库 > UVA 11729 Commando War
UVA 11729 Commando War
链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2829
不摘抄题目了;
解析:
简单贪心思想。
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <algorithm> #define MAXN 20005 #define RST(N)memset(N, 0, sizeof(N)) using namespace std; typedef struct Node_ { int b, j; }Node; Node N[MAXN]; int n; int cmp(const void *a, const void *b) { Node *p1 = (Node *)a; Node *p2 = (Node *)b; if(p1->j != p2->j) return p2->j - p1->j; else return p2->b - p1->b; } int max(int x, int y) { return x>y ? x:y; } int main() { int cas = 0; while(~scanf("%d", &n) && n) { for(int i=0; i<n; i++) { scanf("%d %d", &N[i].b, &N[i].j); } qsort(N, n, sizeof(Node), cmp); int res = 0, cnt = 0; for(int i=0; i<n; i++) { cnt += N[i].b; res = max(res, cnt+N[i].j); } printf("Case %d: %d\n", ++cas, res); } return 0; }
UVA 11729 Commando War
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。