結果

問題 No.2929 Miracle Branch
ユーザー hirakuuuuhirakuuuu
提出日時 2024-10-12 17:17:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 2,182 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 251,484 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 17:17:17
合計ジャッジ時間 14,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 6 ms
5,248 KB
testcase_04 AC 21 ms
5,248 KB
testcase_05 AC 64 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 34 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 21 ms
5,248 KB
testcase_11 AC 81 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 16 ms
5,248 KB
testcase_15 AC 88 ms
5,248 KB
testcase_16 AC 24 ms
5,248 KB
testcase_17 AC 9 ms
5,248 KB
testcase_18 AC 7 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 26 ms
5,248 KB
testcase_24 AC 90 ms
5,248 KB
testcase_25 AC 12 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 4 ms
5,248 KB
testcase_34 AC 275 ms
5,248 KB
testcase_35 AC 281 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 278 ms
5,248 KB
testcase_38 AC 266 ms
5,248 KB
testcase_39 AC 278 ms
5,248 KB
testcase_40 AC 268 ms
5,248 KB
testcase_41 AC 305 ms
5,248 KB
testcase_42 AC 266 ms
5,248 KB
testcase_43 AC 287 ms
5,248 KB
testcase_44 AC 272 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
#define rep(i, a, n) for(ll i = a; i < n; i++)
#define rrep(i, a, n) for(int i = a; i >= n; i--)
#define inr(l, x, r) (l <= x && x < r)
#define ll long long
#define ld long double

// using mint = modint1000000007;
// using mint = modint998244353;
constexpr int IINF = 1001001001;
constexpr ll INF = 1e18;

template<class t,class u> void chmax(t&a,u b){if(a<b)a=b;}
template<class t,class u> void chmin(t&a,u b){if(b<a)a=b;}

int main(){
    ll x; cin >> x;
    if(x == 1){
        cout << "2" << endl;
        cout << "1 2" << endl;
        cout << "b g" << endl;
        return 0;
    }

    vector<ll> yakusu;
    rep(i, 2, 200000){
        if(x%i == 0) yakusu.push_back(i);
    }
    int m = (int)yakusu.size();

    vector<ll> p, q;
    ll sum_q = 0, sum_p = 200001;
    ll score_p = 200001, score_q = 0;
    auto f = [&](auto self, ll y, int pos=0) -> void {
        if(y == 1){
            if(score_p > score_q){
                p = q;
                sum_p = sum_q;
                score_p = score_q;
            }
            return;
        }
        if(y%4 == 0){
            q.push_back(4);
            sum_q += 4;
            score_q += 5;
            self(self, y/4, pos);
            return;
        }

        rep(id, pos, m){
            ll i = yakusu[id];
            if(i > y || score_q+(i+1) >= score_p) break;
            if(y%i == 0){
                q.push_back(i);
                sum_q += i;
                score_q += i+1;
                self(self, y/i, id);
                q.pop_back();
                sum_q -= i;
                score_q -= i+1;
            }
        }
    };

    f(f, x);
    if(score_p > 200000LL){
        cout << -1 << endl;
        return 0;
    }
    int n = (int)p.size();
    cout << sum_p+n << endl;
    int adj = n+1;
    rep(i, 0, n){
        if(i > 0) cout << i << ' ' << i+1 << endl;
        rep(j, 0, p[i]){
            cout << i+1 << ' ' << adj++ << endl;
        }
    }
    rep(i, 0, n){
        cout << 'b' << ' ';
    }
    rep(i, 0, sum_p){
        cout << 'g' << ' ';
    }
    cout << endl;

    
    return 0;
}
0