結果

問題 No.5016 Worst Mayor
ユーザー e869120e869120
提出日時 2023-04-23 17:26:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,544 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 69,284 KB
実行使用メモリ 24,348 KB
スコア 8,347,014,353
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 12:30:22
合計ジャッジ時間 8,518 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
23,640 KB
testcase_01 AC 96 ms
24,048 KB
testcase_02 AC 95 ms
23,364 KB
testcase_03 AC 95 ms
24,024 KB
testcase_04 AC 95 ms
24,336 KB
testcase_05 AC 96 ms
23,520 KB
testcase_06 AC 96 ms
23,520 KB
testcase_07 AC 97 ms
24,024 KB
testcase_08 AC 98 ms
23,520 KB
testcase_09 AC 96 ms
24,036 KB
testcase_10 AC 95 ms
23,628 KB
testcase_11 AC 96 ms
23,376 KB
testcase_12 AC 96 ms
23,664 KB
testcase_13 AC 95 ms
23,628 KB
testcase_14 AC 96 ms
23,376 KB
testcase_15 AC 95 ms
24,348 KB
testcase_16 AC 96 ms
24,336 KB
testcase_17 AC 95 ms
23,364 KB
testcase_18 AC 95 ms
24,336 KB
testcase_19 AC 95 ms
24,336 KB
testcase_20 AC 96 ms
23,628 KB
testcase_21 AC 95 ms
24,336 KB
testcase_22 AC 95 ms
23,376 KB
testcase_23 AC 95 ms
24,348 KB
testcase_24 AC 96 ms
23,520 KB
testcase_25 AC 96 ms
23,532 KB
testcase_26 AC 95 ms
23,400 KB
testcase_27 AC 96 ms
23,580 KB
testcase_28 AC 96 ms
23,832 KB
testcase_29 AC 91 ms
23,520 KB
testcase_30 AC 96 ms
24,336 KB
testcase_31 AC 95 ms
23,400 KB
testcase_32 AC 96 ms
23,376 KB
testcase_33 AC 95 ms
23,376 KB
testcase_34 AC 96 ms
23,640 KB
testcase_35 AC 95 ms
24,336 KB
testcase_36 AC 96 ms
23,376 KB
testcase_37 AC 97 ms
24,324 KB
testcase_38 AC 96 ms
23,844 KB
testcase_39 AC 96 ms
23,652 KB
testcase_40 AC 97 ms
23,376 KB
testcase_41 AC 96 ms
23,820 KB
testcase_42 AC 96 ms
23,388 KB
testcase_43 AC 98 ms
23,808 KB
testcase_44 AC 96 ms
23,424 KB
testcase_45 AC 96 ms
23,532 KB
testcase_46 AC 96 ms
24,288 KB
testcase_47 AC 97 ms
23,388 KB
testcase_48 AC 95 ms
24,312 KB
testcase_49 AC 95 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[11][11];
bool usedB[11][11];

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 > 300) {
			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() % 10 + 1;
				int a2 = rand() % 10 + 1;
				if (ty == 0 && a2 == 10) continue;
				if (ty == 1 && a1 == 10) 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