結果

問題 No.9 モンスターのレベル上げ
ユーザー HydruHydru
提出日時 2023-01-16 14:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,102 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 126,380 KB
最終ジャッジ日時 2024-06-09 20:29:56
合計ジャッジ時間 32,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 3,165 ms
125,208 KB
testcase_03 AC 2,463 ms
109,676 KB
testcase_04 AC 1,335 ms
90,112 KB
testcase_05 AC 947 ms
84,712 KB
testcase_06 AC 388 ms
78,400 KB
testcase_07 AC 92 ms
76,752 KB
testcase_08 AC 484 ms
79,244 KB
testcase_09 AC 3,066 ms
122,656 KB
testcase_10 AC 33 ms
52,352 KB
testcase_11 AC 2,770 ms
118,524 KB
testcase_12 AC 4,102 ms
110,168 KB
testcase_13 AC 3,390 ms
126,380 KB
testcase_14 AC 3,004 ms
124,420 KB
testcase_15 AC 2,754 ms
118,588 KB
testcase_16 AC 137 ms
76,592 KB
testcase_17 AC 1,868 ms
98,096 KB
testcase_18 AC 1,530 ms
93,196 KB
testcase_19 AC 117 ms
76,548 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,j) for j in range(n)]
    heapify(Q)
    cnt=[0 for _ in range(n)]
    for j in range(n):
        a,c,ind=heappop(Q)
        lv=B[(i+j)%n]//2
        cnt[ind]+=1
        heappush(Q,(a+lv,c+1,ind))
    ans=min(ans,max(cnt))

print(ans)
0