結果

問題 No.1460 Max of Min
ユーザー 沙耶花沙耶花
提出日時 2021-03-31 21:53:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,473 bytes
コンパイル時間 4,597 ms
コンパイル使用メモリ 267,712 KB
実行使用メモリ 138,788 KB
最終ジャッジ日時 2024-12-15 18:09:53
合計ジャッジ時間 124,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
118,928 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 4 ms
116,704 KB
testcase_04 AC 3 ms
10,496 KB
testcase_05 AC 2 ms
115,584 KB
testcase_06 AC 270 ms
24,936 KB
testcase_07 TLE -
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
74,596 KB
testcase_10 AC 189 ms
16,512 KB
testcase_11 TLE -
testcase_12 AC 192 ms
11,544 KB
testcase_13 TLE -
testcase_14 AC 825 ms
16,420 KB
testcase_15 AC 127 ms
13,640 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 9 ms
10,496 KB
testcase_19 TLE -
testcase_20 AC 105 ms
10,496 KB
testcase_21 AC 268 ms
81,128 KB
testcase_22 TLE -
testcase_23 AC 152 ms
118,656 KB
testcase_24 TLE -
testcase_25 AC 7 ms
61,660 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 240 ms
10,496 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,127 ms
49,100 KB
testcase_32 TLE -
testcase_33 AC 3 ms
97,236 KB
testcase_34 TLE -
testcase_35 AC 5 ms
117,116 KB
testcase_36 AC 2 ms
10,496 KB
testcase_37 AC 6 ms
59,080 KB
testcase_38 AC 4 ms
10,496 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 4 ms
10,496 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 876 ms
13,764 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 1,524 ms
20,968 KB
testcase_50 AC 198 ms
10,496 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 AC 5 ms
13,764 KB
testcase_54 AC 5 ms
10,496 KB
testcase_55 TLE -
testcase_56 AC 4 ms
10,496 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 6 ms
13,764 KB
testcase_62 AC 7 ms
10,496 KB
testcase_63 AC 3 ms
13,768 KB
testcase_64 AC 3 ms
6,824 KB
testcase_65 TLE -
testcase_66 AC 6 ms
5,248 KB
testcase_67 AC 3 ms
5,248 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 AC 5 ms
5,248 KB
testcase_73 AC 6 ms
5,248 KB
testcase_74 AC 5 ms
5,248 KB
testcase_75 AC 5 ms
5,248 KB
testcase_76 AC 4 ms
5,248 KB
testcase_77 AC 5 ms
5,248 KB
testcase_78 AC 4 ms
5,248 KB
testcase_79 AC 5 ms
5,248 KB
testcase_80 AC 4 ms
5,248 KB
testcase_81 AC 3 ms
5,248 KB
testcase_82 AC 4 ms
5,248 KB
testcase_83 AC 4 ms
5,248 KB
testcase_84 AC 1,111 ms
10,980 KB
testcase_85 AC 860 ms
11,008 KB
testcase_86 AC 1,162 ms
11,008 KB
testcase_87 AC 1,279 ms
11,008 KB
testcase_88 AC 1,172 ms
11,088 KB
testcase_89 AC 998 ms
11,236 KB
testcase_90 AC 805 ms
10,980 KB
testcase_91 AC 1,110 ms
11,264 KB
testcase_92 AC 646 ms
11,264 KB
testcase_93 AC 975 ms
124,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000001

vector<long long> get(vector<long long> a,vector<long long> b){
	long long m = -Inf;
	rep(i,a.size()){
		m = max(m,min(a[i],b[i]));
	}
	a.push_back(m);
	a.erase(a.begin());
	return a;
	
}

int main(){
	
	long long K,N;
	cin>>K>>N;
	
	vector<long long> A(K),B(K);
	rep(i,K)cin>>A[i];
	rep(i,K)cin>>B[i];
	
	if(N<K){
		cout<<A[N]<<endl;
		return 0;
	}
	
	N -= K-1;
	
	if(N<=3000){
		
		rep(i,N)A = get(A,B);
		cout<<A.back()<<endl;
	}
	else{
		
		long long ng = Inf,ok = -Inf;
		while(ng-ok>1LL){
			long long mid = (ok+ng)/2;
			vector<long long> a(K),b(K);
			rep(i,K){
				if(A[i]>=mid){
					a[i] = 1;
				}
				else{
					a[i] = 0;
				}
				if(B[i]>=mid){
					b[i] = 1;
				}
				else{
					b[i] = 0;
				}
			}
			long long n = N;
			vector<vector<long long>> temp(1,a);
			bool f = false;
			while(true){
				if(n==0){
					f=true;
					if(temp.back().back())ok = mid;
					else ng = mid;
					break;
				}
				n--;
				
				auto t = get(temp.back(),b);
				rep(i,temp.size()){
					if(temp[i]==t){
						temp.erase(temp.begin(),temp.begin()+i);
						goto L;
					}
				}
				temp.push_back(t);
			}
			L:;
			if(!f){
				if(temp[n%temp.size()].back())ok = mid;
				else ng = mid;
			}
			
			
		}
		cout<<ok<<endl;
		
	}
	
	
    return 0;
}
0