結果

問題 No.2929 Miracle Branch
ユーザー AyunaAyuna
提出日時 2024-10-19 16:44:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,830 bytes
コンパイル時間 1,312 ms
コンパイル使用メモリ 87,504 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-19 16:44:34
合計ジャッジ時間 12,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,824 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,824 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,824 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 5 ms
6,820 KB
testcase_20 AC 7 ms
6,816 KB
testcase_21 AC 14 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 26 ms
6,824 KB
testcase_24 AC 88 ms
6,816 KB
testcase_25 AC 11 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 4 ms
6,824 KB
testcase_30 AC 4 ms
6,820 KB
testcase_31 AC 4 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 283 ms
6,820 KB
testcase_35 AC 289 ms
6,820 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 282 ms
6,820 KB
testcase_38 AC 289 ms
6,820 KB
testcase_39 AC 293 ms
6,816 KB
testcase_40 AC 279 ms
6,820 KB
testcase_41 AC 295 ms
6,820 KB
testcase_42 AC 304 ms
6,820 KB
testcase_43 AC 291 ms
6,820 KB
testcase_44 AC 280 ms
6,816 KB
testcase_45 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <cassert>

using namespace std;
using ll = long long;


int main(){
  const ll mx = 200'000;
  ll x;
  cin >> x;
  if (x == 1){
    cout << 2 << endl;
    cout << "1 2" << endl;
    cout << "b g" << endl;
    return 0;
  }
  map<ll, ll> cnt;
  for(ll i = 2; i <= mx; i++){
    if (i * i > x) break;
    while(x % i == 0){
      x /= i;
      cnt[i]++;
    }
  }
  if (x <= mx && x != 1) {
    cnt[x]++;
    x = 1;
  }
  if(x > 1) {
    cout << -1 << endl;
    return 0;
  }
  ll n = 0;
  ll b = 0;
  for(auto p: cnt){
    if (p.first == 2){
      n += p.second / 2 * 5;
      b += p.second / 2;
      n += p.second % 2 * 3;
      b += p.second % 2;
    }
    else{
      n += p.second * (p.first + 1);
      b += p.second;
    }
    if (n > mx){
      cout << -1 << endl;
      return 0;
    }
  }
  cout << n << endl;
  for (int i = 0; i < b - 1; i++){
    cout << i + 1 << " " << i + 2 << endl;
  }
  int g = 0;
  int useb = 0;
  for(auto p: cnt){
    if (p.first == 2){
      for (int i = 0; i < p.second / 2; i++){
        for (int j = 0; j < 4; j++){
          cout << useb + 1 << " " << b + g + 1 << endl;
          g++;
        }
        useb++;
      }
      for (int i = 0; i < p.second % 2; i++){
        for (int j = 0; j < 2; j++){
          cout << useb + 1 << " " << b + g + 1 << endl;
          g++;
        }
        useb++;
      }
    }
    else{
      for (int i = 0; i < p.second; i++){
        for (int j = 0; j < p.first; j++){
          cout << useb + 1 << " " << b + g + 1 << endl;
          g++;
        }
        useb++;
      }
    }
  }
  assert(b == useb);
  assert(b + g == n);
  for (int i = 0; i < b; i++){
    cout << "b ";
  }
  for(int i = 0; i < n - b; i++){
    if (i != n - b - 1) cout << "g ";
    else cout << "g" << endl;
  }
}
0