#include "candies.h"
#include <bits/stdc++.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) {
long long box = c.size();
vector<long long> partial;
partial.resize(box + 1);
int e = l.size();
for (int i = 0; i < e; i++) {
partial[l[i]] += v[i];
partial[r[i] + 1] -= v[i];
}
// cout << partial[3] << endl;
vector<int> cum;
cum.push_back(partial[0]);
for (int i = 1; i < box; i++) {
cum.push_back(cum[i - 1] + partial[i]);
}
vector<int> res;
res.resize(box);
for (int i = 0; i < box; i++) {
// cout << cum[i] << endl;
if (cum[i] > 0) {
res[i] = min(c[i], cum[i]);
} else {
res[i] = 0;
}
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
130 ms |
9808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |