# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
978169 |
2024-05-09T01:35:25 Z |
shezitt |
벽 (IOI14_wall) |
C++14 |
|
1740 ms |
262144 KB |
#include "wall.h"
#include <bits/stdc++.h>
using namespace std;
#define fore(a, b, c) for(int a=b; a<c; ++a)
#define sz(x) (int) x.size()
#define all(x) x.begin(), x.end()
#define ii pair<int,int>
#define vi vector<int>
struct segtree {
vi t;
int n;
vector<set<array<int,3>>> lazy;
segtree(int n) : n(n) {
t.assign(4*n, 0);
lazy.assign(4*n, {});
}
void updateMx(int i, int tl, int tr, int l, int r, int val, int id){
if(l <= tl && tr <= r){
lazy[i].insert({id, 1, val});
return;
}
if(r < tl or tr < l){
return;
}
int tm = (tl + tr) / 2;
updateMx(2*i+1, tl, tm, l, r, val, id);
updateMx(2*i+2, tm+1, tr, l, r, val, id);
}
void updateMx(int l, int r, int val, int id){
updateMx(0, 0, n-1, l, r, val, id);
}
void updateMn(int i, int tl, int tr, int l, int r, int val, int id){
if(l <= tl && tr <= r){
lazy[i].insert({id, 2, val});
return;
}
if(r < tl or tr < l){
return;
}
int tm = (tl + tr) / 2;
updateMn(2*i+1, tl, tm, l, r, val, id);
updateMn(2*i+2, tm+1, tr, l, r, val, id);
}
void updateMn(int l, int r, int val, int id){
updateMn(0, 0, n-1, l, r, val, id);
}
void push(int i, int tl, int tr){
lazy[2*i+1].insert(all(lazy[i]));
lazy[2*i+2].insert(all(lazy[i]));
lazy[i].clear();
}
int query(int i, int tl, int tr, int idx){
if(tl == tr){
for(auto [id, type, val] : lazy[i]){
if(t[i] == -1){
t[i] = val;
continue;
}
if(type == 1){
t[i] = max(t[i], val);
} else {
t[i] = min(t[i], val);
}
}
return t[i];
}
push(i, tl, tr);
int tm = (tl + tr) / 2;
if(idx <= tm){
return query(2*i+1, tl, tm, idx);
} else {
return query(2*i+2, tm+1, tr, idx);
}
}
int query(int idx){
return query(0, 0, n-1, idx);
}
};
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
segtree T(n);
fore(i, 0, k){
if(op[i] == 1){
T.updateMx(left[i], right[i], height[i], i);
} else {
cerr << "minimo update" << endl;
T.updateMn(left[i], right[i], height[i], i);
cerr << "minimo update" << endl;
}
}
fore(i, 0, n){
finalHeight[i] = T.query(i);
}
return;
}
Compilation message
wall.cpp: In member function 'int segtree::query(int, int, int, int)':
wall.cpp:64:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
64 | for(auto [id, type, val] : lazy[i]){
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
13 ms |
752 KB |
Output is correct |
3 |
Correct |
48 ms |
10948 KB |
Output is correct |
4 |
Runtime error |
632 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
732 ms |
48640 KB |
Output is correct |
3 |
Runtime error |
1740 ms |
262144 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
13 ms |
960 KB |
Output is correct |
3 |
Correct |
57 ms |
11116 KB |
Output is correct |
4 |
Runtime error |
629 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
14 ms |
860 KB |
Output is correct |
3 |
Correct |
51 ms |
11124 KB |
Output is correct |
4 |
Runtime error |
626 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |