結果

問題 No.1460 Max of Min
ユーザー e869120e869120
提出日時 2021-03-31 21:51:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,493 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 91,164 KB
実行使用メモリ 13,816 KB
最終ジャッジ日時 2024-05-09 07:13:46
合計ジャッジ時間 64,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,808 KB
testcase_01 AC 2 ms
9,676 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 2 ms
5,376 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 223 ms
5,376 KB
testcase_13 TLE -
testcase_14 AC 410 ms
5,376 KB
testcase_15 AC 125 ms
5,376 KB
testcase_16 AC 1,816 ms
13,808 KB
testcase_17 AC 858 ms
5,504 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 651 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 35 ms
5,376 KB
testcase_22 AC 730 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 1,027 ms
5,760 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 TLE -
testcase_27 AC 139 ms
5,376 KB
testcase_28 AC 21 ms
5,376 KB
testcase_29 AC 908 ms
5,632 KB
testcase_30 AC 1,928 ms
11,768 KB
testcase_31 AC 753 ms
5,376 KB
testcase_32 AC 21 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 13 ms
5,376 KB
testcase_35 AC 5 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 8 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 13 ms
5,376 KB
testcase_40 AC 11 ms
5,376 KB
testcase_41 AC 8 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 452 ms
5,376 KB
testcase_44 AC 727 ms
5,376 KB
testcase_45 AC 10 ms
5,376 KB
testcase_46 AC 124 ms
5,376 KB
testcase_47 AC 132 ms
5,376 KB
testcase_48 AC 1,410 ms
6,272 KB
testcase_49 AC 730 ms
5,376 KB
testcase_50 AC 9 ms
5,376 KB
testcase_51 AC 525 ms
5,376 KB
testcase_52 AC 80 ms
5,376 KB
testcase_53 AC 7 ms
5,376 KB
testcase_54 AC 8 ms
5,376 KB
testcase_55 AC 1,230 ms
5,760 KB
testcase_56 AC 8 ms
5,376 KB
testcase_57 AC 130 ms
5,376 KB
testcase_58 TLE -
testcase_59 AC 80 ms
5,376 KB
testcase_60 AC 159 ms
5,376 KB
testcase_61 AC 9 ms
5,376 KB
testcase_62 AC 9 ms
5,376 KB
testcase_63 AC 4 ms
5,376 KB
testcase_64 AC 3 ms
5,376 KB
testcase_65 TLE -
testcase_66 AC 10 ms
5,376 KB
testcase_67 AC 4 ms
5,376 KB
testcase_68 AC 214 ms
5,376 KB
testcase_69 AC 58 ms
5,376 KB
testcase_70 AC 21 ms
5,376 KB
testcase_71 AC 878 ms
5,376 KB
testcase_72 AC 9 ms
5,376 KB
testcase_73 AC 9 ms
5,376 KB
testcase_74 AC 7 ms
5,376 KB
testcase_75 AC 6 ms
5,376 KB
testcase_76 AC 6 ms
5,376 KB
testcase_77 AC 7 ms
5,376 KB
testcase_78 AC 5 ms
5,376 KB
testcase_79 AC 7 ms
5,376 KB
testcase_80 AC 6 ms
5,376 KB
testcase_81 AC 4 ms
5,376 KB
testcase_82 AC 6 ms
5,376 KB
testcase_83 AC 5 ms
5,376 KB
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:37:24: warning: overflow in conversion from 'long long int' to 'int' changes value from '-1152921504606846976' to '0' [-Woverflow]
   37 |                 A[i] = -(1LL << 60);
      |                        ^~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <map>
#include <ctime>
#include <cmath>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;
#pragma warning (disable: 4996)

int K;
long long N;
int A[1 << 22], B[1 << 22];
long long QA[1 << 22], QB[1 << 22];

int main() {
	// Crazy Solution
	// Step #1. 入力
	cin >> K >> N;
	for (int i = 0; i < K; i++) cin >> QA[i];
	for (int i = 0; i < K; i++) cin >> QB[i];

	// Step #2. 座標圧縮
	vector<long long> X;
	for (int i = 0; i < K; i++) X.push_back(QA[i]);
	for (int i = 0; i < K; i++) X.push_back(QB[i]);
	sort(X.begin(), X.end());
	X.erase(unique(X.begin(), X.end()), X.end());
	for (int i = 0; i < K; i++) A[i] = lower_bound(X.begin(), X.end(), QA[i]) - X.begin();
	for (int i = 0; i < K; i++) B[i] = lower_bound(X.begin(), X.end(), QB[i]) - X.begin();

	// Step #3. 愚直解
	int rem = min(N, 1LL * K * K);
	for (int i = K; i <= rem; i++) {
		A[i] = -(1LL << 60);
		for (int j = 0; j < K; j++) {
			A[i] = max(A[i], min(B[j], A[i - K + j]));
		}
	}
	if (rem == N) {
		cout << X[A[N]] << endl;
		return 0;
	}
	
	// Step #4. 周期を見る
	long long pr = -1;
	for (long long i = rem - 1; i >= K; i--) {
		bool flag = false;
		for (int j = 0; j < K; j++) {
			if (A[rem - K + j] != A[i - K + j]) { flag = true; break; }
		}
		if (flag == false) { pr = rem - i; break; }
	}
	
	// Step #5. 答えを出力
	long long idx = (rem - pr) + (N - rem) % pr;
	cout << X[A[idx]] << endl;
	return 0;
}
0