結果

問題 No.686 Uncertain LIS
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-05-27 20:47:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,684 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 4,676 KB
最終ジャッジ日時 2023-08-20 18:06:48
合計ジャッジ時間 16,591 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1,087 ms
4,384 KB
testcase_10 AC 993 ms
4,384 KB
testcase_11 AC 414 ms
4,376 KB
testcase_12 AC 4 ms
4,380 KB
testcase_13 AC 115 ms
4,376 KB
testcase_14 AC 79 ms
4,380 KB
testcase_15 AC 49 ms
4,380 KB
testcase_16 AC 142 ms
4,380 KB
testcase_17 AC 1,442 ms
4,660 KB
testcase_18 AC 1,436 ms
4,568 KB
testcase_19 AC 1,442 ms
4,676 KB
testcase_20 AC 193 ms
4,484 KB
testcase_21 AC 193 ms
4,444 KB
testcase_22 AC 18 ms
4,548 KB
testcase_23 AC 18 ms
4,596 KB
testcase_24 AC 35 ms
4,564 KB
testcase_25 AC 36 ms
4,472 KB
testcase_26 AC 1,683 ms
4,456 KB
testcase_27 AC 36 ms
4,540 KB
testcase_28 AC 36 ms
4,616 KB
testcase_29 AC 35 ms
4,608 KB
testcase_30 AC 36 ms
4,596 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 19 ms
4,544 KB
testcase_33 AC 1,684 ms
4,504 KB
testcase_34 AC 1,436 ms
4,448 KB
testcase_35 AC 1,447 ms
4,484 KB
権限があれば一括ダウンロードができます

ソースコード

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)

const int N=110000;
int l[N],r[N];
int m[N];

int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin>>n;
  rep(i,n)cin>>l[i]>>r[i];
  int ml=0;
  rep(i,n+1)m[i]=1e7;
  lint cc=0;
  bool ab=0;
  rep(i,n){
    if(cc>=1.1e9){ab=1;break;}
    int last=-1;
    for(int j=ml+1;j>=1;--j){
      int pre=j==1?0:m[j-1];
      if(m[j]<=l[i]){last=j;break;}
      if(pre+1<=r[i])m[j]=min(m[j],max(l[i],pre+1));
    }
    cc+=ml+1-last;
    if(m[ml+1]<1e7)ml++;
  }
  if(ab){
    ml=0;
    rep(i,n+1)m[i]=1e7;
    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));
    }
  }
  cout<<ml<<endl;
}
0