제출 #659552

#제출 시각아이디문제언어결과실행 시간메모리
659552jiahngSure Bet (CEOI17_sure)C++14
0 / 100
1 ms340 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define int ll typedef pair<int,int> pi; typedef vector <int> vi; typedef vector <pi> vpi; typedef pair<pi, ll> pii; typedef set <ll> si; typedef long double ld; #define f first #define s second #define mp make_pair #define FOR(i,s,e) for(int i=s;i<=int(e);++i) #define DEC(i,s,e) for(int i=s;i>=int(e);--i) #define pb push_back #define all(x) (x).begin(), (x).end() #define lbd(x, y) lower_bound(all(x), y) #define ubd(x, y) upper_bound(all(x), y) #define aFOR(i,x) for (auto i: x) #define mem(x,i) memset(x,i,sizeof x) #define fast ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0) #define maxn 2000010 #define INF (ll)1e18 #define MOD 1000000007 typedef pair <vi, int> pvi; typedef pair <int,pi> ipi; typedef vector <pii> vpii; int N,A[maxn],B[maxn],dp[maxn]; double a,b; int ssA[maxn], ssB[maxn]; int32_t main(){ cin >> N; FOR(i,1,N){ cin >> a >> b; A[i] = a * 10000; B[i] = b * 10000; } sort(A+1,A+N+1,greater <int>()); sort(B+1,B+N+1,greater <int>()); FOR(i,1,N) ssA[i] = ssA[i-1] + A[i]; FOR(i,1,N) ssB[i] = ssB[i-1] + B[i]; int ans = 0; FOR(i,1,N){ int y = lower_bound(ssB+1,ssB+N+1,ssA[i]) - ssB; if (y == N+1) continue; ans = max(ans, ssA[i] - (i + y) * 10000); } FOR(i,1,N){ int x = lower_bound(ssA+1,ssA+N+1,ssB[i]) - ssA; if (x == N+1) continue; ans = max(ans, ssB[i] - (i + x)*10000); } double lans = ans; lans /= 10000; printf("%.4lf", (double)lans); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...