結果

問題 No.2929 Miracle Branch
ユーザー winguwingu
提出日時 2024-10-12 16:41:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,264 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 249,648 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:41:53
合計ジャッジ時間 13,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 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 4 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 4 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 5 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 4 ms
5,248 KB
testcase_23 AC 27 ms
5,248 KB
testcase_24 AC 86 ms
5,248 KB
testcase_25 AC 12 ms
5,248 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 6 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 4 ms
5,248 KB
testcase_34 AC 289 ms
5,248 KB
testcase_35 AC 272 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 279 ms
5,248 KB
testcase_38 AC 275 ms
5,248 KB
testcase_39 AC 270 ms
5,248 KB
testcase_40 AC 290 ms
5,248 KB
testcase_41 AC 280 ms
5,248 KB
testcase_42 AC 295 ms
5,248 KB
testcase_43 AC 280 ms
5,248 KB
testcase_44 AC 268 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
using namespace atcoder;
#ifdef DEFINED_ONLY_IN_LOCAL
#include <dump.hpp>
#define dump(...) cpp_dump(__VA_ARGS__)
#else
#undef dump
#define dump(...)
#endif
#define rep(i, n) for (int i = 0; i < n; i++)
template <class T> istream& operator>>(istream& I, vector<T>& V) { for (T& X : V) I >> X; return I; }

int main() {
    long x;
    cin >> x;
    if (x == 1) {
        cout << 2 << endl;
        cout << 1 << " " << 2 << endl;
        cout << "b g" << endl;
        return 0;
    }
    vector<int> b;
    for (int i = 3; i <= 2e5; i++) {
        while (x % i == 0) {
            x /= i;
            b.push_back(i);
        }
    }
    if (x == 2) b.push_back(x), x /= 2;
    int sz = reduce(b.begin(), b.end()) + b.size();
    if (sz > 2e5 or x != 1) {
        cout << -1 << endl;
        return 0;
    }
    cout << sz << endl;
    for (int i = 0; i < b.size() - 1; i++) {
        cout << i + 1 << " " << i + 2 << endl;
    }
    int idx = b.size() + 1;
    rep(i, b.size()) {
        rep(j, b[i]) {
            cout << i + 1 << " " << idx++ << endl;
        }
    }
    rep(i, b.size()) cout << "b ";
    rep(i, reduce(b.begin(), b.end())) cout << "g ";
    cout << endl;
    return 0;
}
0