結果
問題 | No.2929 Miracle Branch |
ユーザー | srjywrdnprkt |
提出日時 | 2024-10-15 01:32:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,882 bytes |
コンパイル時間 | 2,580 ms |
コンパイル使用メモリ | 216,056 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 01:32:32 |
合計ジャッジ時間 | 13,443 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
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 | 3 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 3 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 3 ms
5,248 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 279 ms
5,248 KB |
testcase_44 | WA | - |
testcase_45 | AC | 3 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; vector<bool> prime; void erat(ll N){ prime.resize(N+1, 1); prime[0] = 0; prime[1] = 0; for (ll i=2; i*i<=N; i++){ if (prime[i]){ for (ll j=i*2; j <= N; j+=i){ prime[j] = 0; } } } } int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); /* 4は2*2に分解しない方がいい 6以上は分解した方がいい。 */ ll X, N=2e5, ng=0, nb=0, x, y; cin >> X; if (X == 1){ cout << 2 << endl; cout << 1 << " " << 2 << endl; cout << 'b' << " " << 'g' << endl; return 0; } vector<ll> v; //茶色の頂点の番号 map<ll, ll> mp; erat(N); for (int i=2; i<=N; i++){ if (!prime[i]) continue; while(X % i == 0){ X /= i; mp[i]++; } } if (X > N){ cout << -1 << endl; return 0; } x = mp[2]; y = x/2; //4がy個 for (int i=0; i<y; i++){ nb++; v.push_back(ng+nb); ng += 4; } if (x % 2 == 1){ nb++; v.push_back(ng+nb); ng += 2; } for (auto [x, y] : mp){ if (x == 2) continue; for (int i=0; i<y; i++){ nb++; v.push_back(ng+nb); ng += x; } } v.push_back(nb+ng+1); if (nb+ng > N){ cout << -1 << endl; return 0; } cout << nb+ng << endl; for (int i=0; i<v.size()-1; i++){ for (int j=v[i]+1; j<=v[i+1]-1; j++){ cout << v[i] << " " << j << endl; } } for (int i=0; i<v.size()-1; i++){ cout << "b "; for (int j=v[i]+1; j<=v[i+1]-1; j++){ cout << (i == v.size()-2 && j == v[i+1]-1 ? "g" : "g "); } } return 0; }