// Knapsack DP is harder than FFT.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll;
#define ff first
#define ss second
#define pb emplace_back
#define AI(x) begin(x),end(x)
template<class I>bool chmax(I&a,I b){return a<b?(a=b,true):false;}
template<class I>bool chmin(I&a,I b){return b<a?(a=b,true):false;}
#ifdef OWO
#define debug(args...) SDF(#args, args)
#define OIU(args...) ostream& operator<<(ostream&O,args)
#define LKJ(S,B,E,F) template<class...T>OIU(S<T...>s){O<<B;int c=0;for(auto i:s)O<<(c++?", ":"")<<F;return O<<E;}
LKJ(vector,'[',']',i)LKJ(deque,'[',']',i)LKJ(set,'{','}',i)LKJ(multiset,'{','}',i)LKJ(unordered_set,'{','}',i)LKJ(map,'{','}',i.ff<<':'<<i.ss)LKJ(unordered_map,'{','}',i.ff<<':'<<i.ss)
template<class...T>void SDF(const char* s,T...a){int c=sizeof...(T);if(!c){cerr<<"\033[1;32mvoid\033[0m\n";return;}(cerr<<"\033[1;32m("<<s<<") = (",...,(cerr<<a<<(--c?", ":")\033[0m\n")));}
template<class T,size_t N>OIU(array<T,N>a){return O<<vector<T>(AI(a));}template<class...T>OIU(pair<T...>p){return O<<'('<<p.ff<<','<<p.ss<<')';}template<class...T>OIU(tuple<T...>t){return O<<'(',apply([&O](T...s){int c=0;(...,(O<<(c++?", ":"")<<s));},t),O<<')';}
#else
#pragma GCC optimize("Ofast")
#define debug(...) ((void)0)
#endif
const int kN = 300003;
int n, m, o[kN], p[kN];
int k, l[kN], r[kN], a[kN];
int ans[kN];
struct SGT {
int n; vector<ll> val;
SGT (int nn = 0): n(nn), val(nn+1, 0) {}
void modify(int p, int v) {
for (; p <= n; p += p & -p)
val[p] += v;
}
ll query(int p) {
ll r = 0;
for (; p > 0; p -= p & -p)
r += val[p];
return r;
}
void modify(int l, int r, int v) {
modify(l, v);
modify(r+1, -v);
}
} sgt;
ll tmp[kN];
int cnt[kN];
void wbs(vector<int> &ids, int ql, int qr) {
if (ql == qr) {
for (int &i: ids)
ans[o[i]] = ql;
return;
}
int qm = (ql + qr) / 2;
for (int i = max(1, ql); i <= qm; ++i) {
if (l[i] <= r[i]) sgt.modify(l[i], r[i], a[i]);
else {
sgt.modify(l[i], m, a[i]);
sgt.modify(1, r[i], a[i]);
}
}
for (int &i: ids) {
tmp[o[i]] += sgt.query(i);
++cnt[o[i]];
}
vector<int> lid, rid;
for (int &i: ids) {
--cnt[o[i]];
if (tmp[o[i]] >= p[o[i]]) {
lid.pb(i);
} else {
rid.pb(i);
if (cnt[o[i]] == 0)
p[o[i]] -= tmp[o[i]];
}
if (cnt[o[i]] == 0)
tmp[o[i]] = 0;
}
for (int i = max(1, ql); i <= qm; ++i) {
if (l[i] <= r[i]) sgt.modify(l[i], r[i], -a[i]);
else {
sgt.modify(l[i], m, -a[i]);
sgt.modify(1, r[i], -a[i]);
}
}
if (!lid.empty()) wbs(lid, ql, qm);
if (!rid.empty()) wbs(rid, qm+1, qr);
}
void solve() {
for (int i = 1; i <= n; ++i)
ans[i] = k+1;
vector<int> ids(m);
iota(AI(ids), 1);
sgt = SGT(m);
wbs(ids, 0, k+1);
}
void input() {
cin >> n >> m;
for (int i = 1; i <= m; ++i) cin >> o[i];
for (int i = 1; i <= n; ++i) cin >> p[i];
cin >> k;
for (int i = 1; i <= k; ++i)
cin >> l[i] >> r[i] >> a[i];
}
void ouput() {
for (int i = 1; i <= n; ++i) {
if (ans[i] == k+1) cout << "NIE\n";
else cout << ans[i] << '\n';
}
}
signed main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
input();
solve();
ouput();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
34 ms |
4288 KB |
Output is correct |
2 |
Correct |
65 ms |
5236 KB |
Output is correct |
3 |
Correct |
80 ms |
2568 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
71 ms |
2504 KB |
Output is correct |
2 |
Correct |
75 ms |
2560 KB |
Output is correct |
3 |
Correct |
51 ms |
4464 KB |
Output is correct |
4 |
Correct |
25 ms |
3148 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
2908 KB |
Output is correct |
2 |
Correct |
68 ms |
4472 KB |
Output is correct |
3 |
Correct |
17 ms |
972 KB |
Output is correct |
4 |
Correct |
73 ms |
2828 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
3876 KB |
Output is correct |
2 |
Correct |
88 ms |
5236 KB |
Output is correct |
3 |
Correct |
50 ms |
3764 KB |
Output is correct |
4 |
Correct |
93 ms |
4676 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
359 ms |
25472 KB |
Output is correct |
2 |
Incorrect |
294 ms |
21616 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
358 ms |
22200 KB |
Output is correct |
2 |
Incorrect |
283 ms |
18120 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |