-
Notifications
You must be signed in to change notification settings - Fork 12
/
1137-Expanding_rods.cpp
90 lines (48 loc) · 1.25 KB
/
1137-Expanding_rods.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll arr[100100];
vector <pair <ll,ll> > v;
double l,temp,h_c,new_l,teta;
double binarysearch_theta(double low,double high)
{
ll j = 32;
double mid;
while(j--) {
mid = low+high;
mid /= 2.0; // mid is thetha
//cout << "loop " << j << "mid : " << mid << endl;
double rad = new_l/(double)mid;
double new_k = rad*sin(mid);
double half_l = l/2.0;
if(new_k < half_l) {
high = mid;
}else {
low = mid;
}
}
return mid;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam","r",stdin);
#endif
ios_base::sync_with_stdio(false);
ll i,j,k,n,m,t,cont,a,b;
cin >> t;
ll cases = t;
while(t--){
v.clear();
cin >> l >> temp >> h_c;
new_l = (1 + temp*h_c)*l;
new_l /= 2.0;
double angl =binarysearch_theta(0.0, acos(-1)/2.0);
double radi = new_l/(double)angl;
double yoo = radi * cos(angl);
double ans = radi - yoo;
cout<< fixed << setprecision(7)<< "Case " << cases-t << ": " << ans << endl;
}
return 0;
}