結果

問題 No.2929 Miracle Branch
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-13 16:35:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 208,152 KB
実行使用メモリ 5,736 KB
最終ジャッジ日時 2024-10-13 16:35:21
合計ジャッジ時間 12,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 16 ms
5,248 KB
testcase_22 AC 5 ms
5,248 KB
testcase_23 AC 27 ms
5,248 KB
testcase_24 AC 92 ms
5,248 KB
testcase_25 AC 13 ms
5,248 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 8 ms
5,672 KB
testcase_34 AC 286 ms
5,672 KB
testcase_35 AC 290 ms
5,672 KB
testcase_36 AC 9 ms
5,544 KB
testcase_37 AC 301 ms
5,676 KB
testcase_38 AC 285 ms
5,540 KB
testcase_39 AC 288 ms
5,672 KB
testcase_40 AC 284 ms
5,672 KB
testcase_41 AC 290 ms
5,544 KB
testcase_42 AC 278 ms
5,736 KB
testcase_43 AC 280 ms
5,668 KB
testcase_44 AC 289 ms
5,544 KB
testcase_45 AC 9 ms
5,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	long long x;
	cin >> x;
	if (x == 1) {
		cout << "2\n1 2\nb g\n";
		return 0;
	}
	const int M = 200000;
	vector<int> pf;
	for (int i = 2; i <= M; i++) {
		while (x % i == 0) {
			pf.push_back(i);
			x /= i;
		}
	}
	if (x > 1) {
		cout << -1 << endl;
		return 0;
	}
	vector<pair<int, int>> ans;
	vector<char> color;
	int n = 0;
	int r_prev = 0;
	for (int i = 0; i < pf.size(); i++) {
		if (n) {
			ans.push_back({r_prev, n});
		}
		int r = n++;
		color.push_back('b');
		int cnt = pf[i];
		if (i + 1 < pf.size() && pf[i] == 2 && pf[i + 1] == 2) {
			cnt = 4;
			i++;
		}
		for (int j = 0; j < cnt; j++) {
			ans.push_back({r, n++});
			color.push_back('g');
		}
		r_prev = r;
	}
	if (n > M) {
		cout << -1 << endl;
		return 0;
	}
	cout << n << endl;
	for (auto [u, v] : ans) {
		cout << u + 1 << " " << v + 1 << endl;
	}
	for (int i = 0; i < n; i++) {
		cout << color[i] << " ";
	}
	cout << endl;
}
0