結果

問題 No.9 モンスターのレベル上げ
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 17:22:38
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-06-23 16:28:11
合計ジャッジ時間 26,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 TLE -
testcase_03 AC 4,028 ms
6,940 KB
testcase_04 AC 2,165 ms
6,940 KB
testcase_05 AC 1,450 ms
6,940 KB
testcase_06 AC 517 ms
6,944 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 688 ms
6,944 KB
testcase_09 TLE -
testcase_10 AC 13 ms
6,940 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop
N=int(raw_input())
A=map(int, raw_input().split())
B=map(int, raw_input().split())

ans = N
for i in range (N):
   pq=[]
   curAns = 0
   for a in A:
      heappush(pq,(a,0))
   for j in range(N):
      ind=(i+j)%N
      level,num=heappop(pq)
      heappush(pq,(level+B[ind]/2,num+1))
      curAns = max(curAns,num+1)
   ans = min(ans,curAns)
print ans
0