比赛 防止颓废的小练习v0.2 评测结果 AAAAAAAAAA
题目名称 接水问题 最终得分 100
用户昵称 KZNS 运行时间 0.006 s
代码语言 C++ 内存使用 0.30 MiB
提交时间 2016-10-18 10:05:18
显示代码纯文本
//KZNS
#include <cstdio>
#include <queue>
#include <vector>
using namespace std;
class cp {
    public:
        bool operator () (const int a, const int b) {
            return a > b;
        }
};
int main() {
    freopen("waterj.in", "r", stdin);
    freopen("waterj.out", "w", stdout);
    int N, M;
    scanf("%d %d", &N, &M);
    priority_queue<int, vector<int>, cp> ls;
    for (int i = 0; i < M; i++)
        ls.push(0);
    int u, a;
    for (int i = 0; i < N; i++) {
        scanf("%d", &a);
        u = ls.top();
        ls.pop();
        ls.push(u + a);
    }
    for (int i = 0; i < M; i++) {
        u = ls.top();
        ls.pop();
    }
    printf("%d\n", u);
    return 0;
}
//UBWH