結果

問題 No.1460 Max of Min
ユーザー 沙耶花沙耶花
提出日時 2021-03-31 22:12:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,553 bytes
コンパイル時間 4,743 ms
コンパイル使用メモリ 269,736 KB
実行使用メモリ 26,540 KB
最終ジャッジ日時 2024-12-15 19:18:25
合計ジャッジ時間 93,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,632 KB
testcase_01 AC 1 ms
18,976 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
13,636 KB
testcase_04 AC 3 ms
13,636 KB
testcase_05 AC 2 ms
19,004 KB
testcase_06 AC 13 ms
13,636 KB
testcase_07 TLE -
testcase_08 AC 2 ms
13,632 KB
testcase_09 AC 2 ms
18,596 KB
testcase_10 AC 9 ms
13,632 KB
testcase_11 TLE -
testcase_12 AC 13 ms
13,636 KB
testcase_13 TLE -
testcase_14 AC 58 ms
13,640 KB
testcase_15 AC 10 ms
19,256 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 3 ms
13,640 KB
testcase_19 TLE -
testcase_20 AC 13 ms
13,640 KB
testcase_21 AC 25 ms
18,044 KB
testcase_22 AC 393 ms
13,636 KB
testcase_23 AC 21 ms
17,404 KB
testcase_24 TLE -
testcase_25 AC 2 ms
19,828 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 22 ms
13,640 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 69 ms
13,768 KB
testcase_32 AC 1,498 ms
13,636 KB
testcase_33 AC 3 ms
13,764 KB
testcase_34 AC 590 ms
13,636 KB
testcase_35 AC 4 ms
13,764 KB
testcase_36 AC 2 ms
13,640 KB
testcase_37 AC 5 ms
13,768 KB
testcase_38 AC 3 ms
13,640 KB
testcase_39 AC 869 ms
18,856 KB
testcase_40 AC 1,736 ms
13,636 KB
testcase_41 AC 193 ms
13,760 KB
testcase_42 AC 3 ms
13,632 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 111 ms
13,764 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 69 ms
17,404 KB
testcase_50 AC 24 ms
6,816 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 AC 4 ms
6,820 KB
testcase_54 AC 4 ms
6,820 KB
testcase_55 TLE -
testcase_56 AC 4 ms
6,820 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 5 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,820 KB
testcase_65 TLE -
testcase_66 AC 5 ms
6,820 KB
testcase_67 AC 3 ms
6,820 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 984 ms
6,816 KB
testcase_71 TLE -
testcase_72 AC 4 ms
6,816 KB
testcase_73 AC 5 ms
6,816 KB
testcase_74 AC 4 ms
6,820 KB
testcase_75 AC 4 ms
6,820 KB
testcase_76 AC 4 ms
6,816 KB
testcase_77 AC 5 ms
6,816 KB
testcase_78 AC 3 ms
6,816 KB
testcase_79 AC 4 ms
6,816 KB
testcase_80 AC 4 ms
6,816 KB
testcase_81 AC 3 ms
6,816 KB
testcase_82 AC 4 ms
6,816 KB
testcase_83 AC 3 ms
6,816 KB
testcase_84 AC 39 ms
6,820 KB
testcase_85 AC 35 ms
6,820 KB
testcase_86 AC 39 ms
6,816 KB
testcase_87 AC 47 ms
6,820 KB
testcase_88 AC 41 ms
6,820 KB
testcase_89 AC 36 ms
6,820 KB
testcase_90 AC 33 ms
6,820 KB
testcase_91 AC 39 ms
6,816 KB
testcase_92 AC 27 ms
6,820 KB
testcase_93 AC 35 ms
13,772 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;
			bitset<1001> a,b;
			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<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<<ok<<endl;
		
	}
	
	
    return 0;
}
0