This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "ricehub.h"
#define sz(s) (int)s.size()
using namespace std;
#define ll long long
int besthub(int n, int l, int a[], ll b){
vector <ll> v;
ll ans = 0;
for(int i = 0; i < n; i++){
v.clear();
ll b1 = b, x = 0;
for(int j = 0; j < n; j++){
if(a[i] != a[j]){
v.push_back(abs(a[i]-a[j]));
}
else x++;
}
if(sz(v) > 0){
sort(v.begin(),v.end());
for(auto j : v){
if(j > b1) break;
b1 -= j;
x++;
}
}
ans = max(ans,x);
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |