結果

問題 No.2929 Miracle Branch
ユーザー k82bk82b
提出日時 2024-10-12 16:34:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,231 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 84,860 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-12 16:34:15
合計ジャッジ時間 7,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 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 4 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 15 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 25 ms
5,248 KB
testcase_24 AC 90 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 6 ms
5,248 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <numeric>
#include <vector>
using Int = long long;
int main() {
	int N = 200000;
	Int X;
	std::cin >> X;
	std::vector<Int> A;
	for (Int i = 2; i * i <= X; ++i) if (X % i == 0) {
		X /= i;
		A.push_back(i);
	}
	if (X > 1) A.push_back(X);
	int M = A.size();
	int n = N + 1;
	std::vector<int> u, v;
	std::vector<char> c;
	for (int i = 1; i <= 100; ++i) {
		std::vector<Int> B(i, 1);
		for (int j = 0; j < M; ++j) {
			int id = min_element(B.begin(), B.end()) - B.begin();
			B[id] *= A[j];
		}
		Int x = std::accumulate(B.begin(), B.end(), 0LL) + i;
		if (x < n) {
			n = x;
			u.clear();
			v.clear();
			c.clear();
			int j = i + 1;
			for (int k = 0; k < i - 1; ++k) {
				u.push_back(k + 1);
				v.push_back(k + 2);
			}
			for (int k = 0; k < i; ++k) {
				for (int l = 0; l < B[k]; ++l) {
					u.push_back(k + 1);
					v.push_back(j++);
				}
				c.push_back('b');
			}
			while (int(c.size()) < n) {
				c.push_back('g');
			}
		}
	}
	if (n < N) {
		std::cout << n << std::endl;
		for (int i = 0; i < n - 1; ++i) std::cout << u[i] << ' ' << v[i] << std::endl;
		for (int i = 0; i < n; ++i) std::cout << c[i] << " \n"[i == n - 1];
	} else {
		std::cout << -1 << std::endl;
	}
}
0