# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
79607 | 2018-10-15T05:58:34 Z | triplem5ds | Meteors (POI11_met) | C++14 | 3717 ms | 52948 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 3e5+5; int lo[N], hi[N]; int n, m, k; int a[N]; ///Meteor States int cap[N]; ///Cap for each meteor int l[N], r[N], add[N]; int val[N]; /* If i parallel binary search how should i handle the L[i], R[i] updates with segment tree */ vector<int> corrsponds[N]; int ans[N]; vector<int> qu[2][N]; const int off = 512*1024; ll laz[off<<1]; void upd(int l, int r,int v){ l += off; r += off; laz[l]+=v; if(l!=r)laz[r]+=v; while(l+1<r){ if(l&1^1)laz[l+1]+=v; if(r&1)laz[r-1]+=v; l >>= 1; r >>= 1; } } ll qry(int idx){ ll ret = 0;idx++; for(int i = off+idx;i>=1;i>>=1) ret += laz[i]; return ret; } int main(){ #ifdef ONLINE_JUDGE ios_base::sync_with_stdio(0); cin.tie(0); #endif // ONLINE_JUDGE memset(ans,-1,sizeof ans); scanf("%d%d", &n, &m); for(int i = 0; i < m; i++){ scanf("%d", a + i); --a[i]; corrsponds[a[i]].push_back(i); } for(int i = 0; i < n; i++) scanf("%d", cap + i); scanf("%d", &k); for(int i = 0; i < k; i++) scanf("%d%d%d", l + i, r + i, add + i), --l[i], --r[i]; for(int i = 0; i < n; i++){ hi[i] = k; qu[0][(lo[i]+hi[i]) >> 1].push_back(i); } for(int i = 0; i < 20; i++){ // cerr << "Search : " << i << '\n'; for(int j = 0; j < k; j++)qu[i&1^1][j].clear(); for(int j = 0; j < k; j++){ if(l[j] <= r[j]) upd(l[j]+1,r[j]+1,add[j]); else upd(l[j]+1,off-1,add[j]), upd(0,r[j]+1,add[j]); for(auto v : qu[i&1][j]){ ll sum = 0; for(auto x : corrsponds[v]){ sum += qry(x); } if(sum >= cap[v]) hi[v] = j; else lo[v] = j + 1; if(lo[v] < hi[v]) qu[i&1^1][(lo[v]+hi[v])>>1].push_back(v); } } for(int j = 0; j < k; j++){ if(l[j] <= r[j]) upd(l[j]+1,r[j]+1,-add[j]); else upd(l[j]+1,off-1,-add[j]), upd(0,r[j]+1,-add[j]); } } for(int i = 0; i < n; i++) if(lo[i] == k) puts("NIE"); else printf("%d\n", lo[i]+1); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 22776 KB | Output is correct |
2 | Correct | 29 ms | 22908 KB | Output is correct |
3 | Correct | 27 ms | 23004 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 26 ms | 23004 KB | Output is correct |
2 | Correct | 34 ms | 23080 KB | Output is correct |
3 | Correct | 27 ms | 23120 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 339 ms | 25320 KB | Output is correct |
2 | Correct | 514 ms | 27572 KB | Output is correct |
3 | Correct | 403 ms | 27572 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 445 ms | 27572 KB | Output is correct |
2 | Correct | 445 ms | 27572 KB | Output is correct |
3 | Correct | 514 ms | 27796 KB | Output is correct |
4 | Correct | 77 ms | 27796 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 249 ms | 27796 KB | Output is correct |
2 | Correct | 532 ms | 28208 KB | Output is correct |
3 | Correct | 274 ms | 28208 KB | Output is correct |
4 | Correct | 415 ms | 28208 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 481 ms | 28208 KB | Output is correct |
2 | Correct | 482 ms | 28208 KB | Output is correct |
3 | Correct | 385 ms | 28208 KB | Output is correct |
4 | Correct | 491 ms | 29120 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3717 ms | 46280 KB | Output is correct |
2 | Incorrect | 2723 ms | 46280 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3526 ms | 52948 KB | Output is correct |
2 | Incorrect | 1372 ms | 52948 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |