#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cmath>
#include <cstring>
#include <deque>
#include <forward_list>
#include <fstream>
#include <functional>
#include <initializer_list>
#include <iostream>
#include <iterator>
#include <limits>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>
using namespace std;
void io(string in = "", string out = "", string err = "") {
if(fopen(in.c_str(), "r")) {
freopen(in.c_str(), "r", stdin);
freopen(out.c_str(), "w", stdout);
#ifdef conv_local
freopen(err.c_str(), "w", stderr);
#endif
}
}
void conv();
int main() {
#ifdef conv_local
//io("in.txt", "out.txt", "err.txt");
auto st = chrono::steady_clock::now();
#else
#define TASKNAME ""
io(TASKNAME".inp", TASKNAME".out");
#endif
ios::sync_with_stdio(false); cin.tie(NULL);
int Q = 1;
//cin >> Q;
while(Q--) {
conv();
}
#ifdef conv_local
auto ed = chrono::steady_clock::now();
cout << "\nExcution Time: " << chrono::duration_cast<chrono::milliseconds> (ed - st).count() << "[ms]" << endl;
#endif
return 0;
}
typedef long long LL;
const int N = 300003;
int n, m, q, l[N], r[N], ql[N], qr[N], a[N], res[N];
LL f[N], p[N];
list<int> o[N];
void add(int x, LL d) {
for(; x <= m; x += x&-x) f[x] += d;
}
LL query(int x) {
LL ret = 0;
for(; x > 0; x &= x - 1) ret += f[x];
return ret;
}
void add_range(int ql, int qr, LL d) {
add(ql, d);
add(qr + 1, -d);
if(ql > qr) add(1, d);
}
void conv() {
cin >> n >> m;
for(int i = 1; i <= m; ++i) {
int j;
cin >> j;
o[j].push_back(i);
}
for(int i = 1; i <= n; ++i) {
cin >> p[i];
}
cin >> q;
for(int i = 1; i <= q; ++i) {
cin >> ql[i] >> qr[i] >> a[i];
}
for(int i = 1; i <= n; ++i) {
l[i] = 1;
r[i] = q + 1;
}
int ptr = 0;
while(1) {
vector<pair<int, int>> work;
for(int i = 1; i <= n; ++i) {
if(l[i] != r[i]) {
int qm = (l[i] + r[i]) >> 1;
work.emplace_back(qm, i);
}
}
if(work.empty()) break;
sort(work.begin(), work.end());
for(auto [qm, i] : work) {
while(ptr < qm) ++ptr, add_range(ql[ptr], qr[ptr], a[ptr]);
while(ptr > qm) add_range(ql[ptr], qr[ptr], -a[ptr]), --ptr;
LL tot = 0;
for(int j : o[i]) tot += query(j);
if(tot < p[i]) l[i] = qm + 1;
else r[i] = qm;
}
}
for(int i = 1; i <= n; ++i) {
if(l[i] > q) cout << "NIE" << '\n';
else cout << l[i] << '\n';
}
}
Compilation message
met.cpp: In function 'void io(std::string, std::string, std::string)':
met.cpp:31:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
31 | freopen(in.c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
met.cpp:32:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
32 | freopen(out.c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
7372 KB |
Output is correct |
2 |
Correct |
8 ms |
7372 KB |
Output is correct |
3 |
Correct |
8 ms |
7372 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
7372 KB |
Output is correct |
2 |
Correct |
6 ms |
7372 KB |
Output is correct |
3 |
Correct |
7 ms |
7500 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
106 ms |
10120 KB |
Output is correct |
2 |
Correct |
158 ms |
10784 KB |
Output is correct |
3 |
Correct |
144 ms |
10364 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
138 ms |
10268 KB |
Output is correct |
2 |
Correct |
163 ms |
10280 KB |
Output is correct |
3 |
Correct |
173 ms |
10784 KB |
Output is correct |
4 |
Correct |
43 ms |
9820 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
106 ms |
10228 KB |
Output is correct |
2 |
Correct |
153 ms |
10764 KB |
Output is correct |
3 |
Correct |
32 ms |
7968 KB |
Output is correct |
4 |
Correct |
137 ms |
10580 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
9948 KB |
Output is correct |
2 |
Correct |
147 ms |
10288 KB |
Output is correct |
3 |
Correct |
81 ms |
9984 KB |
Output is correct |
4 |
Correct |
171 ms |
10856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
913 ms |
26092 KB |
Output is correct |
2 |
Incorrect |
1044 ms |
22724 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
969 ms |
25672 KB |
Output is correct |
2 |
Incorrect |
690 ms |
22468 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |