結果
問題 | No.1675 Strange Minimum Query |
ユーザー | TKTYI |
提出日時 | 2021-09-10 21:42:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 415 ms / 2,000 ms |
コード長 | 1,173 bytes |
コンパイル時間 | 4,083 ms |
コンパイル使用メモリ | 232,852 KB |
実行使用メモリ | 15,704 KB |
最終ジャッジ日時 | 2024-06-11 23:05:45 |
合計ジャッジ時間 | 15,708 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 230 ms
8,064 KB |
testcase_04 | AC | 214 ms
10,368 KB |
testcase_05 | AC | 29 ms
7,424 KB |
testcase_06 | AC | 270 ms
8,832 KB |
testcase_07 | AC | 293 ms
11,648 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 155 ms
12,164 KB |
testcase_11 | AC | 40 ms
10,496 KB |
testcase_12 | AC | 168 ms
12,460 KB |
testcase_13 | AC | 288 ms
15,704 KB |
testcase_14 | AC | 351 ms
15,600 KB |
testcase_15 | AC | 315 ms
15,572 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 56 ms
6,944 KB |
testcase_18 | AC | 83 ms
6,944 KB |
testcase_19 | AC | 115 ms
11,840 KB |
testcase_20 | AC | 263 ms
13,468 KB |
testcase_21 | AC | 231 ms
13,248 KB |
testcase_22 | AC | 311 ms
14,344 KB |
testcase_23 | AC | 232 ms
8,448 KB |
testcase_24 | AC | 215 ms
9,728 KB |
testcase_25 | AC | 155 ms
7,296 KB |
testcase_26 | AC | 76 ms
7,680 KB |
testcase_27 | AC | 205 ms
12,960 KB |
testcase_28 | AC | 104 ms
11,544 KB |
testcase_29 | AC | 73 ms
11,284 KB |
testcase_30 | AC | 73 ms
7,680 KB |
testcase_31 | AC | 312 ms
11,136 KB |
testcase_32 | AC | 411 ms
15,668 KB |
testcase_33 | AC | 411 ms
15,604 KB |
testcase_34 | AC | 415 ms
15,608 KB |
testcase_35 | AC | 396 ms
15,636 KB |
testcase_36 | AC | 397 ms
15,576 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long int ll; typedef long double ld; #define FOR(i,l,r) for(ll i=l;i<r;i++) #define REP(i,n) FOR(i,0,n) #define RFOR(i,l,r) for(ll i=r-1;i>=l;i--) #define RREP(i,n) RFOR(i,0,n) #define ALL(x) x.begin(),x.end() #define P pair<ll,ll> #define F first #define S second #define BS(A,x) binary_search(ALL(A),x) #define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin()) #define UB(A,x) (ll)(upper_bound(ALL(A),x)-A.begin()) #define COU(A,x) UB(A,x)-LB(A,x) template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>; using mint=modint1000000007; ll op(ll a,ll b){return min(a,b);} ll e(){return 1e18;} ll mapping(ll f,ll x){return max(f,x);} ll composition(ll f,ll g){return max(f,g);} ll id(){return -1;} signed main(){ ll N,Q;cin>>N>>Q;vector<ll>l(Q),r(Q),B(Q),A(N,1);REP(i,Q)cin>>l[i]>>r[i]>>B[i]; lazy_segtree<ll,op,e,ll,mapping,composition,id>seg(A); REP(i,Q)seg.apply(l[i]-1,r[i],B[i]);REP(i,N)A[i]=seg.get(i); REP(i,Q)if(seg.prod(l[i]-1,r[i])!=B[i]){cout<<-1<<endl;return 0;} REP(i,N-1)cout<<A[i]<<" ";cout<<A[N-1]<<endl; return 0; }