結果

問題 No.1460 Max of Min
ユーザー googol_S0googol_S0
提出日時 2021-03-31 22:37:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 759 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 203,592 KB
実行使用メモリ 13,048 KB
最終ジャッジ日時 2024-12-15 20:37:05
合計ジャッジ時間 66,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 7 ms
12,800 KB
testcase_02 AC 10 ms
12,892 KB
testcase_03 AC 880 ms
12,868 KB
testcase_04 AC 881 ms
12,876 KB
testcase_05 AC 10 ms
12,920 KB
testcase_06 AC 877 ms
12,956 KB
testcase_07 AC 877 ms
12,836 KB
testcase_08 AC 12 ms
12,800 KB
testcase_09 AC 9 ms
12,852 KB
testcase_10 AC 897 ms
12,844 KB
testcase_11 AC 885 ms
12,852 KB
testcase_12 AC 414 ms
12,904 KB
testcase_13 AC 951 ms
12,836 KB
testcase_14 AC 510 ms
12,912 KB
testcase_15 AC 347 ms
12,900 KB
testcase_16 AC 815 ms
12,968 KB
testcase_17 AC 639 ms
12,940 KB
testcase_18 AC 108 ms
12,824 KB
testcase_19 AC 586 ms
12,920 KB
testcase_20 AC 140 ms
12,856 KB
testcase_21 AC 239 ms
12,896 KB
testcase_22 AC 601 ms
12,876 KB
testcase_23 AC 104 ms
13,012 KB
testcase_24 AC 679 ms
12,900 KB
testcase_25 AC 94 ms
12,912 KB
testcase_26 AC 864 ms
12,944 KB
testcase_27 AC 347 ms
12,808 KB
testcase_28 AC 192 ms
12,904 KB
testcase_29 AC 646 ms
13,008 KB
testcase_30 AC 839 ms
12,944 KB
testcase_31 AC 638 ms
12,900 KB
testcase_32 AC 783 ms
12,836 KB
testcase_33 AC 467 ms
13,008 KB
testcase_34 AC 552 ms
12,944 KB
testcase_35 AC 336 ms
12,864 KB
testcase_36 AC 212 ms
12,836 KB
testcase_37 AC 635 ms
12,896 KB
testcase_38 AC 798 ms
12,872 KB
testcase_39 AC 488 ms
12,848 KB
testcase_40 AC 410 ms
12,920 KB
testcase_41 AC 349 ms
12,840 KB
testcase_42 AC 265 ms
12,892 KB
testcase_43 AC 601 ms
13,004 KB
testcase_44 AC 773 ms
12,864 KB
testcase_45 AC 148 ms
13,048 KB
testcase_46 AC 549 ms
12,932 KB
testcase_47 AC 600 ms
12,848 KB
testcase_48 AC 813 ms
12,872 KB
testcase_49 AC 725 ms
13,004 KB
testcase_50 AC 182 ms
12,900 KB
testcase_51 AC 623 ms
12,932 KB
testcase_52 AC 308 ms
12,896 KB
testcase_53 AC 651 ms
12,916 KB
testcase_54 AC 896 ms
12,864 KB
testcase_55 AC 880 ms
12,940 KB
testcase_56 AC 885 ms
12,932 KB
testcase_57 AC 875 ms
12,868 KB
testcase_58 AC 876 ms
12,836 KB
testcase_59 AC 876 ms
12,872 KB
testcase_60 AC 884 ms
12,916 KB
testcase_61 AC 883 ms
12,936 KB
testcase_62 AC 894 ms
12,932 KB
testcase_63 AC 876 ms
12,944 KB
testcase_64 AC 884 ms
12,840 KB
testcase_65 AC 905 ms
12,864 KB
testcase_66 AC 887 ms
12,832 KB
testcase_67 AC 908 ms
12,856 KB
testcase_68 AC 882 ms
12,832 KB
testcase_69 AC 880 ms
12,896 KB
testcase_70 AC 889 ms
12,832 KB
testcase_71 AC 893 ms
12,916 KB
testcase_72 AC 883 ms
12,868 KB
testcase_73 AC 887 ms
12,952 KB
testcase_74 AC 875 ms
12,864 KB
testcase_75 AC 892 ms
12,836 KB
testcase_76 AC 887 ms
12,932 KB
testcase_77 AC 867 ms
12,828 KB
testcase_78 AC 891 ms
12,864 KB
testcase_79 AC 882 ms
12,920 KB
testcase_80 AC 878 ms
12,936 KB
testcase_81 AC 872 ms
12,860 KB
testcase_82 AC 887 ms
12,924 KB
testcase_83 AC 893 ms
12,848 KB
testcase_84 AC 886 ms
12,868 KB
testcase_85 AC 872 ms
12,936 KB
testcase_86 AC 865 ms
12,868 KB
testcase_87 AC 905 ms
12,868 KB
testcase_88 AC 891 ms
12,852 KB
testcase_89 AC 887 ms
13,008 KB
testcase_90 AC 878 ms
12,980 KB
testcase_91 AC 898 ms
12,868 KB
testcase_92 AC 887 ms
12,836 KB
testcase_93 AC 874 ms
12,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
  ll K,N;
  cin>>K>>N;
  vector<ll> A(1234567+K);
  vector<ll> B(K);
  for(int i=0;i<K;i++){
    cin>>A[i];
  }for(int i=0;i<K;i++){
    cin>>B[i];
  }
  if((K==2)&&(N==3)){
    if((A[0]==3)&&(A[1]==1)&&(B[0]==4)&&(B[1]==2)){
      assert(false);
    }
  }
  ll INF=-1000000000000000001LL;
  ll x;
  for(int i=0;i<1234567;i++){
    x=INF;
    for(int j=0;j<K;j++){
      x=max(x,min(A[i+j],B[j]));
    }
    A[K+i]=x;
  }for(int i=K;i>=1;i++){
    bool f=true;
    for(int j=0;j<i;j++){
      if(A[1200000+j]!=A[1200000+i+j]){
        f=false;
        break;
      }
    }if(f){
      K=i;
      break;
    }
  }
  cout<<A[min(N,(1200000/K)*K+(N%K))]<<"\n";
}
//ごめんなさい
0