結果

問題 No.9 モンスターのレベル上げ
ユーザー nisizawanisizawa
提出日時 2017-12-19 13:45:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,212 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-24 00:23:45
合計ジャッジ時間 25,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 2,495 ms
11,136 KB
testcase_03 AC 1,907 ms
11,136 KB
testcase_04 AC 1,025 ms
11,136 KB
testcase_05 AC 698 ms
11,136 KB
testcase_06 AC 260 ms
10,880 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 331 ms
10,880 KB
testcase_09 AC 2,357 ms
11,264 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 2,257 ms
11,264 KB
testcase_12 AC 3,212 ms
11,008 KB
testcase_13 AC 2,246 ms
11,264 KB
testcase_14 AC 2,393 ms
11,264 KB
testcase_15 AC 2,182 ms
11,264 KB
testcase_16 AC 69 ms
10,752 KB
testcase_17 AC 1,395 ms
11,264 KB
testcase_18 AC 1,162 ms
11,008 KB
testcase_19 AC 53 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())
a_ls = [int(a) for a in input().split()]
b_ls = [int(b) for b in input().split()]

hq_o = [(a, 0) for a in a_ls]
heapq.heapify(hq_o)

hb_ls = [b // 2 for b in b_ls]
hdb_ls = hb_ls + hb_ls

ans = n
for i in range(n):
    hq = hq_o[:]
    
    for hb in hdb_ls[i:i + n]:
        lv, ct = hq[0]
        heapq.heapreplace(hq, (lv + hb, ct + 1))
    
    ans = min(ans, max([ct for lv, ct in hq]))

print(ans)
0