この問題は値段のリスト の累積和をまとめたリストを二分探索することで解くことができます。
数列のソートに , 累積和を求めるのに , クエリ処理に
よって今回の制約に間に合わせることができます。
xxxxxxxxxx
from bisect import *
N, M, Q = map(int, input().split())
A = int(input())
C = sorted([*map(int, input().split())])
sc = [0]
for i in range(N):
sc.append(sc[-1] + C[i])
for _ in range(Q):
X = int(input())
n = bisect_right(sc, X + A) - 1
if n >= M:
print(n)
else:
print(bisect_right(sc, X) - 1)