結果

問題 No.5016 Worst Mayor
ユーザー e869120e869120
提出日時 2023-04-28 21:35:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,544 bytes
コンパイル時間 710 ms
コンパイル使用メモリ 70,260 KB
実行使用メモリ 24,372 KB
スコア 5,513,624,424
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 12:31:59
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
23,820 KB
testcase_01 AC 92 ms
24,264 KB
testcase_02 AC 92 ms
23,544 KB
testcase_03 AC 91 ms
23,400 KB
testcase_04 AC 93 ms
24,036 KB
testcase_05 AC 93 ms
23,832 KB
testcase_06 AC 95 ms
24,276 KB
testcase_07 AC 93 ms
24,336 KB
testcase_08 AC 93 ms
23,616 KB
testcase_09 AC 93 ms
24,360 KB
testcase_10 AC 92 ms
23,964 KB
testcase_11 AC 91 ms
24,036 KB
testcase_12 AC 93 ms
23,640 KB
testcase_13 AC 90 ms
24,372 KB
testcase_14 AC 93 ms
24,024 KB
testcase_15 AC 94 ms
23,640 KB
testcase_16 AC 94 ms
23,640 KB
testcase_17 AC 92 ms
23,520 KB
testcase_18 AC 92 ms
23,628 KB
testcase_19 AC 93 ms
23,424 KB
testcase_20 AC 93 ms
23,628 KB
testcase_21 AC 91 ms
23,640 KB
testcase_22 AC 93 ms
24,348 KB
testcase_23 AC 93 ms
24,024 KB
testcase_24 AC 91 ms
23,376 KB
testcase_25 AC 95 ms
23,364 KB
testcase_26 AC 93 ms
23,424 KB
testcase_27 AC 92 ms
24,276 KB
testcase_28 AC 93 ms
24,024 KB
testcase_29 AC 94 ms
24,036 KB
testcase_30 AC 93 ms
23,412 KB
testcase_31 AC 87 ms
23,628 KB
testcase_32 AC 87 ms
23,652 KB
testcase_33 AC 92 ms
23,544 KB
testcase_34 AC 94 ms
23,628 KB
testcase_35 AC 90 ms
24,036 KB
testcase_36 AC 91 ms
24,036 KB
testcase_37 AC 93 ms
24,048 KB
testcase_38 AC 92 ms
23,400 KB
testcase_39 AC 92 ms
23,544 KB
testcase_40 AC 93 ms
24,036 KB
testcase_41 AC 93 ms
23,412 KB
testcase_42 AC 91 ms
24,036 KB
testcase_43 AC 93 ms
23,520 KB
testcase_44 AC 93 ms
23,640 KB
testcase_45 AC 93 ms
23,652 KB
testcase_46 AC 93 ms
24,264 KB
testcase_47 AC 93 ms
23,520 KB
testcase_48 AC 94 ms
23,832 KB
testcase_49 AC 93 ms
23,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int N, T;
int A[3009], B[3009], C[3009], D[3009];
int Build[1009];
int CountRoads = 0;
bool usedA[16][16];
bool usedB[16][16];

int main() {
	// Input
	cin >> N >> T;
	for (int i = 1; i <= N; i++) cin >> A[i] >> B[i] >> C[i] >> D[i];
	for (int i = 1; i <= 1000; i++) Build[i] = (int)(10000000.0 / sqrt(1.0 * i));

	// Interactive
	for (int i = 1; i <= T; i++) {
		int CurrentMoney;
		int CurrentCorp;
		cin >> CurrentMoney >> CurrentCorp;
		if (CurrentMoney == -1 && CurrentCorp == -1) break;
		cerr << CurrentMoney << " " << CurrentCorp << " " << CountRoads << endl;

		// 行動の設定
		if (i <= 30) {
			cout << "3" << endl;
		}
		else if (i > 280) {
			cout << "3" << endl;
		}
		else if (CurrentMoney < Build[CurrentCorp]) {
			cout << "2" << endl;
		}
		else {
			bool flag = false;
			for (int i = 0; i < 500; i++) {
				int ty = rand() % 2;
				int a1 = rand() % 14 + 1;
				int a2 = rand() % 14 + 1;
				if (ty == 0 && a2 == 14) continue;
				if (ty == 1 && a1 == 14) continue;
				if (ty == 0 && usedA[a1][a2] == true) continue;
				if (ty == 1 && usedB[a1][a2] == true) continue;
				if (ty == 0) {
					usedA[a1][a2] = true;
					cout << 1 << " " << a1 << " " << a2 << " " << a1 << " " << a2 + 1 << endl;
				}
				if (ty == 1) {
					usedB[a1][a2] = true;
					cout << 1 << " " << a1 << " " << a2 << " " << a1 + 1 << " " << a2 << endl;
				}
				flag = true;
				CountRoads += 1;
				break;
			}
			if (flag == false) {
				cout << "2" << endl;
			}
		}
	}
	return 0;
}
0