An array of size N is given and a value K. You have to find the minimum subset size so that subset sum is exactly equal to K, if not print -1. 0 < K, a[i], N < 10^6.
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
An array of size N is given and a value K. You have to find the minimum subset size so that subset sum is exactly equal to K, if not print -1. 0 < K, a[i], N < 10^6.
Название |
---|
Isn't this the famous coin change problem? You can easily find the solution online.
Sorry, can you explain how?
In problem which mentioned in post constraints for $$$N, K, a_i$$$ to high for stupid knapsack.
Other solution with sqrt opt works $$$O(n * log(max(a_i)) * sqrt(K))$$$, thats too much.
This problem came in Colortoken placement exam. Can you please tell me how can it be solved?
Can you say the time limit, and you sure that constraint is 10^6?
![ ]()
The sample output were: 2 and -1
Are you sure that they ask about finding subset?You tried submit solution for subsegment?
I think so too. Since the output for the second case is -1 they are probably asking for a subsegment (even if that is not clear in the statement). This could be solved in O(n) by using two pointers as well, which explains the constraints.
nice statement awesome task
Could you elaborate on this sqrt optmization (or provide links)? Depending on what it is maybe the solution is using it with bitset
Or can't we do fft here? Binary search on no of boxes. Complexity will be $$$O(N*logN*log(max a_i))$$$
How do you check that you can collect this amount or not by FFT with fixed amount of items?
I mean Like we do "Fast subset transform" in a similar way if possible lets say $$$s$$$ will be the smallest size of some subset such that it's sum is $$$K$$$. then polynomial raise to power $$$s$$$ will contains non-zero coefficient for $$$x^K$$$ term right.
I encountered a similar problem recently, can someone suggest some solution:
Given an array A of size N, find the number of subsets of size exactly K that add up to S.
e.g:
explanation (0 based indexing)
I don't remember the constraints, but let's say 1 <= N,S <= 1000
and would it really be possible to solve under normal time-limits i.e. 1 or 2 sec if N,S were 10^5?
I dont know anything better than $$$O(NS)$$$. You can submit it here https://www.geeksforgeeks.org/count-of-subsets-with-sum-equal-to-x/
you missed out on the point Subsets of length exactly K with sum S. The link only talks about subsets with sum S which is quite a standard problem.
So you got the answer? if yes can you please share.