# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
1092847 |
2024-09-25T08:46:44 Z |
daviedu |
벽 (IOI14_wall) |
C++17 |
|
3000 ms |
14052 KB |
#include <bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(0); cin.tie(0)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define sz(a) (int) (a).size()
#define ll long long
#define ld long double
#define pb push_back
struct P{
ll x, y;
};
void dbg_out() { cerr << endl; }
template <typename H, typename... T>
void dbg_out(H h, T... t) { cerr << ' ' << h; dbg_out(t...); }
#define dbg(...) { cerr << #__VA_ARGS__ << ':'; dbg_out(__VA_ARGS__); }
#define bound array<int, 2>
const bound neutral = {0, INT_MAX};
const bound no_lazy = {-1, -1};
const int MI = 0, MA = INT_MAX;
class Segtree{
public:
int n;
vector<int> t, hi, lo; // lazy is not a bound, but an operation with 2 parameters
Segtree(int size){
n = 1;
while (n < size) n <<= 1;
t.resize(2*n);
hi.resize(2*n, MI);
lo.resize(2*n, MA);
}
void apply(int i){
t[i] = max(t[i], hi[i]);
t[i] = min(t[i], lo[i]);
hi[i] = MI;
lo[i] = MA;
}
void prop(int i){
if (lo[i] == MA && hi[i] == MI) return;
if (i >= n) apply(i);
else{
prop(2*i);
prop(2*i+1);
lo[2*i] = lo[2*i+1] = lo[i];
hi[2*i] = hi[2*i+1] = hi[i];
hi[i] = MI;
lo[i] = MA;
}
}
void update(int l, int r, int i, int a, int b, int v, int op){
prop(i);
if (b < l || r < a) return;
if (a <= l && r <= b){
if (op == 1) hi[i] = v;
else lo[i] = v;
prop(i);
return;
}
int m = (l+r)/2;
update(l, m, 2*i, a, b, v, op);
update(m+1, r, 2*i+1, a, b, v, op);
}
void update(int l, int r, int v, int op){
update(0, n-1, 1, l, r, v, op);
}
int query(int l, int r, int i, int pos){
prop(i);
if (l == r && l == pos) return t[i];
int m = (l+r)/2;
if (pos <= m) return query(l, m, 2*i, pos);
else return query(m+1, r, 2*i+1, pos);
}
int query(int pos){
return query(0, n-1, 1, pos);
}
};
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
Segtree seg (n);
for (int i=0; i<k; i++){
seg.update(left[i], right[i], height[i], op[i]);
}
for (int i=0; i<n; i++){
finalHeight[i] = seg.query(i);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
348 KB |
Output is correct |
4 |
Correct |
99 ms |
860 KB |
Output is correct |
5 |
Correct |
87 ms |
860 KB |
Output is correct |
6 |
Correct |
87 ms |
860 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
82 ms |
13900 KB |
Output is correct |
3 |
Execution timed out |
3072 ms |
8272 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
572 KB |
Output is correct |
3 |
Correct |
2 ms |
348 KB |
Output is correct |
4 |
Correct |
101 ms |
860 KB |
Output is correct |
5 |
Correct |
87 ms |
860 KB |
Output is correct |
6 |
Correct |
92 ms |
856 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
82 ms |
14052 KB |
Output is correct |
9 |
Execution timed out |
3058 ms |
8052 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
2 ms |
364 KB |
Output is correct |
4 |
Correct |
103 ms |
860 KB |
Output is correct |
5 |
Correct |
87 ms |
860 KB |
Output is correct |
6 |
Correct |
92 ms |
860 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
80 ms |
13968 KB |
Output is correct |
9 |
Execution timed out |
3045 ms |
8196 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |