結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2014-11-05 21:35:32
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 414 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-12-30 17:48:55
合計ジャッジ時間 49,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
12,032 KB
testcase_01 AC 14 ms
6,656 KB
testcase_02 AC 4,885 ms
7,040 KB
testcase_03 AC 3,805 ms
7,168 KB
testcase_04 AC 2,031 ms
6,912 KB
testcase_05 AC 1,371 ms
7,040 KB
testcase_06 AC 484 ms
6,784 KB
testcase_07 AC 23 ms
6,784 KB
testcase_08 AC 645 ms
6,784 KB
testcase_09 AC 4,702 ms
7,168 KB
testcase_10 AC 15 ms
6,784 KB
testcase_11 AC 4,530 ms
7,296 KB
testcase_12 TLE -
testcase_13 AC 4,497 ms
7,040 KB
testcase_14 AC 4,770 ms
7,040 KB
testcase_15 AC 4,353 ms
7,040 KB
testcase_16 AC 89 ms
6,784 KB
testcase_17 AC 2,778 ms
7,040 KB
testcase_18 AC 2,339 ms
7,040 KB
testcase_19 AC 58 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import deque

n=input()
a=map(int,raw_input().split())+[1e9]
b=deque(map(int,raw_input().split()))

max_list=[]

for _ in range(n):
    pq=[(j,0) for j in a]
    heapq.heapify(pq)
    for elevel in b:
        level,cnt=heapq.heappop(pq)
        heapq.heappush(pq,(level+elevel/2,cnt+1))
    max_list.append(max([y for x,y in pq]))
    b.rotate()

print min(max_list)
0