码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4974 A simple water problem(贪心)

时间:2014-08-21 22:53:25      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   ar   

HDU 4974 A simple water problem

题目链接

签到题,很容易贪心得到答案是(sum + 1) / 2和ai最大值的最大值

代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int N = 100005;
typedef long long ll;

int t, n;
ll a, Max, sum;

int main() {
    int cas = 0;
    scanf("%d", &t);
    while (t--) {
	scanf("%d", &n);
	Max = 0;
	sum = 0;
	ll num = 0;
	for (int i = 0; i < n; i++) {
	    scanf("%I64d", &num);
	    Max = max(Max, num);
	    sum += num;
	}
	sum = (sum + 1) / 2;
	printf("Case #%d: %I64d\n", ++cas, max(sum, Max));
    }
    return 0;
}


HDU 4974 A simple water problem(贪心),布布扣,bubuko.com

HDU 4974 A simple water problem(贪心)

标签:style   blog   http   color   os   io   for   ar   

原文地址:http://blog.csdn.net/accelerator_/article/details/38737393

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!