이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <sstream>
#include <fstream>
#define et "\n"
#define ll long long
#define ff first
#define ss second
#define pb push_back
#define ioi ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define M 1000000007
using namespace std;
ll n,m,k;
string s1;
map <ll,ll> mp;
double ans,cnt,cnt1;
double a[211111],b[211111],c[211111],c1 = 0;
void solve() {
cin >> n;
ans = 0;
for (int i = 1;i <= n;i++) {
cin >> a[i] >> b[i];
a[i] = -a[i];
b[i] = -b[i];
}
sort(a + 1,a + n + 1);
sort(b + 1,b + n + 1);
for (int i = 1;i <= n;i++) {
a[i] = -a[i];
b[i] = -b[i];
}
for (int i = 1;i <= n;i++) {
c[i] = b[i] + c[i - 1];
}
cnt = 0;
cnt1 = 0;
for (int i = 1;i <= n;i ++) {
c1 = i;
cnt += a[i];
ll l = 1,r = n;
while (l <= r) {
ll tm = (l + r) >> 1;
// cout << ans << ' ' << l << ' ' << r << ' ' << a[i] << ' ' << cnt << ' ' << c[tm] << et;
ans = max(ans,min(c[tm] - c1 - tm,cnt - c1 - tm));
if (cnt > c[tm]) {
if (b[tm] > 1) {
l = tm + 1;
}
else {
r = tm - 1;
}
}
else {
r = tm - 1;
}
}
}
printf("%.4lf",(double)ans);
}
int main() {
ioi;
ll tt = 1;
// cin >> tt;
while (tt--) {
solve();
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |