# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
63154 | khsoo01 | Sure Bet (CEOI17_sure) | C++11 | 142 ms | 4412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 100005;
int n;
double a[N], b[N];
bool can (double P) {
double pa = 0, pb = 0;
int i = n, j = n;
while(true) {
bool upd = false;
while(i >= 1 && pa < P) {
pa -= 1.0; pb -= 1.0;
pa += a[i]; i--;
upd = true;
}
while(j >= 1 && pb < P) {
pa -= 1.0; pb -= 1.0;
pb += b[j]; j--;
upd = true;
}
if(!upd) break;
}
if(pa >= P && pb >= P) return true;
return false;
}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++) {
scanf("%lf%lf",&a[i],&b[i]);
}
sort(a+1, a+1+n);
sort(b+1, b+1+n);
double S = 0, E = 2e9;
for(int i=0;i<50;i++) {
double M = (S+E)/2;
can(M) ? S = M : E = M;
}
printf("%.4f\n",S);
}
컴파일 시 표준 에러 (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... |