結果

問題 No.9 モンスターのレベル上げ
ユーザー nsd_fbnsd_fb
提出日時 2015-02-19 04:56:48
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 531 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-23 21:19:31
合計ジャッジ時間 41,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,812 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 4,124 ms
7,040 KB
testcase_03 AC 3,191 ms
6,944 KB
testcase_04 AC 1,741 ms
6,940 KB
testcase_05 AC 1,177 ms
6,940 KB
testcase_06 AC 420 ms
6,944 KB
testcase_07 AC 19 ms
6,940 KB
testcase_08 AC 555 ms
6,940 KB
testcase_09 AC 3,989 ms
6,940 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 3,793 ms
7,040 KB
testcase_12 TLE -
testcase_13 AC 3,833 ms
6,944 KB
testcase_14 AC 4,003 ms
6,944 KB
testcase_15 AC 3,657 ms
6,944 KB
testcase_16 AC 77 ms
6,940 KB
testcase_17 AC 2,369 ms
6,944 KB
testcase_18 AC 1,969 ms
6,944 KB
testcase_19 AC 49 ms
6,940 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