結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 3,497 ms
7,040 KB
testcase_03 AC 2,674 ms
6,940 KB
testcase_04 AC 1,435 ms
6,940 KB
testcase_05 AC 944 ms
6,944 KB
testcase_06 AC 338 ms
6,944 KB
testcase_07 AC 19 ms
6,940 KB
testcase_08 AC 445 ms
6,940 KB
testcase_09 AC 3,318 ms
7,040 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 3,190 ms
7,040 KB
testcase_12 AC 4,665 ms
6,940 KB
testcase_13 AC 3,221 ms
7,040 KB
testcase_14 AC 3,542 ms
6,940 KB
testcase_15 AC 3,044 ms
7,040 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 1,966 ms
6,944 KB
testcase_18 AC 1,641 ms
6,944 KB
testcase_19 AC 42 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import heapq
N = int(raw_input())
A = map(int, raw_input().split())
B = map(int, raw_input().split())

Aheap = []
for i in range(len(A)):
	heapq.heappush(Aheap, (A[i], 0))

B = [int(b)/2 for b in B]
B_ = list(B)
B.extend(B_)

ans = int(1e9+7)
for i in range(len(B_)):
	a = list(Aheap)
	for j in range(len(B_)):
		lv, c = a[0]
		#print str(lv) + ' ' + str(c)
		heapq.heapreplace(a, (lv+B[i+j], c+1))
		#print a
	ans=min(ans, max(c for lv, c in a))

print ans
0