結果

問題 No.2929 Miracle Branch
ユーザー momoyuumomoyuu
提出日時 2024-10-13 18:24:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,535 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 103,888 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-10-13 18:24:28
合計ジャッジ時間 11,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 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 WA -
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 WA -
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 27 ms
5,248 KB
testcase_24 AC 87 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 278 ms
5,356 KB
testcase_35 AC 274 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 260 ms
5,352 KB
testcase_38 AC 252 ms
5,352 KB
testcase_39 AC 262 ms
6,816 KB
testcase_40 AC 265 ms
5,248 KB
testcase_41 AC 269 ms
5,248 KB
testcase_42 AC 253 ms
5,352 KB
testcase_43 AC 274 ms
5,248 KB
testcase_44 AC 252 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);
    if(now.empty()){
        now.push_back(x);
    }
    while(cnt>0){
        if(cnt>=2){
            now.push_back(4);
            cnt -= 2;
        }else{
            now.push_back(2);
            break;
        }
    }
    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