結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-22 19:18:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,353 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,296 KB
最終ジャッジ日時 2024-07-08 11:52:37
合計ジャッジ時間 20,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,353 ms
48,908 KB
testcase_01 AC 1,352 ms
48,828 KB
testcase_02 AC 1,348 ms
48,800 KB
testcase_03 AC 1,139 ms
49,044 KB
testcase_04 AC 1,181 ms
49,296 KB
testcase_05 AC 1,154 ms
49,052 KB
testcase_06 AC 1,244 ms
46,548 KB
testcase_07 AC 1,283 ms
47,516 KB
testcase_08 AC 1,101 ms
46,636 KB
testcase_09 AC 1,089 ms
47,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def read_data():
    N = int(input())
    Ls = list(map(int, input().split()))
    Q = int(input())
    Ks = list(map(int, input().split()))
    return N, Ls, Q, Ks

def solve(N, Ls, Q, Ks):
    Kmax = max(Ks)
    ws = [0] * (Kmax + 1)
    Ls.sort(reverse=True)
    hq = [(-L, 1, L) for L in Ls]
    for k in range(1, Kmax + 1):
        w, n, L = hq[0]
        ws[k] = - w
        heapq.heapreplace(hq, (- L / (n + 1), n + 1, L))
    return [ws[k] for k in Ks]

N, Ls, Q, Ks = read_data()
result = solve(N, Ls, Q, Ks)
for w in result:
    print(w)
0