結果

問題 No.2929 Miracle Branch
ユーザー momoyuumomoyuu
提出日時 2024-10-13 18:25:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,536 bytes
コンパイル時間 1,168 ms
コンパイル使用メモリ 103,552 KB
実行使用メモリ 5,356 KB
最終ジャッジ日時 2024-10-13 18:26:05
合計ジャッジ時間 10,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 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 4 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 4 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 9 ms
5,248 KB
testcase_21 AC 16 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 25 ms
5,248 KB
testcase_24 AC 85 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 297 ms
5,248 KB
testcase_35 AC 268 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 276 ms
5,248 KB
testcase_38 AC 284 ms
5,248 KB
testcase_39 AC 271 ms
5,248 KB
testcase_40 AC 297 ms
5,248 KB
testcase_41 AC 263 ms
5,248 KB
testcase_42 AC 271 ms
5,356 KB
testcase_43 AC 272 ms
5,248 KB
testcase_44 AC 277 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll x;
    cin>>x;
    vector<ll> now;
    ll cnt = 0;
    for(int i = 2;i<=(int)2e5;i++){
        while(x%i==0){
            if(i==2){
                cnt++;
                x /= i;
                continue;
            }
            now.push_back(i);
            x /= i;
        }
    }
    if(x!=1) now.push_back(x);

    while(cnt>0){
        if(cnt>=2){
            now.push_back(4);
            cnt -= 2;
        }else{
            now.push_back(2);
            break;
        }
    }
    if(now.empty()){
        now.push_back(x);
    }
    ll sum = 0;
    for(int i = 0;i<now.size();i++) sum += now[i];
    sum += now.size();
    if(sum>(int)2e5){
        cout<<-1<<endl;
        return 0;
    }
    vector<int> u,v;
    int nxt = 0;
    int prev = -1;
    vector<char> ans;
    for(int i = 0;i<now.size();i++){
        if(prev!=-1){
            u.push_back(nxt);
            v.push_back(prev);
        }
        prev = nxt;
        nxt++;
        ans.push_back('b');
        for(int j = 0;j<now[i];j++){
            u.push_back(prev);
            v.push_back(nxt);
            nxt++;
            ans.push_back('g');
        }
    }
    cout<<ans.size()<<endl;
    for(int i = 0;i<u.size();i++){
        cout<<u[i]+1<<" "<<v[i]+1<<endl;
    }
    for(int i = 0;i<ans.size();i++){
        if(i) cout<<" ";
        cout<<ans[i];
    }
    cout<<endl;
    
}
0