結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー shotoyooshotoyoo
提出日時 2021-07-06 21:25:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,378 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-07-01 12:14:34
合計ジャッジ時間 22,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,357 ms
118,144 KB
testcase_01 AC 1,314 ms
118,400 KB
testcase_02 AC 1,335 ms
118,656 KB
testcase_03 AC 1,350 ms
128,232 KB
testcase_04 AC 1,378 ms
129,152 KB
testcase_05 AC 1,334 ms
128,896 KB
testcase_06 AC 1,247 ms
109,824 KB
testcase_07 AC 1,262 ms
111,616 KB
testcase_08 AC 1,255 ms
118,732 KB
testcase_09 AC 1,322 ms
119,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
l = list(map(int, input().split()))
q = int(input())
k = list(map(int, input().split()))
from heapq import heappop as hpp, heappush as hp, heapify
h = []
for i in range(n):
    h.append((-l[i], 1))
heapify(h)
index = list(range(q))
ans = [-1]*q
index.sort(key=lambda i: k[i])
v = 0
for j in range(q):
    to = k[index[j]]
    while v<to:
        val,i = hpp(h)
        hp(h, (val*i/(i+1), i+1))
        v += 1
    ans[index[j]] = -val
write("\n".join(map(str, ans)))
0