結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururu
提出日時 2014-12-30 19:42:47
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,809 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-23 22:11:33
合計ジャッジ時間 34,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n=input()
a=map(int,raw_input().split())+[1e9]
heapq.heapify(a)
a=[(i,0) for i in a]
b=[int(i)/2 for i in raw_input().split()]

def check(i):
    pq=a[:]
    for elevel in b[i:]+b[:i]:
        level,cnt=heapq.heappop(pq)
        heapq.heappush(pq,(level+elevel,cnt+1))
    return max(y for x,y in pq)

print(min(check(i) for i in range(n)))
0