結果
問題 | No.686 Uncertain LIS |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-05-27 19:08:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 79,300 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 19:08:21 |
合計ジャッジ時間 | 3,775 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 35 ms
5,376 KB |
testcase_23 | AC | 34 ms
5,376 KB |
testcase_24 | AC | 56 ms
5,376 KB |
testcase_25 | AC | 58 ms
5,376 KB |
testcase_26 | AC | 55 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 56 ms
5,376 KB |
testcase_30 | AC | 57 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 64 ms
5,376 KB |
testcase_33 | AC | 52 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include<algorithm> #include<iostream> #include<vector> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) int main(){ int n; cin>>n; vi l(n),r(n); rep(i,n)cin>>l[i]>>r[i]; int ml=0; vector<pii>m(n+1); rep(i,n){ int p=0,f=ml+1; while(f-p>1){ int x=(f+p)/2; pii cur=m[x]; if(max(l[i],cur.second+1)<=r[i]) p=x; else f=x; } ml=max(ml,p+1); //UPDATE m[p+1]=pii(i,max(l[i],m[p].second+1)); } cout<<ml<<endl; }