結果

問題 No.2929 Miracle Branch
ユーザー hirakuuuuhirakuuuu
提出日時 2024-10-12 16:30:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,058 bytes
コンパイル時間 2,989 ms
コンパイル使用メモリ 251,284 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-12 16:31:00
合計ジャッジ時間 7,037 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 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
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 <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
#define rep(i, a, n) for(int 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> p, q;
    ll sum_q = 0;
    auto f = [&](auto self, ll y) -> bool {
        if(y == 1){
            p = q;
            return true;
        }

        if(sum_q+q.size()+(y+1) <= 200000){
            sum_q += y;
            q.push_back(y);
            p = q;
            return true;
        }

        int start = 2;
        bool res = false;
        if(!q.empty()) start = q.back();
        ll last = min(200000LL, (ll)sqrt(y+1)+1);
        // cout << y << ' ' << start << ' ' << last << endl;
        rep(i, start, last){
            if(y%i == 0){
                if(sum_q+q.size()+(i+1) <= 200000){
                    q.push_back(i);
                    sum_q += i;
                    res |= self(self, y/i);
                    q.pop_back();
                    sum_q -= i;
                }
            }
        }
        return res;
    };


    if(!f(f, x)){
        cout << -1 << endl;
        return 0;
    }
    int n = (int)p.size();
    int sum_p = 0;
    rep(i, 0, n) sum_p += p[i];
    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