# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
894870 | Sir_Ahmed_Imran | Distributing Candies (IOI21_candies) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///~~~LOTA~~~///
#include "candies.h"
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define ff first
#define ss second
#define ll long long
#define append push_back
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define N 300001
vector<ll> distribute_candies(vector<ll> c,vector<ll> l,vector<ll> r,vector<ll> v){
ll o=0;
vector<ll> x,y;
for(int i=0;i<c.size();i++)
y.append(0);
for(int i=0;i<l.size();i++){
for(int j=l[i];j<=r[i];j++){
if(v[i]>0) o+=min(v[i],c[j]-y[j]);
else o+=max(v[i],-y[j]);
y[j]=max(0LL,min(c[j],y[j]+v[i]));
}
x.append(o);
}
return x;
}