#include "candies.h"
#include <algorithm>
#include <cstdio>
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2")
const int INF = 1070000000;
const int N = 200008;
int n, a[N], c[N], C, res[N];
long long inc[N];
std::vector<int> distribute_candies(std::vector<int> c_, std::vector<int> l, std::vector<int> r, std::vector<int> v) {
n = (int)c_.size();
std::vector<int> ans(n);
if (n <= 2000 && l.size() <= 2000) {
for (int i = 0; i < n; ++i) c[i] = c_[i];
for (int i = 0; i < (int)l.size(); ++i) {
int ll = l[i], rr = r[i] + 1, d = v[i];
for (int j = ll; j < rr; ++j) a[j] += d;
if (d > 0) {
for (int j = ll; j < rr; ++j) a[j] = a[j] < c[j] ? a[j] : c[j];
} else {
for (int j = ll; j < rr; ++j) a[j] = a[j] < 0 ? 0 : a[j];
}
}
for (int i = 0; i < n; ++i) ans[i] = a[i];
} else {
bool pos = 1;
for (int i = 0; i < (int)v.size(); ++i) if (v[i] < 0) pos = 0;
if (pos) {
for (int i = 0; i < (int)l.size(); ++i) {
inc[l[i]] += v[i];
inc[r[i] + 1] -= v[i];
}
for (int i = 0; i < n; ++i) {
if (i) inc[i] += inc[i - 1];
ans[i] = std::min((long long)c[i], inc[i]);
}
} else {
C = c_[0];
for (int i = 0; i < (int)l.size(); ++i) {
int ll = l[i], rr = r[i] + 1, d = v[i];
//for (int j = ll; j < rr; ++j) res[j] += d;
if (d < 0) {
for (int j = ll; j < rr; ++j) res[j] = res[j] + d < 0 ? 0 : res[j] + d;
}
else {
for (int j = ll; j < rr; ++j) res[j] = res[j] + d < C ? res[j] + d : C;
}
}
for (int j = 0; j < n; ++j) ans[j] = res[j];
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
2 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
91 ms |
8812 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
81 ms |
4976 KB |
Output is correct |
3 |
Correct |
76 ms |
4540 KB |
Output is correct |
4 |
Correct |
2432 ms |
8144 KB |
Output is correct |
5 |
Correct |
2535 ms |
8280 KB |
Output is correct |
6 |
Correct |
2413 ms |
8408 KB |
Output is correct |
7 |
Correct |
2437 ms |
8412 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Incorrect |
97 ms |
4968 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
2 ms |
340 KB |
Output is correct |
6 |
Incorrect |
91 ms |
8812 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |