結果

問題 No.2929 Miracle Branch
ユーザー karinohitokarinohito
提出日時 2024-10-14 14:15:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,544 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 207,948 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 14:15:28
合計ジャッジ時間 11,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 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 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 3 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 3 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 14 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 24 ms
5,248 KB
testcase_24 AC 79 ms
5,248 KB
testcase_25 AC 12 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 248 ms
5,248 KB
testcase_35 AC 253 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 260 ms
5,248 KB
testcase_38 AC 258 ms
5,248 KB
testcase_39 AC 248 ms
5,248 KB
testcase_40 AC 267 ms
5,248 KB
testcase_41 AC 250 ms
5,248 KB
testcase_42 AC 255 ms
5,248 KB
testcase_43 AC 253 ms
5,248 KB
testcase_44 AC 243 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint = modint998244353;


void solve() {
    ll X;
    cin>>X;
    vector<bool> P(2e5+10,1);
    P[0]=P[1]=0;
    vector<int> Q;
    if(X==1){
        Q.push_back(1);
    }
    for(int i=0;i<2e5+10;i++){
        if(P[i]){
            for(int j=i*2;j<2e5+10;j+=i)P[j]=0;
            while(X%i==0){
                if(i==2){
                    if(X%4==0){
                        Q.push_back(4);
                        X/=4;
                    }
                    else{
                        Q.push_back(2);
                        X/=2;
                    }
                }
                else{
                    Q.push_back(i);
                    X/=i;
                }
            }
        }
    } 
    if(X!=1){
        cout<<-1<<endl;
        return;
    }
    ll S=Q.size();
    for(int q:Q){
        S+=q;
    }
    if(S>2e5){
        cout<<-1<<endl;
        return;
    }
    cout<<S<<endl;
    int cnt=Q.size();
    for(int i=1;i<Q.size();i++){
        cout<<i<<" "<<i+1<<endl;
        for(int j=0;j<Q[i-1];j++){
            cout<<i<<" "<<cnt+1<<endl;
            cnt++;
        }
    }
    for(int j=0;j<Q.back();j++){
        cout<<Q.size()<<" "<<cnt+1<<endl;
        cnt++;
    }
    for(int i=0;i<S;i++){
        cout<<"gb"[i<Q.size()]<<" \n"[i==S-1];
    }
}

int main() {

    ios::sync_with_stdio(false);
    cin.tie(nullptr);


    // ll T;
    // cin>>T;
    // while(T--)
    solve();
}
0