# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1064195 | glupan | 사탕 분배 (IOI21_candies) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "candies.h"
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int MAX_N = 1000005;
const int INF = 1e9;
vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v) {
int n = c.size(), q = l.size();
vector<int>s(n);
vector<int> pref(n+1,0);
for(int i=0; i<q; i++) {
pref[l[i]] += v[i];
pref[r[i]+1] -= v[i];
}
for(int i=1; i<=n; i++)
pref[i]+=pref[i-1];
for(int i=0; i<n; i++)
s[i] = min(c[i],pref[i]);
return s;
}