結果
問題 | No.2929 Miracle Branch |
ユーザー | achapi |
提出日時 | 2024-10-12 16:26:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,421 bytes |
コンパイル時間 | 2,529 ms |
コンパイル使用メモリ | 210,628 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 16:27:06 |
合計ジャッジ時間 | 12,347 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
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 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 5 ms
5,248 KB |
testcase_20 | AC | 7 ms
5,248 KB |
testcase_21 | AC | 14 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 25 ms
5,248 KB |
testcase_24 | AC | 87 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 275 ms
5,248 KB |
testcase_35 | AC | 273 ms
5,248 KB |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 284 ms
5,248 KB |
testcase_38 | AC | 284 ms
5,248 KB |
testcase_39 | AC | 280 ms
5,248 KB |
testcase_40 | AC | 276 ms
5,248 KB |
testcase_41 | AC | 272 ms
5,248 KB |
testcase_42 | AC | 290 ms
5,248 KB |
testcase_43 | AC | 271 ms
5,248 KB |
testcase_44 | AC | 281 ms
5,248 KB |
testcase_45 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template<class T> T pow_mod(T A, T N, T M) { T res = 1 % M; A %= M; while (N) { if (N & 1) res = (res * A) % M; A = (A * A) % M; N >>= 1; } return res; } bool is_prime(long long N) { if (N <= 1) return false; if (N == 2 || N == 3) return true; if (N % 2 == 0) return false; vector<long long> A = {2, 325, 9375, 28178, 450775, 9780504, 1795265022}; long long s = 0, d = N - 1; while (d % 2 == 0) { ++s; d >>= 1; } for (auto a : A) { if (a % N == 0) return true; long long t, x = pow_mod<__int128_t>(a, d, N); if (x != 1) { for (t = 0; t < s; ++t) { if (x == N - 1) break; x = __int128_t(x) * x % N; } if (t == s) return false; } } return true; } long long pollard(long long N) { if (N % 2 == 0) return 2; if (is_prime(N)) return N; long long step = 0; auto f = [&](long long x) -> long long { return (__int128_t(x) * x + step) % N; }; while (true) { ++step; long long x = 1, y = f(x); while (true) { long long p = gcd(y - x + N, N); if (p == 0 || p == N) break; if (p != 1) return p; x = f(x); y = f(f(y)); } } } vector<long long> prime_factorize(long long N) { if (N == 1) return {1}; long long p = pollard(N); if (p == N) return {p}; vector<long long> left = prime_factorize(p); vector<long long> right = prime_factorize(N / p); left.insert(left.end(), right.begin(), right.end()); sort(left.begin(), left.end()); return left; } const long long N_MAX = 200000; int main(){ long long X; cin >> X; auto P = prime_factorize(X); if (X + 1 <= N_MAX and X + 1 < accumulate(P.begin(), P.end(), 0LL) + P.size()){ cout << X + 1 << endl; for (int i = 0; i < X; i++){ cout << 1 << ' ' << 2 + i << endl; } cout << "g"; for (int i = 0; i < X; i++){ cout << " b"; } cout << endl; } else if (accumulate(P.begin(), P.end(), 0LL) + P.size() <= N_MAX){ cout << accumulate(P.begin(), P.end(), 0) + P.size() << endl; for (int i = 0; i < (int) P.size() - 1; i++){ cout << i + 1 << ' ' << i + 2 << endl; } int cnt = P.size(); for (int i = 0; i < (int) P.size(); i++){ for (int j = 0; j < P[i]; j++){ cnt++; cout << i + 1 << ' ' << cnt << endl; } } for (int i = 0; i < (int) P.size(); i++){ cout << "b "; } for (int i = 0; i < accumulate(P.begin(), P.end(), 0); i++){ cout << "g "; } cout << endl; } else { cout << -1 << endl; } }