結果

問題 No.9 モンスターのレベル上げ
ユーザー nsd_fbnsd_fb
提出日時 2015-02-19 04:59:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,221 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 87,264 KB
最終ジャッジ日時 2024-06-23 22:31:36
合計ジャッジ時間 13,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
75,404 KB
testcase_01 AC 86 ms
75,816 KB
testcase_02 AC 1,216 ms
87,068 KB
testcase_03 AC 1,037 ms
84,700 KB
testcase_04 AC 687 ms
81,656 KB
testcase_05 AC 502 ms
80,628 KB
testcase_06 AC 321 ms
79,948 KB
testcase_07 AC 150 ms
78,908 KB
testcase_08 AC 337 ms
79,824 KB
testcase_09 AC 1,221 ms
86,896 KB
testcase_10 AC 82 ms
75,796 KB
testcase_11 AC 909 ms
83,572 KB
testcase_12 AC 1,067 ms
80,432 KB
testcase_13 AC 798 ms
83,208 KB
testcase_14 AC 1,203 ms
87,264 KB
testcase_15 AC 1,144 ms
86,388 KB
testcase_16 AC 181 ms
78,876 KB
testcase_17 AC 800 ms
83,148 KB
testcase_18 AC 721 ms
81,644 KB
testcase_19 AC 176 ms
78,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = input()
a = map(int, raw_input().split())
b = map(int, raw_input().split())

init = []
for level in a:
    init.append((level, 0))

heapq.heapify(init)
ans = float("inf")

for offset in xrange(-n, 0):
    queue = list(init)

    for i in xrange(offset, offset + n):
        level, battle = heapq.heappop(queue)
        heapq.heappush(queue, (level + b[i] // 2, battle + 1))

    max_battle = 0
    for level, battle in queue:
        max_battle = max(max_battle, battle)

    ans = min(ans, max_battle)

print ans
0