結果

問題 No.9 モンスターのレベル上げ
ユーザー lloyzlloyz
提出日時 2023-09-28 03:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 910 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,928 KB
最終ジャッジ日時 2024-07-20 21:42:08
合計ジャッジ時間 9,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 907 ms
84,928 KB
testcase_03 AC 759 ms
83,280 KB
testcase_04 AC 460 ms
79,260 KB
testcase_05 AC 327 ms
78,368 KB
testcase_06 AC 203 ms
76,896 KB
testcase_07 AC 93 ms
76,544 KB
testcase_08 AC 221 ms
77,320 KB
testcase_09 AC 910 ms
84,544 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 688 ms
81,504 KB
testcase_12 AC 641 ms
78,252 KB
testcase_13 AC 622 ms
81,044 KB
testcase_14 AC 892 ms
84,636 KB
testcase_15 AC 850 ms
84,288 KB
testcase_16 AC 137 ms
76,476 KB
testcase_17 AC 580 ms
80,660 KB
testcase_18 AC 531 ms
79,660 KB
testcase_19 AC 116 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
import sys
input = sys.stdin.readline

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

H = []
for i in range(n):
    H.append((A[i], 0))
heapify(H)
ans = 10**18
for i in range(n):
    Hc = H[:]
    for j in range(n):
        ii = (i + j) % n
        cl, cc = heappop(Hc)
        cc += 1
        cl += B[ii] // 2
        heappush(Hc, (cl, cc))
    res = 0
    for j in range(n):
        cc = Hc[j][1]
        res = max(res, cc)
    ans = min(ans, res)
print(ans)
0