#Lutece0778. Effective Infection Time
Effective Infection Time
Migrated from Lutece 778 Effective Infection Time
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
You are estimating the threat level of quarantined zones that have been abandoned to the infection. One of the key variables in determining a zone's threat level is the EIT (Effective Infection Time). This information is essential for planning strike dates to reclaim quarantined zones. The EIT is calculated according to the following rules:
- The EIT is the result of a function of two dates: The infection date and the strike date.
- All years are in A.Z. (After Zombie).
- Every month counts for a fraction of an EIT after its last day has passed. This means the month of the strike date does not count for EIT.
- The first calendar year of the infection is calculated as EIT.
- If the end of the year is not reached, each month only counts for a fraction of the EIT. If a zone was infected in January of the first year, then the EIT is spread across months EIT per month). If a zone was infected in March of the first year, then the EIT is spread across months EIT per month).
- If the end of the year is reached, the year counts as a full EIT, regardless of the infection month. In other words, a zone infected in February of A.Z. counts as only (one-half) EIT after December A.Z. A zone infected in December of the same year will also count as EIT.
- All following years are calculated as EIT. Each calendar month, beginning with January, counts for EIT ( EIT).
- Every zone infected on the same month will have the same EIT for any given strike date. Therefore only the month and year are given.
The number and order of months in a calendar year remains the same as the modern Gregorian calendar.
Input
The first line will be an integer , where giving the number of zones. For each zone, a pair of lines of will be provided:
- The first line contains the infection date. The second contains the strike date.
- The first integer of a date represents the month, , and the second integer represents the year, . The year will always have digits.
- The strike date will never precede the infection date.
Output
Output the EIT for each zone on its own line. The EIT must be rounded to the fourth digit after the decimal point. The ones-digit must always be printed even if it is a zero.
Samples
2
2 0009
11 0012
3 0010
10 0010
3.3333
0.3500
Resources
2013 ACM ICPC South Central USA Regional Programming Contest