当前位置: 代码迷 >> 综合 >> HDU--2076--钟表问题--计算几何
  详细解决方案

HDU--2076--钟表问题--计算几何

热度:34   发布时间:2023-12-12 06:14:46.0

时间过的好快,一个学期就这么的过去了,xhd在傻傻的看着表,出于对数据的渴望,突然他想知道这个表的时针和分针的夹角是多少。现在xhd知道的只有时间,请你帮他算出这个夹角。

注:夹角的范围[0,180],时针和分针的转动是连续而不是离散的。

Input

输入数据的第一行是一个数据T,表示有T组数据。
每组数据有三个整数h(0 <= h < 24),m(0 <= m < 60),s(0 <= s < 60)分别表示时、分、秒。

Output

对于每组输入数据,输出夹角的大小的整数部分。

Sample Input
2
8 3 17
5 13 30
Sample Output
138
75

思路:1.理清楚h,m,s三者的关系;

//对于时针 
/*360°/12=30° 一小时 
30°/60=0.5°一分钟
0.5°/60=0.00833333°一秒钟 
*/
//对于分针
/*360°/60=6° 一分钟6°/60=0.1°  一秒钟 
*/ 

2.对于时针需要a=a-12,我们以00:00:00为标准,采用做差的方式求解;

3.结果向下取整,采用floor()函数即可;参考:https://blog.csdn.net/queque_heiya/article/details/104134630

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<stack>
using namespace std;
const int maxa=30+10;
int a,b,c; 
int main(){int t;scanf("%d",&t);while(t--){scanf("%d%d%d",&a,&b,&c);if(a>=12)	a-=12;//先确定时针的位置double sz=a*30.0+b*0.5+c*(0.5/60);//确定分针的位置double fz=b*6+c*0.1;double ans=fabs(sz-fz);if(ans>180.0)	printf("%.0lf\n",floor(360.0-ans));elseprintf("%.0lf\n",floor(ans));} return 0;
}