結果
問題 | No.1675 Strange Minimum Query |
ユーザー | tails |
提出日時 | 2021-09-10 23:00:21 |
言語 | cLay (20240714-1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 5,701 ms |
コンパイル使用メモリ | 213,000 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-07-05 15:28:52 |
合計ジャッジ時間 | 11,014 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 29 ms
8,704 KB |
testcase_04 | AC | 24 ms
9,088 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 34 ms
9,216 KB |
testcase_07 | AC | 32 ms
9,728 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 20 ms
9,344 KB |
testcase_11 | AC | 8 ms
6,528 KB |
testcase_12 | AC | 22 ms
9,856 KB |
testcase_13 | AC | 32 ms
13,184 KB |
testcase_14 | AC | 25 ms
13,184 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
using P=pair<ll,pair<ll,ll>>; P a[2d5]; ll s[2d5]; ll z[2d5]; { ll@n,@q; rep(i,q){ ll@l,@r,@b; a[i]={-b,{r,l-1}}; } sortA(q,a); ll fb=0,fi=0; rep(i,q){ ll b=-a[i].first; ll l=a[i].second.second; ll r=a[i].second.first; ll f=(fb==b&&fi>=l); while(1){ ll t=l; while(t<r&&s[t]){ t=s[t]; } if(t>=r){ if(l!=t){ s[l]=t; } break; } f=1; l=t; s[l]=l+1; z[l]=b; if(!(fb==b&&fi>=l)){ fb=b; fi=l; } } if(!f){ wt(-1); exit(0); } } rep(i,n){ if(!z[i]){ z[i]=1; } } wt(z(n)); }