首页 > 代码库 > UVA - 11722 Joining with Friend (概率)
UVA - 11722 Joining with Friend (概率)
| |
You are going from Dhaka to Chittagong by train and you came to know one of your old friends is going from city Chittagong to Sylhet. You also know that both the trains will have a stoppage at junction Akhaura at almost same time. You wanted to see your friend there. But the system of the country is not that good. The times of reaching to Akhaura for both trains are not fixed. In fact your train can reach in any time within the interval[t1, t2] with equal probability. The other one will reach in any time within the interval[s1, s2] with equal probability. Each of the trains will stop for w minutes after reaching the junction. You can only see your friend, if in some time both of the trains is present in the station. Find the probability that you can see your friend.
| |
Input | |
The first line of input will denote the number of cases T (T < 500). Each of the followingT line will contain 5 integers t1, t2, s1, s2, w (360 ≤ t1 < t2 < 1080, 360 ≤ s1 < s2 < 1080 and 1 ≤ w ≤ 90). All inputst1, t2, s1, s2 andw are given in minutes and t1, t2, s1, s2 are minutes since midnight00:00.
| |
Output | |
For each test case print one line of output in the format “Case #k: p” Herek is the case number and p is the probability of seeing your friend. Up to1e-6 error in your output will be acceptable.
| |
Sample Input | Output for Sample Input |
2 1000 1040 1000 1040 20 720 750 730 760 16 | Case #1: 0.75000000 Case #2: 0.67111111 |
| |
Problem Setter: Md. Towhidul Islam Talukder Special Thanks: Samee Zahur, Mahbubul Hasan |
思路:将密度构造成矩形,然后求解y = x +(-) b围成的图形占矩阵面积的大小,分情况讨论
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> using namespace std; double t1, t2, s1, s2, w; double cal(double b) { double sum = (t2-t1) * (s2-s1); double x1 = t1, y1 = t1 + b; double x2 = t2, y2 = t2 + b; if (y2 <= s1) return 0; if (y1 <= s1) { if (y2 <= s2) return 0.5 * (y2 - s1) * (t2 - (s1 - b)); else return 0.5 * (t2 - s1 + b + t2 - s2 + b) * (s2 - s1); } else if (y1 < s2) { if (y2 <= s2) return 0.5 * (t1 + b - s1 + t2 + b - s1) * (t2 - t1); else return sum - 0.5 * (s2 - t1 - b) * (s2 - b - t1); } else return sum; } int main() { int t, cas = 1; scanf("%d", &t); while (t--) { scanf("%lf%lf%lf%lf%lf", &t1, &t2, &s1, &s2, &w); double ans = cal(w) - cal(-w); ans /= (t2-t1) * (s2-s1); printf("Case #%d: %.8lf\n", cas++, ans); } return 0; }
UVA - 11722 Joining with Friend (概率)