結果

問題 No.9 モンスターのレベル上げ
ユーザー ayame_pyayame_py
提出日時 2015-10-08 23:23:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,686 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-23 23:15:37
合計ジャッジ時間 33,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 3,290 ms
6,940 KB
testcase_03 AC 2,541 ms
6,940 KB
testcase_04 AC 1,369 ms
6,940 KB
testcase_05 AC 909 ms
6,940 KB
testcase_06 AC 320 ms
6,940 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 426 ms
6,944 KB
testcase_09 AC 3,152 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 3,035 ms
6,944 KB
testcase_12 AC 4,686 ms
6,944 KB
testcase_13 AC 3,057 ms
7,040 KB
testcase_14 AC 3,173 ms
6,940 KB
testcase_15 AC 2,901 ms
6,940 KB
testcase_16 AC 62 ms
6,944 KB
testcase_17 AC 1,876 ms
6,940 KB
testcase_18 AC 1,571 ms
6,940 KB
testcase_19 AC 40 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(raw_input())
A = map(int, raw_input().split())
B = [int(x)//2 for x in raw_input().split()] * 2
A.sort()
Aheap = [(a, 0) for a in A]

ans = N
for i in range(N):
	a = list(Aheap)
	ansc = 0
	for j in B[i:i+N]:
		lv, c = a[0]
		heapq.heapreplace(a, (lv+j, c+1))
	ansc=max(c for lv, c in a)
	if ans > ansc:
		ans = ansc

print ans
0