3478. Choose K Elements With Maximum Sum
You are given two integer arrays,
nums1
andnums2
, both of lengthn
, along with a positive integerk
.For each index
i
from0
ton - 1
, perform the following:
- Find all indices
j
wherenums1[j]
is less thannums1[i]
.- Choose at most
k
values ofnums2[j]
at these indices to maximize the total sum.Return an array
answer
of sizen
, whereanswer[i]
represents the result for the corresponding indexi
.
c++
1 |
|