제출 #1027307

#제출 시각아이디문제언어결과실행 시간메모리
1027307BuzzyBeezSure Bet (CEOI17_sure)C++17
0 / 100
0 ms348 KiB
#include <bits/stdc++.h>
using namespace std;

const int buff = 100000;
const long double dick = 1.0;

long long A[100008], B[100008];

signed main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int n; long double x; cin >> n;
	for (int i = 1; i <= n; ++i) cin >> x, A[i] = round(x * buff);
	for (int i = 1; i <= n; ++i) cin >> x, B[i] = round(x * buff);
	sort(A + 1, A + n + 1, greater<long long>()); sort(B + 1, B + n + 1, greater<long long>());
	partial_sum(A, A + n + 1, A); partial_sum(B, B + n + 1, B);
	int j; long double ans = 0;
	for (int i = 1; i <= n && A[i] <= B[n]; ++i) { // A[i] <= B[j]
		j = lower_bound(B + 1, B + n + 1, A[i]) - B;
		ans = max(ans, (A[i] * dick) / buff - i - j);
	}
	for (int i = 1; i <= n && B[i] <= A[n]; ++i) { // B[i] <= A[j]
		j = lower_bound(A + 1, A + n + 1, B[i]) - A;
		ans = max(ans, (B[i] * dick) / buff - i - j);
	}
	cout << fixed << setprecision(4) << ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...