# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
800693 |
2023-08-01T18:14:59 Z |
dreamoon |
Meteors (POI11_met) |
C++14 |
|
1247 ms |
55084 KB |
#include <bits/stdc++.h>
#define ll long long
#define SZ(X) (int)(X.size())
#define MAX 300005
#define pii pair <int,ll>
#define ind first
#define val second
#define INF (ll)(1e18)
using namespace std;
struct Query{
int le, ri, amo;
};
int typeNum, len, queNum;
int arr[MAX];
int ans[MAX];
vector <int> sta[MAX]; // stations of every type
vector <Query> allQ;
vector <pii> allT;
int a, b, c;
vector <pii> loc; // considered locations and dif
vector <pii> tCopy; // copy of type
void solve(int le, int ri, vector <pii> & type){ // type: station types and how much is needed, le and ri of queries
//cout << le << " " << ri << " " << SZ(type) << "\n";
loc.clear();
tCopy.clear();
if (type.empty()) return;
for (pii t : type){
for (int s : sta[t.ind])
loc.push_back({s, 0});
tCopy.push_back(t);
}
sort(loc.begin(), loc.end());
if (loc.empty()) return;
int mid = (le+ri)/2;
for (int i = le; i <= mid; i++){ // set up prefix difference
Query q = allQ[i];
int add = q.le, sub = q.ri;
if (q.le > q.ri) { // ring-shaped array
loc[0].val += q.amo;
}
auto it = lower_bound(loc.begin(), loc.end(), make_pair(add, -INF));
if (it != loc.end()) it->val += q.amo;
it = lower_bound(loc.begin(), loc.end(), make_pair(sub+1, -INF));
if (it != loc.end()) it->val -= q.amo;
}
ll sum = 0;
for (pii l : loc){ // use prefix difference to calculate how much more we need for each type
sum += l.val;
auto it = lower_bound(tCopy.begin(), tCopy.end(), make_pair(arr[l.ind], -INF));
it->val -= sum;
if(it->val < 0) it->val = 0;
//cout << sum << " ";
}
if (le == ri){ // this is the final step
for (pii t : tCopy){
if (t.val <= 0) ans[t.ind] = le+1;
}
return;
}
vector <pii> typeA, typeB;
for (int i = 0; i < SZ(type); i++){
if (tCopy[i].val <= 0) typeA.push_back(type[i]);
else typeB.push_back(tCopy[i]);
}
solve(le, mid, typeA);
solve(mid+1, ri, typeB);
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
cin >> typeNum >> len;
for (int i = 1; i <= len; i++) {
cin >> arr[i];
sta[arr[i]].push_back(i);
}
for (int i = 1; i <= typeNum; i++){
cin >> a;
allT.push_back({i, a});
}
cin >> queNum;
for (int i = 0; i < queNum; i++){
cin >> a >> b >> c;
allQ.push_back({a, b, c});
}
solve(0, queNum-1, allT);
for (int i = 1; i <= typeNum; i++){
if (ans[i] == 0) cout << "NIE\n";
else cout << ans[i] << "\n";
}
return 0;
}
/*
10 11
1 2 3 4 5 6 7 8 9 10 11
1 2 3 4 5 6 7 8 9 10
10
1 3 1
3 4 1
7 1 1
1 5 1
1 5 1
6 6 1
7 7 1
8 8 1
9 9 1
10 10 1
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
7380 KB |
Output is correct |
2 |
Correct |
6 ms |
7516 KB |
Output is correct |
3 |
Correct |
5 ms |
7380 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
7440 KB |
Output is correct |
2 |
Correct |
5 ms |
7508 KB |
Output is correct |
3 |
Correct |
5 ms |
7508 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
49 ms |
10860 KB |
Output is correct |
2 |
Correct |
170 ms |
18404 KB |
Output is correct |
3 |
Correct |
127 ms |
11772 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
84 ms |
11444 KB |
Output is correct |
2 |
Correct |
100 ms |
11524 KB |
Output is correct |
3 |
Correct |
153 ms |
15496 KB |
Output is correct |
4 |
Correct |
48 ms |
11860 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
53 ms |
10944 KB |
Output is correct |
2 |
Correct |
76 ms |
16464 KB |
Output is correct |
3 |
Correct |
20 ms |
8796 KB |
Output is correct |
4 |
Correct |
99 ms |
12316 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
82 ms |
11132 KB |
Output is correct |
2 |
Correct |
103 ms |
11636 KB |
Output is correct |
3 |
Correct |
59 ms |
10984 KB |
Output is correct |
4 |
Correct |
111 ms |
14116 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1247 ms |
52580 KB |
Output is correct |
2 |
Correct |
270 ms |
33304 KB |
Output is correct |
3 |
Correct |
90 ms |
12744 KB |
Output is correct |
4 |
Correct |
1179 ms |
47960 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1131 ms |
46060 KB |
Output is correct |
2 |
Correct |
246 ms |
31880 KB |
Output is correct |
3 |
Correct |
60 ms |
13300 KB |
Output is correct |
4 |
Correct |
1093 ms |
55084 KB |
Output is correct |