#include<bits/stdc++.h>
#define fi first
#define se second
#define endl "\n"
#define ii pair<int, int>
using namespace std;
const int N = 1e5 + 10;
vector<long long> event[N];
vector<int> distribute_candies (vector<int> c, vector<int> l, vector<int> r, vector<int> v) {
vector<int> p;
int n = c.size();
l.insert(l.begin(), 1);
l.insert(l.begin(), 1);
r.insert(r.begin(), n);
r.insert(r.begin(), n);
v.insert(v.begin(), 2e9);
v.insert(v.begin(), -2e9);
for(int i = 0; i < v.size(); i++)
{
for(int j = l[i]; j <= r[i]; j++)
{
event[j].push_back(v[i]);
}
}
for(int i = 0; i < n; i++)
{
long long sum = 0, border = 0;
vector<long long> pref;
for(long long &j : event[i]) {
sum += j;
pref.push_back(sum);
}
long long mx = -1e18, mn = 1e18;
for(int j = pref.size() - 1; j >= 0; j--)
{
if (pref[j] < mn && mx - pref[j] > c[i]) {
border = mx - c[i];
break;
}
if (pref[j] > mx && pref[j] - mn > c[i]) {
border = mn;
break;
}
mn = min(mn, pref[j]);
mx = max(mx, pref[j]);
}
p.push_back(sum - border);
}
return p;
}
#ifdef ngu
int32_t main() {
freopen ("task.inp", "r", stdin);
freopen ("task.out", "w", stdout);
int n; cin >> n;
vector<int> c(n);
for(int i = 0; i < n; i++) cin >> c[i];
int q; cin >> q;
vector<int> l(q), r(q), v(q);
for(int i = 0; i < q; i++) cin >> l[i] >> r[i] >> v[i];
vector<int> ans = distribute_candies(c, l, r, v);
for(int &j : ans) cout << j << " ";
}
#endif // ngu
Compilation message
candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:25:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for(int i = 0; i < v.size(); i++)
| ~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2648 KB |
Output is correct |
2 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
75 ms |
29216 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2908 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2736 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2648 KB |
Output is correct |
2 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |