博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu5387 Clock
阅读量:5268 次
发布时间:2019-06-14

本文共 2372 字,大约阅读时间需要 7 分钟。

Problem Description
Give a time.(hh:mm:ss),you should answer the angle between any two of the minute.hour.second hand
Notice that the answer must be not more 180 and not less than 0
 

Input
There are 
T
(1T104) test cases
for each case,one line include the time
0hh<24,
0mm<60,
0ss<60
 

Output
for each case,output there real number like A/B.(A and B are coprime).if it's an integer then just print it.describe the angle between hour and minute,hour and second hand,minute and second hand.
 

Sample Input
 
4 00:00:00 06:00:00 12:54:55 04:40:00
 

Sample Output
 
0 0 0 180 180 0 1391/24 1379/24 1/2 100 140 120
这是一道简单模拟,但我做了挺长时间,果然模拟题还是很弱啊。。这里注意尽量不要涉及小数,因为会影响精度。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int c[10][4],e,f;int gcd(int a, int b){ return a == 0 ? b : gcd(b % a, a); } void jian(int a,int b,int c,int d){ int i,j,t1,t2,t; t1=a*d-b*c; t2=b*d; t=gcd(t2,t1); e=t1/t; f=t2/t;}int main(){ int h,m,t,s,n,i,j,T,x2,y2,x3,y3; char c1,c2; double b1,b2,b3; scanf("%d",&T); while(T--) { scanf("%d:%d:%d",&h,&m,&s); if(h>=12)h-=12; t=h*3600+m*60+s; c[1][1]=t; c[1][2]=120; c[2][1]=m*60+s; c[2][2]=10; c[3][1]=s*6; c[3][2]=1; e=f=0; jian(c[1][1],c[1][2],c[2][1],c[2][2]); if(e*f>0){ e=f=0; jian(c[1][1],c[1][2],c[2][1],c[2][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } else{ e=f=0; jian(c[2][1],c[2][2],c[1][1],c[1][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } e=f=0; jian(c[1][1],c[1][2],c[3][1],c[3][2]); if(e*f>0){ e=f=0; jian(c[1][1],c[1][2],c[3][1],c[3][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } else{ e=f=0; jian(c[3][1],c[3][2],c[1][1],c[1][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } e=f=0; jian(c[2][1],c[2][2],c[3][1],c[3][2]); if(e*f>0){ e=f=0; jian(c[2][1],c[2][2],c[3][1],c[3][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } else{ e=f=0; jian(c[3][1],c[3][2],c[2][1],c[2][2]); if(e>f*180)jian(360,1,e,f); if(f==1)printf("%d ",e); else printf("%d/%d ",e,f); } printf("\n"); } return 0;}

转载于:https://www.cnblogs.com/herumw/p/9464693.html

你可能感兴趣的文章
实现MyLinkedList类深入理解LinkedList
查看>>
自定义返回模型
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 客户端多网络支持
查看>>
HDU 4122
查看>>
Suite3.4.7和Keil u3自带fx2.h、fx2regs.h文件的异同
查看>>
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Linux编程简介——gcc
查看>>
2019年春季学期第四周作业
查看>>
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
windows下mongodb安装与使用
查看>>
rotate the clock
查看>>
bugku 变量
查看>>
Python 环境傻瓜式搭建 :Anaconda概述
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>
数据库02 /MySQL基础数据类型以及多表之间建立联系
查看>>
Python并发编程04/多线程
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>