-
Notifications
You must be signed in to change notification settings - Fork 0
/
2019C.cpp
67 lines (49 loc) · 1.25 KB
/
2019C.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// coded by Cocane
#include<bits/stdc++.h>
#define ll long long
#define forn(i, n) for(int i = 0; i < n; i++)
#define for1(i, n) for(int i = 1; i <= n; i++)
#define foru(i, n) for(int i = n-1; i >= 0; i--)
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
#define allp(x) (x).begin(), (x).begin() + (x).size()/2, (x).rbegin()
#define pb push_back
#define out(ans) cout<<ans<<endl
#define yn(a) cout<< (a ? "YES": "NO") <<endl
using namespace std;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef double dl;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--){
ll n,k;
cin>>n>>k;
vll v(n);
for(auto &it : v) cin>>it;
ll total_cards = accumulate(all(v),0LL);
ll mx = *max_element(all(v));
// the no. of decks will be the max frequency of any no.
// sum of all the frequency of all the no. then + k coins
// then the max size of the deck will be -> sum / mx;
ll total_max_cards = total_cards + k;
ll m = n;
int flag = 0;
while (m > 1)
{
ll x = total_max_cards / m;
if(x * m >= total_cards && x >= mx){
cout<<m<<endl;
flag = 1;
break;
}
m--;
}
if(flag == 0) cout<<1<<endl;
}
return 0;
}