結果

問題 No.2929 Miracle Branch
ユーザー kwm_tkwm_t
提出日時 2024-10-12 16:58:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,746 bytes
コンパイル時間 5,447 ms
コンパイル使用メモリ 311,712 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 16:59:30
合計ジャッジ時間 25,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
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 AC 7 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 15 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 27 ms
5,248 KB
testcase_24 AC 91 ms
5,248 KB
testcase_25 AC 13 ms
5,248 KB
testcase_26 WA -
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 290 ms
5,248 KB
testcase_35 AC 279 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 287 ms
5,248 KB
testcase_38 AC 271 ms
5,248 KB
testcase_39 AC 282 ms
5,248 KB
testcase_40 AC 274 ms
5,248 KB
testcase_41 AC 285 ms
5,248 KB
testcase_42 AC 288 ms
5,248 KB
testcase_43 WA -
testcase_44 AC 269 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	long long n; cin >> n;
	vector<long long>mn(3, LINF);
	mn[0] = n + 1;
	const int LIM = 200000;

	vector<long long>cand;
	rep2(i, 1, 200001) if (0 == n % i)cand.push_back(i);

	int p0 = -1, q0 = -1;
	rep(i, cand.size())rep(j, cand.size()) {
		long long x = cand[i] * cand[j];
		long long y = cand[i] + cand[j];
		if (n != x) continue;
		if (y + 2 <= LIM) {
			if (chmin(mn[1], y + 2)) {
				p0 = cand[i];
				q0 = cand[j];
			}
		}
	}
	int p1 = -1, q1 = -1, r1 = -1;
	rep(i, cand.size())rep(j, cand.size()) rep(k, cand.size()) {
		long long x = cand[i] * cand[j] * cand[k];
		long long y = cand[i] + cand[j] + cand[k];
		if (n != x) continue;
		if (y + 3 <= LIM) {
			if (chmin(mn[2], y + 3)) {
				p1 = cand[i];
				q1 = cand[j];
				r1 = cand[k];
			}
		}
	}
	long long mnn = LINF;
	rep(i, 3)chmin(mnn, mn[i]);
	if (mnn > 200000) {
		cout << -1 << endl;
		return 0;
	}
	cout << mnn << endl;
	if (mnn == mn[0]) {
		rep(i, mnn - 1)cout << 1 << " " << i + 2 << endl;
		vector<char>c(mnn, 'g');
		c[mnn - 1] = 'b';
		rep(i, mnn)cout << c[i] << " ";
		cout << endl;
	}
	else if (mnn == mn[1]) {
		rep(i, p0)cout << i + 1 << " " << p0 + q0 + 1 << endl;
		rep(i, q0)cout << i + 1 + p0 << " " << p0 + q0 + 2 << endl;
		cout << p0 + q0 + 1 << " " << p0 + q0 + 2 << endl;
		vector<char>c(mnn, 'g');
		c[mnn - 2] = 'b';
		c[mnn - 1] = 'b';
		rep(i, mnn)cout << c[i] << " ";
		cout << endl;
	}
	else {
		rep(i, p1)cout << i + 1 << " " << p1 + q1 + r1 + 1 << endl;
		rep(i, q1)cout << i + 1 + p1 << " " << p1 + q1 + r1 + 2 << endl;
		rep(i, r1)cout << i + 1 + p1 + q1 << " " << p1 + q1 + r1 + 3 << endl;
		cout << p1 + q1 + r1 + 1 << " " << p1 + q1 + r1 + 2 << endl;
		cout << p1 + q1 + r1 + 2 << " " << p1 + q1 + r1 + 3 << endl;
		vector<char>c(mnn, 'g');
		c[mnn - 3] = 'b';
		c[mnn - 2] = 'b';
		c[mnn - 1] = 'b';
		rep(i, mnn)cout << c[i] << " ";
		cout << endl;
	}
	return 0;
}
0