結果
問題 | No.1675 Strange Minimum Query |
ユーザー | tko919 |
提出日時 | 2021-09-11 01:10:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,443 bytes |
コンパイル時間 | 2,414 ms |
コンパイル使用メモリ | 211,552 KB |
実行使用メモリ | 9,788 KB |
最終ジャッジ日時 | 2024-06-12 22:02:56 |
合計ジャッジ時間 | 11,181 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 213 ms
5,760 KB |
testcase_04 | AC | 201 ms
6,940 KB |
testcase_05 | AC | 19 ms
6,940 KB |
testcase_06 | AC | 258 ms
6,940 KB |
testcase_07 | AC | 273 ms
7,632 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 320 ms
9,728 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | AC | 77 ms
6,940 KB |
testcase_19 | AC | 100 ms
7,936 KB |
testcase_20 | AC | 230 ms
8,832 KB |
testcase_21 | AC | 197 ms
8,576 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 92 ms
7,808 KB |
testcase_29 | AC | 64 ms
7,632 KB |
testcase_30 | AC | 66 ms
6,940 KB |
testcase_31 | WA | - |
testcase_32 | AC | 343 ms
9,696 KB |
testcase_33 | AC | 357 ms
9,600 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template<typename M,typename N ,M (*f)(M,M),M (*g)(M,N),N (*h)(N,N)> class LazySegmentTree{ int sz,height; vector<M> data; vector<N> lazy; const M m1; const N n1; M ref(int k){return g(data[k],lazy[k]);} void recalc(int k){while(k>>=1)data[k]=f(ref(2*k),ref(2*k+1));} void thrust(int k){for(int i=height;i>0;i--)eval(k>>i);} void eval(int k){ lazy[2*k]=h(lazy[2*k],lazy[k]); lazy[2*k+1]=h(lazy[2*k+1],lazy[k]); data[k]=ref(k); lazy[k]=n1; } public: LazySegmentTree(int n,const M &m1,const N n1):m1(m1),n1(n1){ sz=1,height=0; while(sz<n)sz<<=1,height++; data.assign(2*sz,m1); lazy.assign(2*sz,n1); } void run(vector<M>& v){ rep(i,0,v.size())data[i+sz]=v[i]; for(int k=sz-1;k>0;k--)data[k]=f(data[2*k],data[2*k+1]); } void set(int a,M x){thrust(a+=sz); data[a]=x; recalc(a);} void update(int a,int b,N x){ if(a>=b)return; thrust(a+=sz); thrust(b+=sz-1); for(int l=a,r=b+1;l<r;l>>=1,r>>=1){ if(l&1)lazy[l]=h(lazy[l],x),++l; if(r&1)--r,lazy[r]=h(lazy[r],x); } recalc(a); recalc(b); } M query(int a,int b){ if(a>=b)return m1; thrust(a+=sz); thrust(b+=sz-1); M L=m1,R=m1; for(int l=a,r=b+1;l<r;l>>=1,r>>=1){ if(l&1)L=f(L,ref(l++)); if(r&1)R=f(ref(--r),R); } return f(L,R); } }; int f(int a,int b){return min(a,b);} int g(int a,int b){return (b==inf/2?a:b);} int h(int a,int b){return (b==inf/2?a:b);} int main(){ int n,q; cin>>n>>q; LazySegmentTree<int,int,f,g,h> seg(n,inf/2,inf/2); using T=array<int,3>; vector<T> a(q); rep(i,0,q){ cin>>a[i][1]>>a[i][2]>>a[i][0]; a[i][1]--; } sort(ALL(a)); for(auto& xyz:a){ seg.update(xyz[1],xyz[2],xyz[0]); } for(auto& xyz:a){ if(seg.query(xyz[1],xyz[2])!=xyz[0]){ puts("-1"); return 0; } } rep(i,0,n){ int ret=seg.query(i,i+1); cout<<ret<<(i==n-1?'\n':' '); } return 0; }