제출 #45083

#제출 시각아이디문제언어결과실행 시간메모리
45083qoo2p5Sure Bet (CEOI17_sure)C++17
100 / 100
158 ms20036 KiB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;

const int INF = (int) 1e9 + 1e6 + 123;
const ll LINF = (ll) 1e18 + 1e9 + 123;

#define rep(i, s, t) for (auto i = (s); i < (t); ++(i))
#define per(i, s, t) for (auto i = (s); i >= (t); --(i))
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define mp make_pair
#define pb push_back

bool mini(auto &x, const auto &y) {
	if (y < x) {
		x = y;
		return 1;
	}
	return 0;
}

bool maxi(auto &x, const auto &y) {
	if (y > x) {
		x = y;
		return 1;
	}
	return 0;
}

void run();

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	run();
	return 0;
}

const int N = (int) 1e5 + 123;

int n;
ld a[N], b[N];
ld pa[N], pb[N];

void run() {
	cin >> n;
	rep(i, 1, n + 1) {
		cin >> a[i] >> b[i];
	}
	sort(a + 1, a + n + 1);
	reverse(a + 1, a + n + 1);
	sort(b + 1, b + n + 1);
	reverse(b + 1, b + n + 1);
	rep(i, 1, n + 1) {
		a[i] += a[i - 1];
		b[i] += b[i - 1];
		pa[i] = max(pa[i - 1], a[i] - i);
		pb[i] = max(pb[i - 1], b[i] - i);
	}
	
	ld ans = 0;
	rep(i, 0, n + 1) {
		int r = (int) (upper_bound(b, b + n + 1, a[i]) - b - 1);
		maxi(ans, pb[r] - i);
	}
	rep(i, 0, n + 1) {
		int r = (int) (upper_bound(a, a + n + 1, b[i]) - a - 1);
		maxi(ans, pa[r] - i);
	}
	
	cout << fixed << setprecision(4);
	cout << ans << "\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...