This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef double db;
ll gcd(ll a , ll b) {return b ? gcd(b , a % b) : a ;} // greatest common divisor (PGCD)
ll lcm(ll a , ll b) {return (a * b) / gcd(a , b);} // least common multiple (PPCM)
#define ss second
#define ff first
#define all(x) (x).begin() , (x).end()
#define pb push_back
#define vi vector<int>
#define vii vector<pair<int,int>>
#define vl vector<ll>
#define vll vector<pair<ll,ll>>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pdd pair<double,double>
#define vdd vector<pdd>
#define dte tuple<double , double , double>
using namespace std;
const int INF = 1000*1000*1000; // 1 e 9
const int MOD = 1e9 + 7;//998244353 ;
const double EPS = 0.000000001; // 1 e -9
const ll inf = (ll)2e18;
ll stm[(int)5e6 + 10];
ll stx[(int)5e6 + 10];
ll lmx[(int)5e6 + 10];
ll lmn[(int)5e6 + 10];
int rq(int pos , int l , int r , int i){
if(lmx[pos] != MOD){
stx[pos] = min(stx[pos] , lmx[pos]);
stm[pos] = min(stm[pos] , stx[pos]);
if(l != r){
lmx[2 * pos + 1] = min(lmx[2 * pos + 1] , lmx[pos]);
lmx[2 * pos + 2] = min(lmx[2 * pos + 2] , lmx[pos]);
}
lmx[pos] = MOD;
}
if(lmn[pos]){
stm[pos] = max(stm[pos] , lmn[pos]);
stx[pos] = max(stx[pos] , stm[pos]);
if(l != r){
lmn[2 * pos + 1] = max(lmn[2 * pos + 1] , lmn[pos]);
lmn[2 * pos + 2] = max(lmn[2 * pos + 2] , lmn[pos]);
}
lmn[pos] = 0;
}
if(i > r || i < l) return -1;
if(l == r){
assert(stm[pos] == stx[pos]);
return stx[pos];
}
//assert(l < r);
//cout << l << " " << r << " " << i << endl;
int p1 = rq(2 * pos + 1 , l , (l+r) / 2 , i ) , p2 = rq(2 * pos + 2, (l+r) / 2 + 1 , r , i);
//cout << p1 << " " << p2 << endl;
if(p1 == -1) return p2;
return p1;
}
void update(int pos , int l , int r ,int i , int j , int t , ll w){
if(lmx[pos] != inf){
stx[pos] = min(stx[pos] , lmx[pos]);
stm[pos] = min(stm[pos] , stx[pos]);
if(l != r){
lmx[2 * pos + 1] = min(lmx[2 * pos + 1] , lmx[pos]);
lmx[2 * pos + 2] = min(lmx[2 * pos + 2] , lmx[pos]);
}
lmx[pos] = MOD;
}
if(lmn[pos]){
stm[pos] = max(stm[pos] , lmn[pos]);
stx[pos] = max(stx[pos] , stm[pos]);
if(l != r){
lmn[2 * pos + 1] = max(lmn[2 * pos + 1] , lmn[pos]);
lmn[2 * pos + 2] = max(lmn[2 * pos + 2] , lmn[pos]);
}
lmn[pos] = 0;
}
if(i > r || j < l) return;
if(i <= l && j >= r){
if(t){
stx[pos] = min(stx[pos] , w); stm[pos] = min(stm[pos] , stx[pos]);
if(l != r){
lmx[2 * pos + 1] = min(lmx[2 * pos + 1] , w);
lmx[2 * pos + 2] = min(lmx[2 * pos + 2] , w);
}
}
else{
stm[pos] = max(stm[pos] , w) ; stx[pos] = max(stx[pos] , stm[pos]);
if(l != r){
lmn[2 * pos + 1] = max(lmn[2 * pos + 1] , w);
lmn[2 * pos + 2] = max(lmn[2 * pos + 2] , w);
}
}
return;
}
update(2 * pos + 1 , l , (l+r) / 2 , i , j , t , w); update(2 * pos + 2 , (l+r) / 2 + 1 , r , i ,j , t , w);
stx[pos] = max(stx[2 * pos + 1] , stx[2 * pos + 2]); stm[pos] = min(stm[2 * pos + 1] , stm[2 * pos + 2]);
}
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
for(int i = 0 ;i < 5e6 ; i++){
lmx[i] = inf;
}
for(int i = 0 ; i < k ; i++){
update(0 , 0 , n - 1 , left[i] , right[i] , op[i] == 2 , height[i]);
}
for(int i = 0 ; i < n ; i++) {
finalHeight[i] = rq(0 , 0 , n- 1 , i);
//cout << "here" << endl;
}
return ;
}
/*int main(){
//ifstream fin ("testing.txt");
//ofstream fout ("output.txt");
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n , k; cin>>n>>k;
vi op(k) , left(k) , right(k) , height(k) , v;
for(int i = 0 ; i < k ; i++) cin>>op[i]>>left[i]>>right[i]>>height[i];
v = buildWall(n , k , op , left , right , height , v);
//for(auto c : v) cout << c << " "; cout << "\n";
return 0;
}*/
/*
10 6
1 1 8 4
2 4 9 1
2 3 6 5
1 0 5 3
1 2 2 5
2 6 7 0
*/
/*
Think of : BS / DFS / BFS / SSSP / SCC / MSP / MAX FLOW / TOPSORT / LCA / MATRIX / DP(bitmask) / 2 POINTERS / SEG TREE / MATH / UN FIND / MO / HLD
Read the statement CAREFULLY !!
Make a GREADY APPROACH !!!! (start from highest / lowest)
Make your own TESTS !!
Be careful from CORNER CASES !
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |