結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2014-11-05 21:35:32
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 414 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-09 19:10:38
合計ジャッジ時間 44,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,820 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 4,455 ms
7,168 KB
testcase_03 AC 3,502 ms
7,168 KB
testcase_04 AC 1,876 ms
7,040 KB
testcase_05 AC 1,262 ms
6,944 KB
testcase_06 AC 442 ms
6,940 KB
testcase_07 AC 21 ms
6,944 KB
testcase_08 AC 591 ms
6,944 KB
testcase_09 AC 4,321 ms
7,168 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 4,138 ms
7,296 KB
testcase_12 TLE -
testcase_13 AC 4,120 ms
7,168 KB
testcase_14 AC 4,301 ms
7,168 KB
testcase_15 AC 4,002 ms
7,168 KB
testcase_16 AC 83 ms
6,944 KB
testcase_17 AC 2,552 ms
7,168 KB
testcase_18 AC 2,159 ms
7,040 KB
testcase_19 AC 54 ms
6,940 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