結果

問題 No.9 モンスターのレベル上げ
ユーザー HydruHydru
提出日時 2023-01-16 14:13:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,146 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,120 KB
最終ジャッジ日時 2024-06-09 20:36:03
合計ジャッジ時間 11,859 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,992 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 1,146 ms
91,712 KB
testcase_03 AC 929 ms
87,460 KB
testcase_04 AC 581 ms
81,588 KB
testcase_05 AC 422 ms
79,848 KB
testcase_06 AC 245 ms
77,748 KB
testcase_07 AC 97 ms
76,488 KB
testcase_08 AC 279 ms
78,204 KB
testcase_09 AC 1,130 ms
92,120 KB
testcase_10 AC 34 ms
52,208 KB
testcase_11 AC 818 ms
87,008 KB
testcase_12 AC 740 ms
85,716 KB
testcase_13 AC 762 ms
85,908 KB
testcase_14 AC 1,116 ms
91,944 KB
testcase_15 AC 1,029 ms
89,988 KB
testcase_16 AC 134 ms
76,960 KB
testcase_17 AC 721 ms
83,776 KB
testcase_18 AC 662 ms
81,720 KB
testcase_19 AC 115 ms
76,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from heapq import heapify,heappop,heappush

inf=float("inf")
ans=inf
for i in range(n):
    Q=[(A[j],0) for j in range(n)]
    heapify(Q)
    max_cnt=0
    for j in range(n):
        a,c=heappop(Q)
        max_cnt=max(max_cnt,c+1)
        heappush(Q,(a+B[(i+j)%n]//2,c+1))
    ans=min(ans,max_cnt)

print(ans)
0