# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
246971 |
2020-07-10T16:49:59 Z |
Evirir |
벽 (IOI14_wall) |
C++17 |
|
1462 ms |
147884 KB |
#include "wall.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define watch(x) cout<<(#x)<<"="<<(x)<<'\n'
#define mset(d,val) memset(d,val,sizeof(d))
#define setp(x) cout<<fixed<<setprecision(x)
#define forn(i,a,b) for(int i=(a);i<(b);i++)
#define fore(i,a,b) for(int i=(a);i<=(b);i++)
#define pb push_back
#define F first
#define S second
#define pqueue priority_queue
#define fbo find_by_order
#define ook order_of_key
typedef long long ll;
typedef pair<ll,ll> ii;
typedef vector<ll> vi;
typedef vector<ii> vii;
typedef long double ld;
typedef tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update> pbds;
void amin(int &a, int b){ a=min(a,b); }
void amax(int &a, int b){ a=max(a,b); }
void YES(){cout<<"YES\n";} void NO(){cout<<"NO\n";}
void SD(int t=0){ cout<<"PASSED "<<t<<endl; }
const ll INF = ll(1e9);
const int MOD = 998244353;
bool DEBUG = 1;
const int MAXN = 2000005;
struct Node {
int mn = 0, mx = INF;
};
class LazySegmentTree {
private:
vector<Node> v, lazy;
int size_;
void update(int s, int e, const Node &val, int k, int l, int r)
{
push(k, l, r);
if(r < s || e < l) return;
if(s <= l && r <= e){
lazy[k] = val;
push(k, l, r);
return;
}
int mid = (l+r)>>1;
update(s, e, val, 2*k, l, mid);
update(s, e, val, 2*k+1, mid+1, r);
}
Node query(int s, int e, int k, int l, int r)
{
push(k, l, r);
if(r < s || e < l) return Node{-1,INF}; //dummy value
if(s <= l && r <= e) return v[k];
int mid = (l+r)/2;
Node lc = query(s, e, 2*k, l, mid);
Node rc = query(s, e, 2*k+1, mid+1, r);
return merge(lc, rc);
}
public:
LazySegmentTree(): v(vector<Node>()), lazy(vector<Node>()){}
LazySegmentTree(int n_){
for(size_=1;size_<n_;) size_<<=1;
v.resize(4*size_, Node{0,INF});
lazy.resize(4*size_, Node{-1,INF});
}
void push(int k, int l, int r){
if(lazy[k].mn != -1 || lazy[k].mx != INF){
if(lazy[k].mn != -1){
amax(v[k].mn, lazy[k].mn);
amax(v[k].mx, lazy[k].mn);
}
if(lazy[k].mx != INF)
{
amin(v[k].mn, lazy[k].mx);
amin(v[k].mx, lazy[k].mx);
}
if(l != r){
mergelazy(lazy[k*2], lazy[k]);
mergelazy(lazy[k*2+1], lazy[k]);
}
lazy[k] = Node{-1,INF};
}
}
inline Node merge(const Node &a, const Node &b){
return Node{(a.mn != -1 ? a.mn : b.mn), (a.mx != INF ? a.mx : b.mx)};
}
inline void mergelazy(Node &a, const Node &b){
amax(a.mn, b.mn);
amax(a.mx, b.mn);
amin(a.mn, b.mx);
amin(a.mx, b.mx);
}
inline void update(int s, int e, const Node &val){
update(s, e, val, 1, 0, size_-1);
}
inline Node query(int s, int e){
return query(s, e, 1, 0, size_-1);
}
};
void buildWall(int n, int K, int op[], int L[], int R[], int H[], int ans[])
{
LazySegmentTree st(n);
for(int i=0;i<K;i++)
{
if(op[i]==1) st.update(L[i],R[i],Node{H[i],INF});
else st.update(L[i],R[i],Node{-1,H[i]});
}
forn(i,0,n) ans[i] = st.query(i,i).mn;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
8 ms |
512 KB |
Output is correct |
3 |
Correct |
8 ms |
384 KB |
Output is correct |
4 |
Correct |
15 ms |
1536 KB |
Output is correct |
5 |
Correct |
11 ms |
1536 KB |
Output is correct |
6 |
Correct |
11 ms |
1536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
221 ms |
9128 KB |
Output is correct |
3 |
Correct |
285 ms |
6620 KB |
Output is correct |
4 |
Correct |
805 ms |
17836 KB |
Output is correct |
5 |
Correct |
333 ms |
17784 KB |
Output is correct |
6 |
Correct |
319 ms |
17784 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
7 ms |
512 KB |
Output is correct |
3 |
Correct |
6 ms |
384 KB |
Output is correct |
4 |
Correct |
14 ms |
1536 KB |
Output is correct |
5 |
Correct |
11 ms |
1536 KB |
Output is correct |
6 |
Correct |
12 ms |
1536 KB |
Output is correct |
7 |
Correct |
5 ms |
256 KB |
Output is correct |
8 |
Correct |
207 ms |
9184 KB |
Output is correct |
9 |
Correct |
270 ms |
6776 KB |
Output is correct |
10 |
Correct |
837 ms |
17784 KB |
Output is correct |
11 |
Correct |
344 ms |
17784 KB |
Output is correct |
12 |
Correct |
321 ms |
17836 KB |
Output is correct |
13 |
Correct |
5 ms |
384 KB |
Output is correct |
14 |
Correct |
212 ms |
9168 KB |
Output is correct |
15 |
Correct |
63 ms |
3448 KB |
Output is correct |
16 |
Correct |
1177 ms |
18044 KB |
Output is correct |
17 |
Correct |
331 ms |
17784 KB |
Output is correct |
18 |
Correct |
335 ms |
17784 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
6 ms |
512 KB |
Output is correct |
3 |
Correct |
6 ms |
384 KB |
Output is correct |
4 |
Correct |
14 ms |
1536 KB |
Output is correct |
5 |
Correct |
11 ms |
1536 KB |
Output is correct |
6 |
Correct |
11 ms |
1536 KB |
Output is correct |
7 |
Correct |
5 ms |
384 KB |
Output is correct |
8 |
Correct |
194 ms |
9208 KB |
Output is correct |
9 |
Correct |
270 ms |
6708 KB |
Output is correct |
10 |
Correct |
833 ms |
17912 KB |
Output is correct |
11 |
Correct |
338 ms |
17784 KB |
Output is correct |
12 |
Correct |
355 ms |
17800 KB |
Output is correct |
13 |
Correct |
5 ms |
256 KB |
Output is correct |
14 |
Correct |
195 ms |
9208 KB |
Output is correct |
15 |
Correct |
55 ms |
3456 KB |
Output is correct |
16 |
Correct |
942 ms |
17912 KB |
Output is correct |
17 |
Correct |
362 ms |
17888 KB |
Output is correct |
18 |
Correct |
348 ms |
17824 KB |
Output is correct |
19 |
Correct |
1206 ms |
147884 KB |
Output is correct |
20 |
Correct |
1221 ms |
147872 KB |
Output is correct |
21 |
Correct |
1264 ms |
147424 KB |
Output is correct |
22 |
Correct |
1214 ms |
147480 KB |
Output is correct |
23 |
Correct |
1201 ms |
147480 KB |
Output is correct |
24 |
Correct |
1206 ms |
147448 KB |
Output is correct |
25 |
Correct |
1204 ms |
147624 KB |
Output is correct |
26 |
Correct |
1207 ms |
147532 KB |
Output is correct |
27 |
Correct |
1186 ms |
147492 KB |
Output is correct |
28 |
Correct |
1209 ms |
147492 KB |
Output is correct |
29 |
Correct |
1462 ms |
147496 KB |
Output is correct |
30 |
Correct |
1253 ms |
147312 KB |
Output is correct |