結果

問題 No.686 Uncertain LIS
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-05-27 19:26:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 749 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 9,000 KB
最終ジャッジ日時 2023-09-11 04:43:20
合計ジャッジ時間 12,191 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,756 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,041 ms
4,380 KB
testcase_12 AC 6 ms
4,376 KB
testcase_13 AC 314 ms
4,376 KB
testcase_14 AC 114 ms
4,380 KB
testcase_15 AC 71 ms
4,376 KB
testcase_16 AC 203 ms
4,380 KB
testcase_17 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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<int>m(n+1,1e7);
#if 1
  rep(i,n){
    for(int j=ml+1;j>=1;--j){
      int pre=j==1?0:m[j-1]+1;
      if(max(l[i],pre)<=r[i])
	m[j]=min(m[j],max(l[i],pre));
    }
    if(m[ml+1]<1e7)ml++;
  }
#else
  rep(i,n){
    int p=0,f=ml+1;
    while(f-p>1){
      int x=(f+p)/2;
      int cur=m[x];
      if(max(l[i],cur+1)<=r[i]) p=x;
      else f=x;
    }
    ml=max(ml,p+1);
    //UPDATE
    m[p+1]=min(m[p+1],max(l[i],p==0?0:m[p]+1));
  }
#endif
  cout<<ml<<endl;
}
0