結果

問題 No.5016 Worst Mayor
ユーザー Kiri8128Kiri8128
提出日時 2023-04-29 14:41:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 1,655 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 87,264 KB
実行使用メモリ 94,452 KB
スコア 5,243,730,329
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 14:42:15
合計ジャッジ時間 15,637 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
94,144 KB
testcase_01 AC 229 ms
94,216 KB
testcase_02 AC 232 ms
93,716 KB
testcase_03 AC 232 ms
93,840 KB
testcase_04 AC 248 ms
93,968 KB
testcase_05 AC 254 ms
94,272 KB
testcase_06 AC 226 ms
93,532 KB
testcase_07 AC 228 ms
93,700 KB
testcase_08 AC 255 ms
93,376 KB
testcase_09 AC 233 ms
93,644 KB
testcase_10 AC 228 ms
94,076 KB
testcase_11 AC 229 ms
93,660 KB
testcase_12 AC 228 ms
94,088 KB
testcase_13 AC 245 ms
93,804 KB
testcase_14 AC 226 ms
93,600 KB
testcase_15 AC 228 ms
93,616 KB
testcase_16 AC 229 ms
93,748 KB
testcase_17 AC 246 ms
93,672 KB
testcase_18 AC 228 ms
94,208 KB
testcase_19 AC 235 ms
93,776 KB
testcase_20 AC 228 ms
94,196 KB
testcase_21 AC 232 ms
93,980 KB
testcase_22 AC 247 ms
93,584 KB
testcase_23 AC 233 ms
93,704 KB
testcase_24 AC 229 ms
94,028 KB
testcase_25 AC 230 ms
94,172 KB
testcase_26 AC 245 ms
94,160 KB
testcase_27 AC 228 ms
93,888 KB
testcase_28 AC 227 ms
94,008 KB
testcase_29 AC 230 ms
93,596 KB
testcase_30 AC 228 ms
94,340 KB
testcase_31 AC 248 ms
94,076 KB
testcase_32 AC 227 ms
93,252 KB
testcase_33 AC 230 ms
94,452 KB
testcase_34 AC 227 ms
93,712 KB
testcase_35 AC 227 ms
93,876 KB
testcase_36 AC 228 ms
93,720 KB
testcase_37 AC 227 ms
93,892 KB
testcase_38 AC 232 ms
94,176 KB
testcase_39 AC 228 ms
93,532 KB
testcase_40 AC 242 ms
93,564 KB
testcase_41 AC 230 ms
93,420 KB
testcase_42 AC 229 ms
93,888 KB
testcase_43 AC 227 ms
94,140 KB
testcase_44 AC 226 ms
94,268 KB
testcase_45 AC 245 ms
93,836 KB
testcase_46 AC 229 ms
94,032 KB
testcase_47 AC 227 ms
93,840 KB
testcase_48 AC 231 ms
94,336 KB
testcase_49 AC 246 ms
94,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc_cost():
    a = int(10 ** 7 / supporter ** 0.5 + 2)
    while supporter * a ** 2 > 10 ** 14:
        a -= 1
    return a
def execute(key, param = None):
    global supporter, money
    if key == 1:
        print(1, *param)
        money -= cost
    elif key == 2:
        print(2)
        supporter += 1
    elif key == 3:
        print(3)
        money += 50000
    else:
        assert 0, "Execute Key Error"
from random import randrange
DEBUG = 0
N, T = map(int, input().split())
supporter = 1
money = 10 ** 6
for _ in range(N):
    a, b, c, d = map(int, input().split())

M = 14
done = [[[0] * M for _ in range(M - 1)], [[0] * (M - 1) for _ in range(M)]]
priority = [(0, 6, 6), (1, 6, 6), (0, 6, 7)]
for q in range(T):
    u, v = map(int, input().split())
    cost = calc_cost()
    if DEBUG:
        print("cost =", cost, "u, v =", u, v)
    if u >= cost:
        if cost > (T - 1 - q) * 40000:
            execute(3)
            continue
        while 1:
            for t, i, j in priority:
                if done[t][i][j] == 0:
                    break
            else:
                t = randrange(2)
                if t == 0:
                    i = randrange(0, M - 1)
                    j = randrange(0, M - 0)
                else:
                    i = randrange(0, M - 0)
                    j = randrange(0, M - 1)
                if done[t][i][j] == 0:
                    break
                continue
            break
        done[t][i][j] = 1
        if t == 0:
            ni, nj = i + 1, j
        else:
            ni, nj = i, j + 1
        execute(1, (i + 1, j + 1, ni + 1, nj + 1))
    else:
        execute(2)
0