結果

問題 No.9 モンスターのレベル上げ
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-07 00:08:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,949 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-23 22:47:04
合計ジャッジ時間 22,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 2,154 ms
11,136 KB
testcase_03 AC 1,677 ms
11,136 KB
testcase_04 AC 901 ms
11,008 KB
testcase_05 AC 608 ms
11,008 KB
testcase_06 AC 229 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 299 ms
11,008 KB
testcase_09 AC 2,075 ms
11,136 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 1,928 ms
11,136 KB
testcase_12 AC 2,949 ms
11,008 KB
testcase_13 AC 1,890 ms
11,264 KB
testcase_14 AC 2,079 ms
11,136 KB
testcase_15 AC 1,898 ms
11,136 KB
testcase_16 AC 61 ms
10,752 KB
testcase_17 AC 1,239 ms
11,136 KB
testcase_18 AC 1,037 ms
11,008 KB
testcase_19 AC 49 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

def solve(N, A, B):
    record = N
    BB = B + B
    pq0 = [(a, 0) for a in A]
    heapq.heapify(pq0)
    for i in range(N):
        pq = pq0[:]
        for b in BB[i:i + N]:
            a, n = pq[0]
            heapq.heapreplace(pq, (a + b//2, n + 1))
        max_n = max(n for a, n in pq)
        if max_n < record:
            record = max_n
    return record

print(solve(N, A, B))
0