QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#502618#5151. Bottle Flip1DemonS1AC ✓0ms3936kbC++20818b2024-08-03 10:25:152024-08-03 10:25:22

Judging History

你现在查看的是最新测评结果

  • [2024-08-03 10:25:22]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3936kb
  • [2024-08-03 10:25:15]
  • 提交

answer

#include<bits/stdc++.h>
//#define int long long
#define endl "\n"
#define ll long long
#define PII std::pair<int,int>
using namespace std;
const int maxn = 1e4 + 5;
const double eps = 1e-8;
double r, h, da, dw;
double f(double hw) {
    double ha = h - hw;
    double mw = hw * dw;
    double ma = ha * da;
    double cw = hw / 2;
    double ca = h - ha / 2;
    return (ca * ma + cw * mw) / (ma + mw);
}
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    cout << fixed << setprecision(12);
    cin >> h >> r >> da >> dw;
    double l = 0, r = h;
    while (fabs(l - r) > eps) {
        double mid1 = (l + r) / 2;
        double mid2 = (r + mid1) / 2;
        if (f(mid1) > f(mid2)) l = mid1;
        else r = mid2;
    }
    cout << l << endl;
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3816kb

input:

22 4 1 4

output:

7.333333232273

result:

ok found '7.3333332', expected '7.3333333', error '0.0000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

7 2 655 988

output:

3.141594117820

result:

ok found '3.1415941', expected '3.1415942', error '0.0000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1 1 1 2

output:

0.414213560740

result:

ok found '0.4142136', expected '0.4142136', error '0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3932kb

input:

1000 1000 999 1000

output:

499.874647700769

result:

ok found '499.8746477', expected '499.8749375', error '0.0000006'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

1000 1000 1 1000

output:

30.653429892281

result:

ok found '30.6534299', expected '30.6534300', error '0.0000000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3800kb

input:

1 1000 1 1000

output:

0.030653425623

result:

ok found '0.0306534', expected '0.0306534', error '0.0000000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3912kb

input:

1000 1000 482 483

output:

499.740854487083

result:

ok found '499.7408545', expected '499.7409326', error '0.0000002'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1 1000 482 483

output:

0.499740827305

result:

ok found '0.4997408', expected '0.4997409', error '0.0000001'

Test #9:

score: 0
Accepted
time: 0ms
memory: 3868kb

input:

1 1000 1 2

output:

0.414213560740

result:

ok found '0.4142136', expected '0.4142136', error '0.0000000'

Test #10:

score: 0
Accepted
time: 0ms
memory: 3864kb

input:

1000 1000 1 2

output:

414.213563776092

result:

ok found '414.2135638', expected '414.2135624', error '0.0000000'

Test #11:

score: 0
Accepted
time: 0ms
memory: 3800kb

input:

961 1000 979 983

output:

480.010192818016

result:

ok found '480.0101928', expected '480.0101932', error '0.0000000'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3936kb

input:

997 1000 977 983

output:

497.736815439170

result:

ok found '497.7368154', expected '497.7369880', error '0.0000003'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

1 928 1 66

output:

0.109600589337

result:

ok found '0.1096006', expected '0.1096006', error '0.0000000'

Test #14:

score: 0
Accepted
time: 0ms
memory: 3876kb

input:

1 928 2 88

output:

0.131005797833

result:

ok found '0.1310058', expected '0.1310058', error '0.0000000'

Test #15:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

1 928 3 74

output:

0.167600900745

result:

ok found '0.1676009', expected '0.1676009', error '0.0000000'

Test #16:

score: 0
Accepted
time: 0ms
memory: 3924kb

input:

1 928 3 41

output:

0.212908851512

result:

ok found '0.2129089', expected '0.2129089', error '0.0000000'

Test #17:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

1 928 1 12

output:

0.224009235940

result:

ok found '0.2240092', expected '0.2240092', error '0.0000000'

Test #18:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

2 928 89 93

output:

0.989009574297

result:

ok found '0.9890096', expected '0.9890097', error '0.0000001'

Test #19:

score: 0
Accepted
time: 0ms
memory: 3864kb

input:

7 928 51 72

output:

3.199009763617

result:

ok found '3.1990098', expected '3.1990099', error '0.0000000'

Test #20:

score: 0
Accepted
time: 0ms
memory: 3868kb

input:

722 547 709 752

output:

355.686363810725

result:

ok found '355.6863638', expected '355.6863918', error '0.0000001'

Test #21:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

242 742 518 920

output:

103.742903776016

result:

ok found '103.7429038', expected '103.7429035', error '0.0000000'

Test #22:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

873 701 43 201

output:

276.087550584384

result:

ok found '276.0875506', expected '276.0875558', error '0.0000000'

Test #23:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

268 228 527 562

output:

131.846100228977

result:

ok found '131.8461002', expected '131.8460919', error '0.0000001'

Test #24:

score: 0
Accepted
time: 0ms
memory: 3912kb

input:

312 558 341 839

output:

121.468383853848

result:

ok found '121.4683839', expected '121.4683851', error '0.0000000'

Test #25:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

274 85 178 364

output:

112.756490077560

result:

ok found '112.7564901', expected '112.7564907', error '0.0000000'

Test #26:

score: 0
Accepted
time: 0ms
memory: 3904kb

input:

641 539 341 977

output:

238.054437032996

result:

ok found '238.0544370', expected '238.0544387', error '0.0000000'

Test #27:

score: 0
Accepted
time: 0ms
memory: 3932kb

input:

245 861 438 872

output:

101.618380446377

result:

ok found '101.6183804', expected '101.6183839', error '0.0000000'

Test #28:

score: 0
Accepted
time: 0ms
memory: 3828kb

input:

640 181 156 606

output:

215.419831285547

result:

ok found '215.4198313', expected '215.4198349', error '0.0000000'