Can somebody give some hints? problem name : students council ( from cf edu section)
Regards.
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | adamant | 151 |
7 | djm03178 | 151 |
7 | luogu_official | 151 |
10 | awoo | 146 |
Can somebody give some hints? problem name : students council ( from cf edu section)
Regards.
Name |
---|
*In this problem we need to maximize the number of councils we need to search for that maximum value of x that satifies the given condition.
*In the worst case the total councils may be 0 and in the best case total councils may be (sum of students/k), so we need to search the maximum value between these two numbers.
*the trend its shows will be T,T,T,F,F,F.. we need to find the last true. so I applied binary search and it got accepted.
//sorry for my bad english
how are you checking if x councils are possible or not
To check if it is possible to create x councils, each consists of k students. lets take all possible students from each group I can take maximum of x students at the end if I get >= (x*k) students then x councils can be created.
bool is(int x,vector &arr,int k) { int sum=0; //to track of maximum students I can take to create x councils
for(int i=0;i<arr.size();i++) { sum+=min(x,arr[i]);//I can take maximum of x students from each group }
if(sum>=(x*k)) return true;
else return false; }
thank you bro
thanks bro
You can note that if you can form K > 1 councils, then you can form K — 1. So binary search will help.
possible(m) tell us if is possible to form at least m councils.
To construct possible(m) here is a hint:
sort groups by size, then find out if you can apply a greedy algorithm.