結果

問題 No.9 モンスターのレベル上げ
ユーザー ayame_pyayame_py
提出日時 2015-10-08 22:48:59
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 427 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:10:21
合計ジャッジ時間 35,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,812 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 3,529 ms
6,944 KB
testcase_03 AC 2,836 ms
6,944 KB
testcase_04 AC 1,473 ms
6,944 KB
testcase_05 AC 982 ms
6,940 KB
testcase_06 AC 346 ms
6,944 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 458 ms
6,944 KB
testcase_09 AC 3,403 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 3,253 ms
6,944 KB
testcase_12 TLE -
testcase_13 AC 3,278 ms
6,944 KB
testcase_14 AC 3,391 ms
6,940 KB
testcase_15 AC 3,119 ms
6,944 KB
testcase_16 AC 65 ms
6,944 KB
testcase_17 AC 2,004 ms
6,944 KB
testcase_18 AC 1,687 ms
6,944 KB
testcase_19 AC 44 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import heapq
N = int(raw_input())
A = map(int, raw_input().split())
B = [int(x)/2 for x in raw_input().split()]

A.sort()
Aheap = [(a, 0) for a in A]
B_ = list(B)
B.extend(B_)

ans = int(1e9+7)
for i in xrange(len(B_)):
	a = list(Aheap)
	for j in xrange(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