[ACM_模拟] HDU 1006 Tick and Tick [时钟间隔角度问题]

简介:


 

 

Problem Description
The three hands of the clock are rotating every second and meeting each other many times everyday. Finally, they get bored of this and each of them would like to stay away from the other two. A hand is happy if it is at least D degrees from any of the rest. You are to calculate how much time in a day that all the hands are happy.
 
Input
The input contains many test cases. Each of them has a single line with a real number D between 0 and 120, inclusively. The input is terminated with a D of -1.
 
Output
For each D, print in a single line the percentage of time in a day that all of the hands are happy, accurate up to 3 decimal places.
 
Sample Input
0 120 90 -1
 
Sample Output
100.000 0.000 6.251
 
 
复制代码
 1 #include<stdio.h>
 2 /*-----------------------------------------------
 3 double取最大最小函数
 4 */
 5 double max(double a,double b){
 6     if(a>b)return a;
 7     return b;
 8 }
 9 double min(double a,double b){
10     if(a>b)return b;
11     return a;
12 }//---------------------------------------------
13 /*
14 集合结构体
15 */
16 struct set{
17     double a,double b;
18 };//集合区间的左右
19 double d;
20 /*---------------------------------------------
21 求d<=ax+b<360-d的解
22 */
23 struct set sloveset(double a,double b){
24     struct set seta;
25     if(a>0){
26         seta.a=(d-b)/a;
27         seta.b=(360-d-b)/a;
28     }
29     else{
30         seta.b=(d-b)/a;
31         seta.a=(360-d-b)/a;
32     }
33     if(seta.a<0) seta.a=0;
34     if(seta.b>60) seta.b=60;
35     if(seta.a>=seta.b) seta.a=seta.b=0;//之前这句放到了if(seta.a<0)if(seta.b>60)前面了
36     return seta;              //结果seta.b变成了负的怀疑是seta.b太大了冒了不知对错
37 }
38 /*---------------------------------------------
39 给2个集合求交集
40 */
41 struct set intersection(struct set a,struct set b){
42     struct set p;
43     p.a=a.a>b.a ?a.a:b.a;
44     p.b=a.b<b.b ?a.b:b.b;
45     if(p.a>p.b) p.a=p.b=0;
46     return p;
47 }//////////////////////////////////////////////////////////
48 int main(){
49     int h,m,i,j,k;
50     double a1,b1,a2,b2,a3,b3,time;
51     struct set answer[3][2],ensemble;
52     while(scanf("%lf",&d)&&d!=-1){
53         time=0;
54         for(h=0;h<12;h++){
55             for(m=0;m<60;m++){
56                 b1=6.0*m;a1=-5.9;
57                 b2=30*h+0.5*m;a2=1.0/120-6.0;
58                 b3=30*h+(0.5-6)*m;a3=(1.0/120)-0.1;
59                 /*求3个绝对值不等式的解集 存到answer中answer[0][0] answer[0][1]要取并集剩下两个也是 */
60                 answer[0][0]=sloveset(a1,b1);              answer[0][1]=sloveset(-a1,-b1);
61                 answer[1][0]=sloveset(a2,b2);              answer[1][1]=sloveset(-a2,-b2);
62                 answer[2][0]=sloveset(a3,b3);              answer[2][1]=sloveset(-a3,-b3);
63                 // 取过交集后,需要将3个式子的结果取并集 所以采用下面的方法
64                 for(i=0;i<2;i++){
65                     for(j=0;j<2;j++){
66                         for(k=0;k<2;k++){
67                             ensemble=intersection(intersection(answer[0][i],answer[1][j]),answer[2][k]);
68                             time+=ensemble.b-ensemble.a; 
69                         }
70                     } 
71                 }
72             }
73         }
74         time=time*100.0/(12*3600);
75         printf("%.3lf\n",time);
76     }
77     return 0;
78 }
复制代码



相关文章
|
10月前
|
Linux 调度
按键消抖的两种方法--中断延迟工作与定时器
按键消抖的两种方法--中断延迟工作与定时器
365 0
|
8月前
|
Linux
Linux驱动中断与时间篇——低分辨率定时器
Linux驱动中断与时间篇——低分辨率定时器
|
9月前
|
调度
TM4C123库函数学习(2)--- LED闪烁,滴答定时器精准延时
TM4C123库函数学习(2)--- LED闪烁,滴答定时器精准延时
132 0
|
11月前
[STM32F10x] 利用定时器测量频率
[STM32F10x] 利用定时器测量频率
98 2
|
11月前
|
安全 网络协议 JavaScript
【玩转RT-Thread】 RT-Thread Studio使用(1)(按键控制电机正反转、蜂鸣器)
【玩转RT-Thread】 RT-Thread Studio使用(1)(按键控制电机正反转、蜂鸣器)
211 0
蓝桥杯使用定时器代替延时控制按键
蓝桥杯使用定时器代替延时控制按键
42 0
【蓝桥杯嵌入式】STM32定时器的配置,解析预分频系数和重装载值与时钟频率的关系
【蓝桥杯嵌入式】STM32定时器的配置,解析预分频系数和重装载值与时钟频率的关系
439 0
|
Linux 异构计算 Windows
如何expanded time来观察信号到来的先后顺序?(仿真工具使用技巧)【Modesim/Questasim】
如何expanded time来观察信号到来的先后顺序?(仿真工具使用技巧)【Modesim/Questasim】
如何expanded time来观察信号到来的先后顺序?(仿真工具使用技巧)【Modesim/Questasim】
|
开发者
Alarm-Clock 实验过程|学习笔记
快速学习 Alarm-Clock 实验过程
152 0
Alarm-Clock 实验过程|学习笔记