#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
#define ar array
#define pb push_back
#define ln '\n'
#define int long long
using i64 = long long;
template <class F, class _S>
bool chmin(F &u, const _S &v){
bool flag = false;
if ( u > v ){
u = v; flag |= true;
}
return flag;
}
template <class F, class _S>
bool chmax(F &u, const _S &v){
bool flag = false;
if ( u < v ){
u = v; flag |= true;
}
return flag;
}
#define double long double
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
vector <double> a(n), b(n);
for ( int i = 0; i < n; i++ ){
cin >> a[i] >> b[i];
}
sort(all(a), greater <double> ());
sort(all(b), greater <double> ());
double opt = 0, pf = 0;
for ( int i = 0; i < n; i++ ){
double cnt = 0;
for ( int j = 0; j < n; j++ ){
chmax(opt, min(cnt, pf) - (i + j));
cnt += b[j];
} pf += a[i];
}
printf("%.4lf", (double)opt);
cout << '\n';
}
Compilation message
sure.cpp: In function 'int main()':
sure.cpp:52:17: warning: format '%lf' expects argument of type 'double', but argument 2 has type 'long double' [-Wformat=]
52 | printf("%.4lf", (double)opt);
| ~~~~^ ~~~~~~~~~~~
| | |
| | long double
| double
| %.4Lf
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |