結果

問題 No.9 モンスターのレベル上げ
ユーザー tnodinotnodino
提出日時 2022-05-26 18:13:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,131 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,332 KB
最終ジャッジ日時 2024-09-20 15:04:18
合計ジャッジ時間 20,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 1,870 ms
94,420 KB
testcase_03 AC 1,597 ms
90,592 KB
testcase_04 AC 941 ms
82,476 KB
testcase_05 AC 678 ms
80,476 KB
testcase_06 AC 361 ms
78,152 KB
testcase_07 AC 122 ms
77,568 KB
testcase_08 AC 396 ms
79,252 KB
testcase_09 AC 1,815 ms
94,244 KB
testcase_10 AC 41 ms
53,504 KB
testcase_11 AC 1,615 ms
94,332 KB
testcase_12 AC 2,131 ms
86,800 KB
testcase_13 AC 1,671 ms
96,332 KB
testcase_14 AC 1,931 ms
94,684 KB
testcase_15 AC 1,751 ms
92,860 KB
testcase_16 AC 175 ms
77,440 KB
testcase_17 AC 1,187 ms
85,660 KB
testcase_18 AC 1,018 ms
83,768 KB
testcase_19 AC 141 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
from heapq import heappop,heappush
def f(x):
    heap = deepcopy(H)
    ret = 0
    for i in range(N):
        level,cnt = heappop(heap)
        level += B[(x+i)%N]
        cnt += 1
        ret = max(ret, cnt)
        heappush(heap, (level, cnt))
    return ret

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
H = []
for i in range(N):
    heappush(H, (A[i], 0))
    B[i] //= 2
ans = 1<<32
for i in range(N):
    ans = min(ans, f(i))
print(ans)
0