結果

問題 No.2929 Miracle Branch
ユーザー yel_owyel_ow
提出日時 2024-11-24 03:17:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,673 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 252,252 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-11-24 03:17:49
合計ジャッジ時間 12,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_04 AC 5 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 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 17 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 27 ms
5,248 KB
testcase_24 AC 89 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 3 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 293 ms
9,472 KB
testcase_35 AC 273 ms
9,472 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 301 ms
9,428 KB
testcase_38 AC 284 ms
9,472 KB
testcase_39 AC 277 ms
9,344 KB
testcase_40 AC 271 ms
9,420 KB
testcase_41 AC 281 ms
9,344 KB
testcase_42 AC 293 ms
9,472 KB
testcase_43 AC 274 ms
9,428 KB
testcase_44 AC 269 ms
9,472 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <monsterenergy>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;

int main()
{
    ll X,Count=0; cin >> X;
    if(X == 1)
    {
    	cout << 2 << endl;
    	cout << 1 << " " << 2 << endl;
    	cout << "b g" << endl; 
    	return 0;
    }
    if(X == 4)
    {
    	cout << 5 << endl;
    	cout << 1 << " " << 2 << endl;
    	cout << 1 << " " << 3 << endl;
    	cout << 1 << " " << 4 << endl;
    	cout << 1 << " " << 5 << endl;
    	cout << "b g g g g" << endl; 
    	return 0;
    }
    vector<int> Ans;
    for(ll i = 3; i <= 200000; i++)
    {
        int c = 0;
        while(X%i == 0)
        {
            c++;
            X/=i;
            Ans.push_back(i);
        }
        Count += (i+1)*c;
    }
    int c = 0;
    while(X%2 == 0)
    {
        c++;
        X/=2;
        Ans.push_back(2);
    }
    Count += 3*c;
    
    if(X != 1 || 200000 < Count)
    {
        cout << -1 << endl;
        return 0;
    }
    vector<string> Color(Count+1);
    if(Count)
    cout << Count << endl;
    int used = 1, save = -1;
    for(int i = 0; i < Ans.size(); i++)
    {
        Color[used] = "b";
        for(int j = 1; j <= Ans[i]; j++)
        {
            cout << used << " " << used+j << endl;
            Color[used+j] = "g";
        }
        if(save != -1) cout << save << " " << used << endl;
        save = used;
        used += Ans[i]+1;
    }
    for(int i = 1; i <= Count; i++)
    {
        cout << Color[i] << " ";
    }
    cout << endl;
    return 0;
}
0