# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
800570 | 2023-08-01T16:16:08 Z | Khizri | Distributing Candies (IOI21_candies) | C++17 | 3247 ms | 2097152 KB |
#include "candies.h" #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back #define F first #define S second #define INF 1e18 #define all(v) (v).begin(),(v).end() #define rall(v) (v).rbegin(),(v).rend() #define pii pair<int,int> #define pll pair<ll,ll> #define OK cout<<"Ok"<<endl; #define MOD (ll)(1e9+7) const int mxn=2005; ll n,q,sum[mxn],mn[mxn],mx[mxn]; vector<ll>pre[mxn]; vector<int> distribute_candies(vector<int> c, vector<int> x, vector<int> y, vector<int> vq) { n = c.size(); q=x.size(); for(int i=0;i<q;i++){ int l=x[i],r=y[i],val=vq[i]; for(int j=l;j<=r;j++){ pre[j].pb(vq[i]); } } vector<int>ans; for(int id=0;id<n;id++){ int lim=c[id]; int sz=pre[id].size(); for(int i=1;i<=pre[id].size();i++){ sum[i]=sum[i-1]+pre[id][i-1]; } mx[sz]=mn[sz]=sum[sz]; for(int i=sz-1;i>=0;i--){ mx[i]=max(mx[i+1],sum[i]); mn[i]=min(mn[i+1],sum[i]); } int pos=0; for(int i=sz;i>=1;i--){ if(mx[i]-mn[i]>lim){ pos=i; break; } } if(mx[pos]-sum[pos]>lim){ ans.pb(lim-(mx[pos]-sum[sz])); } else{ ans.pb(sum[sz]-mn[pos]); } } return ans; } /* g++ candies.cpp grader.cpp ; .\a.exe 3 10 15 13 2 0 2 20 0 1 -11 1 4 9 0 0 -100 0 0 4 0 0 -8 0 0 200 0 0 -5 0 0 2 0 0 1 0 0 -2 0 0 1 1 67 3 0 0 -60 0 0 -41 0 0 100 -100 -96 -104 96 91 93 94 92 93 1 10 9 0 0 100 0 0 5 0 0 7 0 0 -4 0 0 -1000 0 0 2 0 0 1 0 0 10000 0 0 -9 -100 -95 -88 -92 -90 -89 1 50 8 0 0 100 0 0 -200 0 0 25 0 0 -30 0 0 14 0 0 50 0 0 -30 0 0 29 1 440 10 0 0 60 0 0 -9 0 0 -30 0 0 41 0 0 82 0 0 69 0 0 -79 0 0 -39 0 0 72 0 0 41 */
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 340 KB | Output is correct |
2 | Correct | 1 ms | 340 KB | Output is correct |
3 | Correct | 1 ms | 468 KB | Output is correct |
4 | Correct | 1 ms | 1108 KB | Output is correct |
5 | Correct | 19 ms | 14064 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 70 ms | 13476 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
2 | Incorrect | 1761 ms | 1101784 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 340 KB | Output is correct |
2 | Correct | 1 ms | 468 KB | Output is correct |
3 | Runtime error | 3247 ms | 2097152 KB | Execution killed with signal 9 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 340 KB | Output is correct |
2 | Correct | 1 ms | 340 KB | Output is correct |
3 | Correct | 1 ms | 468 KB | Output is correct |
4 | Correct | 1 ms | 1108 KB | Output is correct |
5 | Correct | 19 ms | 14064 KB | Output is correct |
6 | Runtime error | 70 ms | 13476 KB | Execution killed with signal 11 |
7 | Halted | 0 ms | 0 KB | - |