結果

問題 No.5016 Worst Mayor
ユーザー Kiri8128Kiri8128
提出日時 2023-04-29 16:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 4,757 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 87,384 KB
実行使用メモリ 94,540 KB
スコア 22,800,418,642
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 16:29:11
合計ジャッジ時間 16,326 ms
ジャッジサーバーID
(参考情報)
judge16 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
94,036 KB
testcase_01 AC 235 ms
94,452 KB
testcase_02 AC 232 ms
93,896 KB
testcase_03 AC 237 ms
94,100 KB
testcase_04 AC 236 ms
94,348 KB
testcase_05 AC 232 ms
94,076 KB
testcase_06 AC 229 ms
93,860 KB
testcase_07 AC 237 ms
94,252 KB
testcase_08 AC 233 ms
94,200 KB
testcase_09 AC 234 ms
94,040 KB
testcase_10 AC 230 ms
94,296 KB
testcase_11 AC 232 ms
94,260 KB
testcase_12 AC 242 ms
94,504 KB
testcase_13 AC 234 ms
94,096 KB
testcase_14 AC 235 ms
94,520 KB
testcase_15 AC 231 ms
94,096 KB
testcase_16 AC 240 ms
94,236 KB
testcase_17 AC 239 ms
93,928 KB
testcase_18 AC 235 ms
93,636 KB
testcase_19 AC 229 ms
93,832 KB
testcase_20 AC 239 ms
94,136 KB
testcase_21 AC 254 ms
93,892 KB
testcase_22 AC 240 ms
94,184 KB
testcase_23 AC 235 ms
93,876 KB
testcase_24 AC 230 ms
94,288 KB
testcase_25 AC 233 ms
94,036 KB
testcase_26 AC 238 ms
93,808 KB
testcase_27 AC 235 ms
94,268 KB
testcase_28 AC 230 ms
94,060 KB
testcase_29 AC 235 ms
94,176 KB
testcase_30 AC 247 ms
94,100 KB
testcase_31 AC 230 ms
94,468 KB
testcase_32 AC 231 ms
94,208 KB
testcase_33 AC 229 ms
94,288 KB
testcase_34 AC 236 ms
93,792 KB
testcase_35 AC 229 ms
94,316 KB
testcase_36 AC 237 ms
94,304 KB
testcase_37 AC 228 ms
93,808 KB
testcase_38 AC 232 ms
93,996 KB
testcase_39 AC 238 ms
94,028 KB
testcase_40 AC 239 ms
94,308 KB
testcase_41 AC 230 ms
94,012 KB
testcase_42 AC 228 ms
94,200 KB
testcase_43 AC 237 ms
94,540 KB
testcase_44 AC 229 ms
93,652 KB
testcase_45 AC 227 ms
94,228 KB
testcase_46 AC 236 ms
93,824 KB
testcase_47 AC 230 ms
93,660 KB
testcase_48 AC 241 ms
94,300 KB
testcase_49 AC 231 ms
94,356 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)]
# priority = [(0, 6, 0), (1, 6, 0), (0, 6, 1), (1, 7, 1), (0, 6, 2), (1, 6, 2), (0, 6, 3), (1, 7, 3), (0, 6, 4), (1, 6, 4), (0, 6, 5), (1, 7, 5), (0, 6, 6), (1, 6, 6), (0, 6, 7), (1, 7, 7), (0, 6, 8), (1, 6, 8), (0, 6, 9), (1, 7, 9), (0, 6, 10), (1, 6, 10), (0, 6, 11), (1, 7, 11), (0, 6, 12), (1, 6, 12), (0, 6, 13), (0, 0, 0), (1, 0, 0), (0, 0, 1), (1, 1, 1), (0, 0, 2), (1, 0, 2), (0, 0, 3), (1, 1, 3), (0, 0, 4), (1, 0, 4), (0, 0, 5), (1, 1, 5), (0, 0, 6), (1, 0, 6), (0, 0, 7), (1, 1, 7), (0, 0, 8), (1, 0, 8), (0, 0, 9), (1, 1, 9), (0, 0, 10), (1, 0, 10), (0, 0, 11), (1, 1, 11), (0, 0, 12), (1, 0, 12), (0, 0, 13), (0, 12, 0), (1, 12, 0), (0, 12, 1), (1, 13, 1), (0, 12, 2), (1, 12, 2), (0, 12, 3), (1, 13, 3), (0, 12, 4), (1, 12, 4), (0, 12, 5), (1, 13, 5), (0, 12, 6), (1, 12, 6), (0, 12, 7), (1, 13, 7), (0, 12, 8), (1, 12, 8), (0, 12, 9), (1, 13, 9), (0, 12, 10), (1, 12, 10), (0, 12, 11), (1, 13, 11), (0, 12, 12), (1, 12, 12), (0, 12, 13), (0, 1, 7), (1, 2, 6), (0, 2, 6), (1, 3, 6), (0, 3, 7), (1, 4, 6), (0, 4, 6), (1, 5, 6), (0, 5, 7), (0, 7, 6), (1, 8, 6), (0, 8, 7), (1, 9, 6), (0, 9, 6), (1, 10, 6), (0, 10, 7), (1, 11, 6), (0, 11, 6), (0, 1, 1), (1, 2, 0), (0, 2, 0), (1, 3, 0), (0, 3, 1), (1, 4, 0), (0, 4, 0), (1, 5, 0), (0, 5, 1), (0, 7, 0), (1, 8, 0), (0, 8, 1), (1, 9, 0), (0, 9, 0), (1, 10, 0), (0, 10, 1), (1, 11, 0), (0, 11, 0), (0, 1, 13), (1, 2, 12), (0, 2, 12), (1, 3, 12), (0, 3, 13), (1, 4, 12), (0, 4, 12), (1, 5, 12), (0, 5, 13), (0, 7, 12), (1, 8, 12), (0, 8, 13), (1, 9, 12), (0, 9, 12), (1, 10, 12), (0, 10, 13), (1, 11, 12), (0, 11, 12)][::-1]
priority = [(0, 6, 6), (1, 7, 5), (0, 6, 5), (1, 6, 4), (0, 6, 4), (1, 7, 3), (0, 6, 3), (1, 6, 2), (0, 6, 2), (1, 7, 1), (0, 6, 1), (1, 6, 0), (0, 6, 0), (1, 6, 6), (0, 6, 7), (1, 7, 7), (0, 6, 8), (1, 6, 8), (0, 6, 9), (1, 7, 9), (0, 6, 10), (1, 6, 10), (0, 6, 11), (1, 7, 11), (0, 6, 12), (1, 6, 12), (0, 6, 13), (0, 0, 6), (1, 1, 5), (0, 0, 5), (1, 0, 4), (0, 0, 4), (1, 1, 3), (0, 0, 3), (1, 0, 2), (0, 0, 2), (1, 1, 1), (0, 0, 1), (1, 0, 0), (0, 0, 0), (1, 0, 6), (0, 0, 7), (1, 1, 7), (0, 0, 8), (1, 0, 8), (0, 0, 9), (1, 1, 9), (0, 0, 10), (1, 0, 10), (0, 0, 11), (1, 1, 11), (0, 0, 12), (1, 0, 12), (0, 0, 13), (0, 12, 6), (1, 12, 5), (0, 12, 5), (1, 13, 4), (0, 12, 4), (1, 12, 3), (0, 12, 3), (1, 13, 2), (0, 12, 2), (1, 12, 1), (0, 12, 1), (1, 13, 0), (0, 12, 0), (1, 13, 6), (0, 12, 7), (1, 12, 7), (0, 12, 8), (1, 13, 8), (0, 12, 9), (1, 12, 9), (0, 12, 10), (1, 13, 10), (0, 12, 11), (1, 12, 11), (0, 12, 12), (1, 13, 12), (0, 12, 13), (0, 5, 7), (1, 5, 6), (0, 4, 6), (1, 4, 6), (0, 3, 7), (1, 3, 6), (0, 2, 6), (1, 2, 6), (0, 1, 7), (0, 7, 6), (1, 8, 6), (0, 8, 7), (1, 9, 6), (0, 9, 6), (1, 10, 6), (0, 10, 7), (1, 11, 6), (0, 11, 6), (0, 5, 1), (1, 5, 0), (0, 4, 0), (1, 4, 0), (0, 3, 1), (1, 3, 0), (0, 2, 0), (1, 2, 0), (0, 1, 1), (0, 7, 0), (1, 8, 0), (0, 8, 1), (1, 9, 0), (0, 9, 0), (1, 10, 0), (0, 10, 1), (1, 11, 0), (0, 11, 0), (0, 5, 13), (1, 5, 12), (0, 4, 12), (1, 4, 12), (0, 3, 13), (1, 3, 12), (0, 2, 12), (1, 2, 12), (0, 1, 13), (0, 7, 12), (1, 8, 12), (0, 8, 13), (1, 9, 12), (0, 9, 12), (1, 10, 12), (0, 10, 13), (1, 11, 12), (0, 11, 12)][::-1]
for q in range(T):
    u, v = map(int, input().split())
    cost = calc_cost()
    if DEBUG:
        print("-" * 5, "q =", q, "-" * 5)
        print("cost =", cost, "u, v =", u, v)
    if q < 20:
        execute(3)
        continue
    if u >= cost:
        if cost > (T - 1 - q) * 40000:
            execute(3)
            continue
        if priority:
            t, i, j = priority.pop()
            if not 0 <= t < 2:
                assert 0, t
            if not 0 <= i < len(done[t]):
                assert 0, (done[t], i)
            if not 0 <= j < len(done[t][i]):
                assert 0, (done[t][i], j)
            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(3)
    else:
        execute(2)
0