結果

問題 No.2929 Miracle Branch
ユーザー k82bk82b
提出日時 2024-10-12 16:32:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,231 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 83,988 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-12 16:33:00
合計ジャッジ時間 8,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 2 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 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
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 i = 0; i < i - 1; ++i) {
				u.push_back(i + 1);
				v.push_back(i + 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