結果

問題 No.1460 Max of Min
ユーザー 沙耶花沙耶花
提出日時 2021-03-31 21:54:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 988 bytes
コンパイル時間 4,839 ms
コンパイル使用メモリ 267,620 KB
実行使用メモリ 167,116 KB
最終ジャッジ日時 2024-12-15 18:16:03
合計ジャッジ時間 115,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
139,124 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 4 ms
138,992 KB
testcase_04 AC 4 ms
13,636 KB
testcase_05 AC 2 ms
136,824 KB
testcase_06 AC 44 ms
26,532 KB
testcase_07 TLE -
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
130,484 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 7 ms
13,640 KB
testcase_13 TLE -
testcase_14 AC 19 ms
17,828 KB
testcase_15 AC 7 ms
109,340 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 69 ms
14,752 KB
testcase_19 TLE -
testcase_20 AC 6 ms
13,636 KB
testcase_21 AC 8 ms
104,032 KB
testcase_22 AC 171 ms
37,796 KB
testcase_23 AC 7 ms
132,664 KB
testcase_24 TLE -
testcase_25 AC 2 ms
99,104 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 7 ms
13,636 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 32 ms
106,108 KB
testcase_32 AC 355 ms
63,268 KB
testcase_33 AC 4 ms
123,812 KB
testcase_34 AC 332 ms
44,576 KB
testcase_35 AC 35 ms
73,836 KB
testcase_36 AC 2 ms
13,632 KB
testcase_37 AC 46 ms
75,376 KB
testcase_38 AC 5 ms
13,636 KB
testcase_39 AC 378 ms
167,116 KB
testcase_40 AC 396 ms
40,864 KB
testcase_41 AC 78 ms
147,280 KB
testcase_42 AC 30 ms
17,188 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 23 ms
141,748 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 20 ms
148,736 KB
testcase_50 AC 7 ms
13,636 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 AC 20 ms
146,700 KB
testcase_54 AC 14 ms
19,232 KB
testcase_55 TLE -
testcase_56 AC 9 ms
16,416 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 21 ms
147,280 KB
testcase_62 AC 21 ms
23,460 KB
testcase_63 AC 3 ms
139,576 KB
testcase_64 AC 3 ms
13,640 KB
testcase_65 TLE -
testcase_66 AC 19 ms
22,688 KB
testcase_67 AC 3 ms
6,820 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 245 ms
55,296 KB
testcase_71 TLE -
testcase_72 AC 13 ms
12,800 KB
testcase_73 AC 13 ms
12,800 KB
testcase_74 AC 10 ms
11,136 KB
testcase_75 AC 7 ms
8,832 KB
testcase_76 AC 8 ms
8,320 KB
testcase_77 AC 8 ms
9,472 KB
testcase_78 AC 4 ms
6,816 KB
testcase_79 AC 10 ms
10,624 KB
testcase_80 AC 5 ms
6,816 KB
testcase_81 AC 3 ms
6,816 KB
testcase_82 AC 6 ms
7,424 KB
testcase_83 AC 5 ms
6,816 KB
testcase_84 TLE -
testcase_85 TLE -
testcase_86 AC 16 ms
14,080 KB
testcase_87 TLE -
testcase_88 TLE -
testcase_89 AC 136 ms
41,344 KB
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 806 ms
83,920 KB
testcase_93 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
	
	long long n = N;
	vector<vector<long long>> temp(1,A);
	bool f = false;
	while(true){
		if(n==0){
			f=true;
			cout<<temp.back().back()<<endl;
			return 0;
		}
		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:;
	cout<<temp[n%temp.size()].back()<<endl;
	
	
    return 0;
}
0