# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
153402 | junodeveloper | Sure Bet (CEOI17_sure) | C++14 | 88 ms | 4980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
int n;
double a[100010],b[100010];
int main() {
scanf("%d",&n);
int i;
for(i=1;i<=n;i++)scanf("%lf%lf",a+i,b+i);
sort(a+1,a+n+1);
sort(b+1,b+n+1);
for(i=1;i<=n;i++) a[i+1]+=a[i],b[i+1]+=b[i];
int k;
double ans=0;
for(k=1;k<=n+n;k++) {
int lo=0,hi=k;
while(lo<hi) {
int mid=(lo+hi+1)/2;
if(a[n]-a[n-mid]<b[n]-b[n-(k-mid)]) lo=mid;
else hi=mid-1;
}
ans=max(ans,a[n]-a[n-lo]-k);
if(lo<k) ans=max(ans,b[n]-b[n-(k-lo-1)]-k);
}
printf("%.4f",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |