結果

問題 No.1460 Max of Min
ユーザー 沙耶花沙耶花
提出日時 2021-03-31 22:17:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,717 bytes
コンパイル時間 4,924 ms
コンパイル使用メモリ 270,684 KB
実行使用メモリ 24,112 KB
最終ジャッジ日時 2024-12-15 19:30:40
合計ジャッジ時間 73,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
13,644 KB
testcase_03 AC 4 ms
13,640 KB
testcase_04 AC 4 ms
13,636 KB
testcase_05 AC 2 ms
19,900 KB
testcase_06 AC 14 ms
19,992 KB
testcase_07 AC 1,288 ms
17,168 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
19,932 KB
testcase_10 AC 11 ms
13,636 KB
testcase_11 TLE -
testcase_12 AC 5 ms
18,728 KB
testcase_13 TLE -
testcase_14 AC 9 ms
13,632 KB
testcase_15 AC 4 ms
19,392 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 11 ms
13,636 KB
testcase_19 TLE -
testcase_20 AC 3 ms
13,636 KB
testcase_21 AC 5 ms
18,956 KB
testcase_22 AC 33 ms
13,636 KB
testcase_23 AC 3 ms
18,696 KB
testcase_24 AC 706 ms
16,556 KB
testcase_25 AC 2 ms
19,488 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 4 ms
13,636 KB
testcase_29 TLE -
testcase_30 AC 874 ms
14,752 KB
testcase_31 AC 15 ms
19,732 KB
testcase_32 AC 109 ms
13,636 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 37 ms
6,816 KB
testcase_35 AC 4 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 6 ms
6,816 KB
testcase_38 AC 4 ms
6,816 KB
testcase_39 AC 71 ms
6,820 KB
testcase_40 AC 77 ms
6,820 KB
testcase_41 AC 16 ms
6,820 KB
testcase_42 AC 4 ms
6,816 KB
testcase_43 TLE -
testcase_44 AC 1,725 ms
11,120 KB
testcase_45 AC 12 ms
6,816 KB
testcase_46 TLE -
testcase_47 AC 499 ms
8,824 KB
testcase_48 TLE -
testcase_49 AC 13 ms
6,816 KB
testcase_50 AC 4 ms
6,816 KB
testcase_51 TLE -
testcase_52 AC 1,180 ms
8,804 KB
testcase_53 AC 5 ms
6,820 KB
testcase_54 AC 5 ms
6,820 KB
testcase_55 TLE -
testcase_56 AC 5 ms
6,820 KB
testcase_57 TLE -
testcase_58 AC 1,817 ms
12,380 KB
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 6 ms
6,816 KB
testcase_62 AC 6 ms
6,820 KB
testcase_63 AC 3 ms
6,816 KB
testcase_64 AC 3 ms
6,816 KB
testcase_65 TLE -
testcase_66 AC 6 ms
6,820 KB
testcase_67 AC 4 ms
6,820 KB
testcase_68 AC 1,381 ms
8,832 KB
testcase_69 TLE -
testcase_70 AC 97 ms
6,816 KB
testcase_71 TLE -
testcase_72 AC 5 ms
6,820 KB
testcase_73 AC 5 ms
6,816 KB
testcase_74 AC 5 ms
6,816 KB
testcase_75 AC 5 ms
6,816 KB
testcase_76 AC 5 ms
6,816 KB
testcase_77 AC 4 ms
6,816 KB
testcase_78 AC 4 ms
6,816 KB
testcase_79 AC 5 ms
6,820 KB
testcase_80 AC 4 ms
6,816 KB
testcase_81 AC 4 ms
6,816 KB
testcase_82 AC 4 ms
6,820 KB
testcase_83 AC 4 ms
6,816 KB
testcase_84 AC 12 ms
6,820 KB
testcase_85 AC 11 ms
6,820 KB
testcase_86 AC 13 ms
6,820 KB
testcase_87 AC 12 ms
6,820 KB
testcase_88 AC 14 ms
6,820 KB
testcase_89 AC 12 ms
6,816 KB
testcase_90 AC 13 ms
6,816 KB
testcase_91 AC 12 ms
6,816 KB
testcase_92 AC 12 ms
6,816 KB
testcase_93 AC 13 ms
19,044 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];
	
	vector<long long> X;
	rep(i,K){
		X.push_back(A[i]);
		X.push_back(B[i]);
	}
	
	sort(X.begin(),X.end());
	X.erase(unique(X.begin(),X.end()),X.end());
	
	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 = X.size(),ok = 0;
		while(ng-ok>1LL){
			long long mid = (ok+ng)/2;
			bitset<1001> a,b;
			rep(i,K){
				if(A[i]>=X[mid]){
					a[i] = 1;
				}
				else{
					a[i] = 0;
				}
				if(B[i]>=X[mid]){
					b[i] = 1;
				}
				else{
					b[i] = 0;
				}
			}
			long long n = N;
			vector<bitset<1001>> temp(1,a);
			bool f = false;
			while(true){
				if(n==0){
					f=true;
					if(temp.back()[K-1])ok = mid;
					else ng = mid;
					break;
				}
				n--;
				
				bitset<1001> t = temp.back();
			
				if((t & b).any()){
					t >>= 1;
					t[K-1] = 1;
				}
				else{
					t >>= 1;
				}
				
				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()][K-1])ok = mid;
				else ng = mid;
			}
			
			
		}
		cout<<X[ok]<<endl;
		
	}
	
	
    return 0;
}
0