이 제출은 이전 버전의 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];
void solve() {
cin >> n;
ans = 0;
for (int i = 1;i <= n;i++) {
cin >> a[i] >> b[i];
}
sort(a + 1,a + n + 1);
sort(b + 1,b + n + 1);
cnt = 0;
cnt1 = 0;
ll k = n;
for (int i = n;i >= 1;i --) {
cnt += a[i] - 1.0;
cnt1 -= (double)(n - i) + 1.0;
for (int j = n;j >= 1;j--) {
cnt1 += b[j] - 1.0;
cnt -= 1.0;
if (ans > min(cnt,cnt1)) {
cnt ++;
cnt1 -= b[j];
cnt1 ++;
k = j;
break;
}
ans = max(ans,min(cnt,cnt1));
}
cnt += (double)(n - k);
cnt1 = 0;
// cout << ans << ' ' << i << ' ' << a[i] << ' ' << cnt << ' ' << cnt1 << ' ' << k << et;
}
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... |