首页 > 其他 > 详细

HDU 4974 A simple water problem 模拟(水

时间:2014-08-21 19:27:14      阅读:330      评论:0      收藏:0      [点我收藏+]

水题。

#include <cstdio>
#include <iostream>
#include <queue>
#include <algorithm>
using namespace std;
typedef long long ll;
priority_queue<int> q;
int main() {
    int T, cas = 0;
    scanf("%d", &T);
    while(T-- > 0) {
        int n;
        scanf("%d", &n);
        for(int i = 0, x; i < n; i ++) {
            scanf("%d", &x);
            q.push(x);
        }
        ll ans = 0;
        while(!q.empty()) {
            if(q.size() >= 2) {
                int x = q.top(); q.pop();
                int y = q.top(); q.pop();
//                printf("%d %d\n", x, y);
                ans += y;
                q.push(x-y);
            } else {
                ans += q.top();
                q.pop();
            }
        }
        printf("Case #%d: ", ++cas);
        cout << ans << endl;
    }
    return 0;
}


HDU 4974 A simple water problem 模拟(水,布布扣,bubuko.com

HDU 4974 A simple water problem 模拟(水

原文:http://blog.csdn.net/qq574857122/article/details/38734179

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!