답안 #441821

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
441821 2021-07-06T09:27:56 Z alan8585 사탕 분배 (IOI21_candies) C++17
8 / 100
139 ms 10692 KB
#include "candies.h"

#include <vector>
using namespace std;

std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l,
                                    std::vector<int> r, std::vector<int> v) {
    int n = c.size(), q = l.size();
    std::vector<int> s(n);
    vector<long long> pre(n + 1);
    for(int i = 0; i < q; i++) {
        pre[l[i]] += v[i];
        pre[r[i] + 1] -= v[i];
    }
    long long now = 0;
    for(int i = 0; i < n; i++) {
        now += pre[i];
        s[i] = min(now, (long long)c[i]);
    }
    return s;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Incorrect 0 ms 204 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 139 ms 8856 KB Output is correct
2 Correct 123 ms 10692 KB Output is correct
3 Correct 119 ms 10688 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Incorrect 0 ms 204 KB Output isn't correct
3 Halted 0 ms 0 KB -