結果

問題 No.2929 Miracle Branch
ユーザー achapiachapi
提出日時 2024-10-12 16:04:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,763 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 219,876 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 16:04:53
合計ジャッジ時間 13,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 10 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 14 ms
5,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 33 ms
5,248 KB
testcase_24 AC 98 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 12 ms
5,248 KB
testcase_28 AC 10 ms
5,248 KB
testcase_29 AC 10 ms
5,248 KB
testcase_30 AC 10 ms
5,248 KB
testcase_31 AC 10 ms
5,248 KB
testcase_32 AC 10 ms
5,248 KB
testcase_33 AC 10 ms
5,248 KB
testcase_34 AC 320 ms
5,248 KB
testcase_35 AC 298 ms
5,248 KB
testcase_36 AC 10 ms
5,248 KB
testcase_37 AC 284 ms
5,248 KB
testcase_38 AC 295 ms
5,248 KB
testcase_39 AC 294 ms
5,248 KB
testcase_40 AC 286 ms
5,248 KB
testcase_41 AC 289 ms
5,248 KB
testcase_42 AC 311 ms
5,248 KB
testcase_43 AC 286 ms
5,248 KB
testcase_44 WA -
testcase_45 AC 15 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long N_MAX = 200000;
int main(){
	long long X;
	cin >> X;
	vector<tuple<int, int, int, int, int>> P;
	if (X <= N_MAX){
		P.push_back(make_tuple(X + 1, 0, X, -1, -1));
	}
	for (int i = 1; i <= N_MAX; i++){
		if (X % i == 0 and X / i + i + 2 <= N_MAX){
			P.push_back(make_tuple(X / i + i + 2, 1, i, X / i, -1));
		}
	}
	for (int i = 1; i <= N_MAX; i++){
		if (X % i != 0){
			continue;
		}
		for (int j = 1; j * i <= N_MAX; j++){
			if (X / i % j == 0 and X / i / j + i + j + 3 <= N_MAX){
				P.push_back(make_tuple(X / i / j + i + j + 2, 2, i, j, X / i / j));
			}
		}
	}
	if (!P.empty()){
		auto [_, f, i, j, k] = *min_element(P.begin(), P.end());
		if (f == 0){
			cout << i + 1 << endl;
			for (int l = 0; l < i; l++){
				cout << 1 << ' ' << 2 + l << endl;
			}
			cout << "b";
			for (int l = 0; l < i; l++){
				cout << ' ' << 'g';
			}
			cout << endl;
		}
		if (f == 1){
			cout << i + j + 2 << endl;
			cout << 1 << ' ' << 2 << endl;
			for (int l = 0; l < i; l++){
				cout << 1 << ' ' << 3 + l << endl;
			}
			for (int l = 0; l < j; l++){
				cout << 2 << ' ' << 3 + i + l << endl;
			}
			cout << "b b";
			for (int l = 0; l < i + j; l++){
				cout << ' ' << 'g';
			}
			cout << endl;
		}
		if (f == 2){
			cout << i + j + k + 2 << endl;
			cout << 1 << ' ' << 2 << endl;
			cout << 2 << ' ' << 3 << endl;
			for (int l = 0; l < i; l++){
				cout << 1 << ' ' << 4 + l << endl;
			}
			for (int l = 0; l < j; l++){
				cout << 2 << ' ' << 4 + i + l << endl;
			}
			for (int l = 0; l < k; l++){
				cout << 3 << ' ' << 4 + i + j + l << endl;
			}
			cout << "b b b";
			for (int l = 0; l < i + j + k; l++){
				cout << ' ' << 'g';
			}
			cout << endl;
		}
	} else {
		cout << -1 << endl;
	}
}
0