結果

問題 No.1152 10億ゲーム
ユーザー nikkukunnikkukun
提出日時 2020-08-14 01:39:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 2,128 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 168,864 KB
実行使用メモリ 25,220 KB
平均クエリ数 22.98
最終ジャッジ日時 2024-07-17 05:50:27
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
25,220 KB
testcase_01 AC 90 ms
24,964 KB
testcase_02 AC 91 ms
25,220 KB
testcase_03 AC 92 ms
25,092 KB
testcase_04 AC 96 ms
25,220 KB
testcase_05 AC 92 ms
24,836 KB
testcase_06 AC 91 ms
24,836 KB
testcase_07 AC 93 ms
25,220 KB
testcase_08 AC 90 ms
25,220 KB
testcase_09 AC 89 ms
24,836 KB
testcase_10 AC 90 ms
24,820 KB
testcase_11 AC 94 ms
24,964 KB
testcase_12 AC 94 ms
25,092 KB
testcase_13 AC 92 ms
24,836 KB
testcase_14 AC 92 ms
25,220 KB
testcase_15 AC 92 ms
25,220 KB
testcase_16 AC 91 ms
24,836 KB
testcase_17 AC 92 ms
25,220 KB
testcase_18 AC 93 ms
24,836 KB
testcase_19 AC 92 ms
24,580 KB
testcase_20 AC 90 ms
25,220 KB
testcase_21 AC 91 ms
24,580 KB
testcase_22 AC 92 ms
25,220 KB
testcase_23 AC 92 ms
24,836 KB
testcase_24 AC 93 ms
25,220 KB
testcase_25 AC 94 ms
25,220 KB
testcase_26 AC 92 ms
24,836 KB
testcase_27 AC 93 ms
24,964 KB
testcase_28 AC 94 ms
25,220 KB
testcase_29 AC 93 ms
24,580 KB
testcase_30 AC 94 ms
24,836 KB
testcase_31 AC 94 ms
24,952 KB
testcase_32 AC 93 ms
25,220 KB
testcase_33 AC 94 ms
24,580 KB
testcase_34 AC 94 ms
25,208 KB
testcase_35 AC 91 ms
25,220 KB
testcase_36 AC 92 ms
24,836 KB
testcase_37 AC 92 ms
24,580 KB
testcase_38 AC 92 ms
24,964 KB
testcase_39 AC 92 ms
24,580 KB
testcase_40 AC 93 ms
25,088 KB
testcase_41 AC 97 ms
24,836 KB
testcase_42 AC 94 ms
25,220 KB
testcase_43 AC 92 ms
24,964 KB
testcase_44 AC 92 ms
24,580 KB
testcase_45 AC 93 ms
24,964 KB
testcase_46 AC 91 ms
24,836 KB
testcase_47 AC 91 ms
24,836 KB
testcase_48 AC 90 ms
24,964 KB
testcase_49 AC 92 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define fi first
#define se second
#define all(x) x.begin(), x.end()
#define lch (o << 1)
#define rch (o << 1 | 1)

typedef double db;
typedef long long ll;
typedef unsigned int ui;
typedef pair<int, int> pint;
typedef tuple<int, int, int> tint;

const int N = 100 + 5;
const int INF = 0x3f3f3f3f;
const ll INF_LL = 0x3f3f3f3f3f3f3f3f;
const int dx[] = {-1, 0, 1, 0, 2};
const int dy[] = {0, 1, 0, -1, 0};

int vst[N][N][2];
int f[N][N][2], nxt[N][N][2]; // 0: first, 1: second

bool OK(int x, int y) {
	return x >= 0 && x <= 9 && y >= 0 && y <= 9;
}

void BFS() {
	memset(f, 0x3f, sizeof(f));
	memset(nxt, -1, sizeof(nxt));

	for (int i = 0; i < 100; i++)
		for (int op = 0; op <= 1; op++)
			f[i][i][op] = 0;

	for (int t = 1; t < 100; t++) {
		for (int op = 0; op <= 1; op++)
			for (int u = 0; u < 100; u++)
				for (int v = 0; v < 100; v++) {
					if (f[u][v][op] != INF) continue;

					int minf = INF, minid = -1;
					int maxf = -INF, maxid = -1;
					for (int d = 0; d < 5; d++) {
						int nx = u / 10 + dx[d];
						int ny = u % 10 + dy[d];
						if (!OK(nx, ny)) continue;
						// special judge 79 -> 99
						if (d == 4 && u != 79) continue;

						int nu = nx * 10 + ny;
						int tmpf = f[v][nu][op ^ 1];
						if (tmpf < minf) minf = tmpf, minid = nu;
						if (tmpf > maxf) maxf = tmpf, maxid = nu;
					}

					if (op == 0 && minf != INF) {
						f[u][v][op] = minf + 1;
						nxt[u][v][op] = minid;
					}
					if (op == 1 && maxf != -INF && maxf != INF) {
						f[u][v][op] = maxf + 1;
						nxt[u][v][op] = maxid;
					}
				}
	}
}

int GetPow(int x, int d) {
	int ret = 0;
	while (x % d == 0) {
		ret++;
		x /= d;
	}
	return ret;
}

int main() {
	ios::sync_with_stdio(0);

	BFS();

	int u, v;
	cin >> u >> v;
	int ux = GetPow(u, 2), uy = GetPow(u, 5);
	int vx = GetPow(v, 2), vy = GetPow(v, 5);
	u = ux * 10 + uy;
	v = vx * 10 + vy;

	while (u != v) {
		u = nxt[u][v][0];
		cout << int(pow(2, u / 10) * pow(5, u % 10)) << endl;
		cout << flush;
		if (u == v) break;
		cin >> v;
		vx = GetPow(v, 2), vy = GetPow(v, 5);
		v = vx * 10 + vy;
	}

	return 0;
}
0