結果

問題 No.9 モンスターのレベル上げ
ユーザー TawaraTawara
提出日時 2016-07-27 00:13:50
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 404 bytes
コンパイル時間 1,556 ms
コンパイル使用メモリ 76,312 KB
実行使用メモリ 205,780 KB
最終ジャッジ日時 2024-11-06 17:12:37
合計ジャッジ時間 35,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
76,940 KB
testcase_01 AC 88 ms
76,956 KB
testcase_02 AC 3,365 ms
202,204 KB
testcase_03 AC 2,599 ms
157,400 KB
testcase_04 AC 1,480 ms
113,740 KB
testcase_05 AC 1,054 ms
97,796 KB
testcase_06 AC 517 ms
85,012 KB
testcase_07 AC 152 ms
80,264 KB
testcase_08 AC 612 ms
87,472 KB
testcase_09 AC 3,276 ms
198,892 KB
testcase_10 RE -
testcase_11 AC 3,124 ms
205,780 KB
testcase_12 WA -
testcase_13 AC 2,546 ms
141,528 KB
testcase_14 AC 3,232 ms
199,004 KB
testcase_15 AC 2,981 ms
186,164 KB
testcase_16 AC 225 ms
81,108 KB
testcase_17 AC 1,951 ms
132,828 KB
testcase_18 AC 1,696 ms
121,964 KB
testcase_19 AC 198 ms
80,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hpq
from copy import deepcopy as dcp
def solve():
	Q = []
	ans = N = int(raw_input())
	Q = [(a,0) for a in map(int,raw_input().split())]
	hpq.heapify(Q)
	B = map(int,raw_input().split())
	for i in xrange(N):
		q = dcp(Q)
		lv,cnt = hpq.heappop(q)
		for j in xrange(N):
			lv,cnt = hpq.heapreplace(q,(lv+B[(j+i)%N]/2,cnt+1))
		ans = min(ans,max(q,key=lambda x:x[1])[1])
	print ans 
solve()
0