#include <bits/stdc++.h>
#include "candies.h"
using namespace std;
typedef long long ll;
vector<int> distribute_candies(vector<int> c, vector<int> l,
vector<int> r, vector<int> v) {
ll n = c.size(), q = v.size();
vector<int> res(n);
for (int i = 0; i < q; i++) {
res[l[i]] += v[i];
if (r[i]+1 < n) res[r[i]+1] -= v[i];
}
ll sum = 0;
for (int i = 0; i < n; i++) {
sum += res[i];
res[i] = clamp(sum, 0ll, (ll)c[i]);
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
69 ms |
12080 KB |
Output is correct |
2 |
Correct |
53 ms |
11496 KB |
Output is correct |
3 |
Correct |
52 ms |
11344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |