Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* --------------------
- | LOSER |
- | ~NOOBOSS~ |
- --------------------
- */
- #include <bits/stdc++.h>
- using namespace std;
- #define mxx LLONG_MAX
- #define mnn LLONG_MIN
- #define Y() cout<< "YES" <<endl
- #define N() cout << "NO"<<endl
- #define endl "\n"
- #define max_3(a,b,c) max(a, max(b,c))
- #define min_3(a,b,c) min(a, min(b,c))
- #define gcd(a,b) __gcd(a,b)
- #define lcm(a,b) (a*b)/gcd(a,b)
- #define loser return 0
- #define ll long long
- #define PI acos(-1)
- #define mem(a,v) memset(a,v,sizeof(a))
- #define SORT(v) sort(v.begin(),v.end())
- #define REV(v) reverse(v.begin(),v.end())
- #define B begin()
- #define E end()
- #define V vector
- #define F first
- #define S second
- #define PSB push_back
- #define MP make_pair
- #define flash cout.flush()
- #define InTheNameOfGod ios::sync_with_stdio(0);cin.tie(0); cout.tie(0);
- constexpr ll MOD = 998244353;
- constexpr ll mod = 1e9 + 7;
- int dx[] = {0,0,1,-1};
- int dy[] = {1,-1,0,0};
- /*-----*/
- #define bug1(a) cerr<<a<<endl;
- #define bug2(a,b) cerr<<a<<" "<<b<<endl;
- #define bug3(a,b,c) cerr<<a<<" "<<b<<" "<<c<<endl;
- /*----*/
- const ll N=2e5+5;
- vector<ll> adj[N];
- ll power(ll n,ll p){if(p==0) return 1;if(p==1)return n;if(p%2)return power(n,p-1)*n;else{ll x=power(n,p/2);return x*x;}}
- ll modpow(ll a,ll b,ll m){ll ans=1;while(b){if(b&1)ans=(ans*a)%m;b/=2;a=(a*a)%m;}return ans;}
- ll nsum(ll num){return (num*(num+1))/2;}
- void edge (ll u,ll v) {adj[u].PSB(v) ;adj[v].PSB(u);}
- /*------------------START---------------------*/
- ll Test,j;
- /*-----*/
- void solve(){
- ll n,k;
- string s;
- cin>>n>>k;
- V<ll> a(n);
- for(ll i=0;i<n;i++) cin>>a[i];
- SORT(a);
- ll l=1,r=a[n-1];
- ll ans=1;
- while(l<=r){
- ll mid=(l+r)/2;
- ll sum=0;
- for(ll i=0;i<n;i++){
- sum+=a[i]/mid;
- }
- if(sum>=k){
- ans=max(ans,mid);
- l=mid+1;
- }
- else r=mid-1;
- }
- //cout<<ans<<endl;
- cout<<"Case "<<j<<": "<<ans<<endl;
- }
- /*-----*/
- int main(){
- InTheNameOfGod
- cin>>Test;
- for(j=1;j<=Test;j++){
- solve();
- }
- loser;
- }
- /////// C O D I N G I S L I F E ///////
Advertisement
Add Comment
Please, Sign In to add comment