結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2014-12-30 19:33:33
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,355 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 87,036 KB
最終ジャッジ日時 2024-06-23 22:08:48
合計ジャッジ時間 14,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,648 KB
testcase_01 AC 82 ms
75,396 KB
testcase_02 AC 1,355 ms
87,036 KB
testcase_03 AC 1,120 ms
85,000 KB
testcase_04 AC 613 ms
81,612 KB
testcase_05 AC 472 ms
80,460 KB
testcase_06 AC 275 ms
79,068 KB
testcase_07 AC 136 ms
78,736 KB
testcase_08 AC 309 ms
79,000 KB
testcase_09 AC 1,312 ms
86,580 KB
testcase_10 AC 81 ms
75,776 KB
testcase_11 AC 1,037 ms
85,824 KB
testcase_12 AC 1,185 ms
84,692 KB
testcase_13 AC 967 ms
85,728 KB
testcase_14 AC 1,104 ms
86,072 KB
testcase_15 AC 1,211 ms
86,088 KB
testcase_16 AC 163 ms
78,852 KB
testcase_17 AC 897 ms
82,756 KB
testcase_18 AC 657 ms
81,924 KB
testcase_19 AC 146 ms
79,104 KB
権限があれば一括ダウンロードができます

ソースコード

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