結果
問題 | No.1675 Strange Minimum Query |
ユーザー | inksamurai |
提出日時 | 2021-09-10 22:48:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 215 ms / 2,000 ms |
コード長 | 1,503 bytes |
コンパイル時間 | 3,788 ms |
コンパイル使用メモリ | 242,812 KB |
実行使用メモリ | 19,560 KB |
最終ジャッジ日時 | 2024-06-12 02:26:14 |
合計ジャッジ時間 | 12,103 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:43:25: warning: narrowing conversion of 'val' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing] 43 | qry.pb({val,{l,r}}); | ^~~
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> //eolibraries #define lnf 3999999999999999999 #define inf 999999999+1 #define fi first #define se second #define pb push_back #define all(c) (c).begin(),(c).end() #define sz(c) (int)(c).size() #define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end()); #define rep(i,n) for(int i=0;i<n;i++) #define drep(i,n) for(int i=n-1;i>=0;i--) #define crep(i,x,n) for(int i=x;i<n;i++) #define vec(...) vector<__VA_ARGS__> #define _3E0svGb ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0) //eodefine using namespace std; typedef long long ll; typedef long double ld; using pii=pair<int,int>; using tpii=pair<int,pii>; using vi=vec(int); const int mxn=12000; int op(int l,int r){ return min(l,r); } int e(){ return inf; } int main(){ _3E0svGb; int n,m; cin>>n>>m; vec(tpii) qry; rep(i,m){ ll l,r,val; cin>>l>>r>>val; l--,r--; qry.pb({val,{l,r}}); } sort(all(qry)); reverse(all(qry)); vec(ll) a(n,-1); set<int> st; rep(i,n) st.insert(i); atcoder::segtree<int,op,e> seg(n); rep(i,n) seg.set(i,inf); rep(i,sz(qry)){ int l=qry[i].se.fi,r=qry[i].se.se; int val=qry[i].fi; auto it=st.lower_bound(l); if((it==st.end() or *it>r) and seg.prod(l,r+1)>val){ printf("-1\n"); exit(0); } while(true){ auto ti=st.lower_bound(l); if(*ti>r or ti==st.end()) break; a[*ti]=val; seg.set(*ti,val); st.erase(ti); } } rep(i,n){ cout<<(a[i]==-1?inf:a[i]); if(i<n-1) cout<<" "; } cout<<"\n"; // return 0; }