Submission #922753

#TimeUsernameProblemLanguageResultExecution timeMemory
922753vjudge1Meteors (POI11_met)C++17
74 / 100
4457 ms65536 KiB
#include <bits/stdc++.h> #define speed ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define file(s) if (fopen(s".in", "r")) freopen(s".in", "r", stdin), freopen(s".out", "w", stdout) #define all(x) (x).begin(), (x).end() #define pb push_back #define sz(x) (int)x.size() #define F first #define S second #define int long long const int dx[] = {0, 1, 0, -1, -1, 1, 1, -1}; const int dy[] = {1, 0, -1, 0, -1, 1, -1, 1}; const int maxn = 3e5+7; const int inf = 1e9; const int mod = 1e9+7; using namespace std; int n, m, k; int s[maxn], need[maxn], ans[maxn]; int ql[maxn], qr[maxn], qx[maxn]; vector<int> cur[maxn], g[maxn]; int t[4 * maxn], p[4 * maxn]; struct node{ int l, r; } d[maxn]; void push(int tl, int tr, int v){ if(tl != tr){ p[v * 2] += p[v]; p[v * 2 + 1] += p[v]; } t[v] += p[v]; p[v] = 0; } void build(int tl = 1, int tr = m, int v = 1){ t[v] = p[v] = 0; if(tl == tr) return; int md = (tl + tr) / 2; build(tl, md, v * 2); build(md + 1, tr, v * 2 + 1); } void update(int l, int r, int val, int tl = 1, int tr = m, int v = 1){ push(tl, tr, v); if(l > tr || tl > r) return; if(l <= tl && tr <= r){ p[v] += val; push(tl, tr, v); return; } int md = (tl + tr) / 2; update(l, r, val, tl, md, v * 2); update(l, r, val, md + 1, tr, v * 2 + 1); } int get(int pos, int tl = 1, int tr = m, int v = 1){ push(tl, tr, v); if(tl == tr){ return t[v]; }else{ int md = (tl + tr) / 2; if(pos <= md){ return get(pos, tl, md, v * 2); }else{ return get(pos, md + 1, tr, v * 2 + 1); } } } void solve(){ cin >> n >> m; for(int i = 1; i <= m; i++){ cin >> s[i]; g[s[i]].push_back(i); } for(int i = 1; i <= n; i++) cin >> need[i]; cin >> k; for(int i = 1; i <= n; i++) d[i] = {1, k}; for(int i = 1; i <= k; i++) cin >> ql[i] >> qr[i] >> qx[i]; for(int rep = 1; rep <= 20; rep++){ for(int i = 1; i <= n; i++){ int mid = (d[i].l + d[i].r) / 2; cur[mid].pb(i); } build(); for(int mid = 1; mid <= k; mid++){ if(ql[mid] <= qr[mid]){ update(ql[mid], qr[mid], qx[mid]); }else{ update(ql[mid], m, qx[mid]); update(1ll, qr[mid], qx[mid]); } for(auto x : cur[mid]){ int sum = 0; for(auto pos : g[x]){ sum += get(pos); } if(sum >= need[x]){ ans[x] = mid; d[x].r = mid - 1; }else{ d[x].l = mid + 1; } } } for(int i = 1; i <= k; i++){ cur[i].clear(); } } for(int i = 1; i <= n; i++){ if(ans[i] == 0) cout << "NIE\n"; else cout << ans[i] << '\n'; } } signed main(){ speed int test = 1; // cin >> test; while(test--){ solve(); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...