QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#120314#5151. Bottle FlipPetroTarnavskyi#AC ✓1ms3776kbC++171.0kb2023-07-06 16:39:292023-07-06 16:39:30

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-06 16:39:30]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3776kb
  • [2023-07-06 16:39:29]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
using LL = long long;
using ULL = unsigned long long;
using VI = vector<int>;
using VL = vector<LL>;
using PII = pair<int, int>;
using PLL = pair<LL, LL>;
using ld = long double;

#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define MP make_pair
#define PB push_back
#define EB emplace_back
#define F first
#define S second
#define FOR(i, a, b) for (int i = (a); i<(b); ++i)
#define RFOR(i, b, a) for (int i = (b)-1; i>=(a); --i)
#define FILL(a, b) memset(a, b, sizeof(a))

typedef long double db;

db h, r, da, dw;

db f(db x) {
	return (h * da * (h - x) / (x * (dw - da) + da * h) + x) / 2;
}

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout << fixed << setprecision(10);
	cin >> h >> r >> da >> dw;
	double low = 0, high = h;
	FOR(it, 0, 747) {
		double mid1 = low + (high - low) / 3, mid2 = high - (high - low) / 3;
		if (f(mid1) < f(mid2)) {
			high = mid2;
		}
		else {
			low = mid1;
		}
	}
	cout << (low + high) / 2 << "\n";
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3700kb

input:

22 4 1 4

output:

7.3333333344

result:

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

Test #2:

score: 0
Accepted
time: 1ms
memory: 3588kb

input:

7 2 655 988

output:

3.1415941747

result:

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

Test #3:

score: 0
Accepted
time: 1ms
memory: 3592kb

input:

1 1 1 2

output:

0.4142135627

result:

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

Test #4:

score: 0
Accepted
time: 1ms
memory: 3720kb

input:

1000 1000 999 1000

output:

499.8749465801

result:

ok found '499.8749466', expected '499.8749375', error '0.0000000'

Test #5:

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

input:

1000 1000 1 1000

output:

30.6534300351

result:

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

Test #6:

score: 0
Accepted
time: 1ms
memory: 3724kb

input:

1 1000 1 1000

output:

0.0306534300

result:

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

Test #7:

score: 0
Accepted
time: 1ms
memory: 3660kb

input:

1000 1000 482 483

output:

499.7409355866

result:

ok found '499.7409356', expected '499.7409326', error '0.0000000'

Test #8:

score: 0
Accepted
time: 1ms
memory: 3640kb

input:

1 1000 482 483

output:

0.4997409377

result:

ok found '0.4997409', expected '0.4997409', error '0.0000000'

Test #9:

score: 0
Accepted
time: 1ms
memory: 3644kb

input:

1 1000 1 2

output:

0.4142135627

result:

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

Test #10:

score: 0
Accepted
time: 1ms
memory: 3660kb

input:

1000 1000 1 2

output:

414.2135625158

result:

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

Test #11:

score: 0
Accepted
time: 1ms
memory: 3684kb

input:

961 1000 979 983

output:

480.0101965359

result:

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

Test #12:

score: 0
Accepted
time: 1ms
memory: 3588kb

input:

997 1000 977 983

output:

497.7369889953

result:

ok found '497.7369890', expected '497.7369880', error '0.0000000'

Test #13:

score: 0
Accepted
time: 1ms
memory: 3696kb

input:

1 928 1 66

output:

0.1096005909

result:

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

Test #14:

score: 0
Accepted
time: 1ms
memory: 3764kb

input:

1 928 2 88

output:

0.1310058042

result:

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

Test #15:

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

input:

1 928 3 74

output:

0.1676009074

result:

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

Test #16:

score: 0
Accepted
time: 1ms
memory: 3776kb

input:

1 928 3 41

output:

0.2129088555

result:

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

Test #17:

score: 0
Accepted
time: 1ms
memory: 3688kb

input:

1 928 1 12

output:

0.2240092378

result:

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

Test #18:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

2 928 89 93

output:

0.9890096634

result:

ok found '0.9890097', expected '0.9890097', error '0.0000000'

Test #19:

score: 0
Accepted
time: 1ms
memory: 3676kb

input:

7 928 51 72

output:

3.1990098793

result:

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

Test #20:

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

input:

722 547 709 752

output:

355.6863928412

result:

ok found '355.6863928', expected '355.6863918', error '0.0000000'

Test #21:

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

input:

242 742 518 920

output:

103.7429035158

result:

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

Test #22:

score: 0
Accepted
time: 1ms
memory: 3664kb

input:

873 701 43 201

output:

276.0875559608

result:

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

Test #23:

score: 0
Accepted
time: 1ms
memory: 3688kb

input:

268 228 527 562

output:

131.8460921776

result:

ok found '131.8460922', expected '131.8460919', error '0.0000000'

Test #24:

score: 0
Accepted
time: 1ms
memory: 3688kb

input:

312 558 341 839

output:

121.4683851293

result:

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

Test #25:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

274 85 178 364

output:

112.7564907248

result:

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

Test #26:

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

input:

641 539 341 977

output:

238.0544388318

result:

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

Test #27:

score: 0
Accepted
time: 1ms
memory: 3668kb

input:

245 861 438 872

output:

101.6183839466

result:

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

Test #28:

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

input:

640 181 156 606

output:

215.4198349749

result:

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