QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#756379 | #8037. Gambler's Ruin | ryh7 | WA | 1ms | 6036kb | C++17 | 1.7kb | 2024-11-16 20:13:52 | 2024-11-16 20:13:52 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using VI = vector<int>;
using PII = pair<int,int>;
using VVI = vector<vector<int>>;
const ll mod = 998244353;
const ll INF = 1e18;
const int N = 2e6 + 10;
const double eps = 1e-9;
void solve(){
}
ll s[N];
int n;
pair<double , double> a[N];
double calc(int x , int y){
double res = 0;
double px = (double)1 / a[x].first;
double py = (double)1 / (1.0 - a[y].first);
double sx = s[x];
double sy = s[n] - s[y - 1];
//cout<<px<<py<<sx<<sy<<" ";
return sx + sy - max(sx * px , sy * py);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
//int T;cin>>T;while(T--)solve();
cin>>n;
for(int i = 1 ; i <= n ; i++){
cin>>a[i].first>>a[i].second;
if(a[i].first == 0) a[i].first += eps;
else if(a[i].first == 1) a[i].first -= eps;
}
sort(a + 1 , a + 1 + n , greater());
for(int i = 1 ; i <= n ; i++) s[i] = s[i - 1] + a[i].second;
//cout<<calc(1 , 3);
double res = 0;
for(int i = 1 ; i <= n ; i++){
int l = i + 1;
int r = n;
//cout<<i<<":\n";
//cout<<l<<" "<<r<<" \n";
while(l < r){
int lmid = l + (r - l) / 3;
int rmid = r - (r - l) / 3;
res = max({res , calc(i , lmid) , calc(i , rmid)});
//cout<<lmid<<" "<<rmid<<"\n";
if(calc(i , lmid) >= calc(i , rmid)) l = lmid + 1;
else r = rmid - 1;
}
//cout<<l<<" "<<r<<" \n";
//cout<<calc(i , l);
//cout<<calc(i , r);
//cout<<endl;
res = max({res , calc(i , l) , calc(i , r)});
}
//10 / 3
//2.5
//2
printf("%.9f" , res);
}
//5 4 3 2 1
//5 4 3 2 1
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 5868kb
input:
2 1 15 0 10
output:
9.999999985
result:
ok found '10.0000000', expected '10.0000000', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5992kb
input:
3 0.4 100 0.5 100 0.6 100
output:
33.333333333
result:
ok found '33.3333333', expected '33.3333333', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 5980kb
input:
1 0 1
output:
0.000000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 6036kb
input:
2 1 0 1 100
output:
0.000000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 5864kb
input:
1 0.5 100
output:
0.000000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #6:
score: -100
Wrong Answer
time: 1ms
memory: 5880kb
input:
3 0.4 100 0.6 100 0.6 100
output:
33.333333333
result:
wrong answer 1st numbers differ - expected: '0.0000000', found: '33.3333333', error = '33.3333333'