結果

問題 No.9 モンスターのレベル上げ
ユーザー nisizawanisizawa
提出日時 2017-12-19 11:50:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 465 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-24 00:20:27
合計ジャッジ時間 43,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 4,585 ms
11,136 KB
testcase_03 AC 3,340 ms
11,008 KB
testcase_04 AC 1,798 ms
11,008 KB
testcase_05 AC 1,224 ms
11,136 KB
testcase_06 AC 439 ms
10,880 KB
testcase_07 AC 38 ms
10,752 KB
testcase_08 AC 587 ms
10,880 KB
testcase_09 AC 4,159 ms
11,136 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 4,037 ms
11,136 KB
testcase_12 TLE -
testcase_13 AC 3,906 ms
11,008 KB
testcase_14 AC 4,081 ms
11,136 KB
testcase_15 AC 3,776 ms
11,136 KB
testcase_16 AC 97 ms
10,752 KB
testcase_17 AC 2,419 ms
11,008 KB
testcase_18 AC 2,070 ms
11,136 KB
testcase_19 AC 70 ms
10,752 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()]

ct_max_min = float('inf')
for i in range(n):
    hq = [(a, 0) for a in a_ls]
    heapq.heapify(hq)
    
    ct_max = 0
    for j in range(n):
        lv, ct = hq[0]
        lv += b_ls[(i + j) % n] // 2
        ct += 1
        heapq.heapreplace(hq, (lv, ct))
        ct_max = max(ct, ct_max)

    ct_max_min = min(ct_max_min, ct_max)

print(ct_max_min)
0