博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5120 A Curious Matt(2014北京赛区现场赛A题 简单模拟)
阅读量:5309 次
发布时间:2019-06-14

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

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5112

解题报告:扫一遍

1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 const int maxn = 1e6+5; 8 9 struct node10 {11 double t,x;12 }rec[maxn];13 double Max(double a,double b)14 {15 return a > b? a : b;16 }17 bool cmp(node a,node b)18 {19 return a.t < b.t;20 }21 double Fabs(double d)22 {23 return d > 0? d:-1.0*d;24 }25 int main()26 {27 int T,n,kase = 1;28 scanf("%d",&T);29 while(T--)30 {31 scanf("%d",&n);32 for(int i = 0;i < n;++i)33 scanf("%lf%lf",&rec[i].t,&rec[i].x);34 sort(rec,rec+n,cmp);35 double ans = 0;36 for(int i = 1;i < n;++i)37 ans = Max(ans,Fabs(rec[i].x-rec[i-1].x) / (rec[i].t - rec[i-1].t));38 printf("Case #%d: %.2lf\n",kase++,ans);39 }40 return 0;41 }
View Code

 

转载于:https://www.cnblogs.com/xiaxiaosheng/p/4132394.html

你可能感兴趣的文章
[转]SQL Server 数据库规范
查看>>
(剑指Offer)面试题23:从上到下打印二叉树
查看>>
(五)、安装Elasticsearch
查看>>
【Python基础】02_Python中变量的输入输出
查看>>
静态查找表和动态查找表
查看>>
USACO2.3.2 Cow Pedigrees 奶牛家谱(DP)
查看>>
Xcode下的DerivedData文件
查看>>
解决ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
查看>>
今天是JVM的生日,来了解下JVM的发展历史吧
查看>>
完成登录功能,用session记住用户名
查看>>
创建型模式 -> 结构型模式/行为模式
查看>>
Java内存分析
查看>>
[ CodeVS冲杯之路 ] P1098
查看>>
[数据库]Oracle和mysql中的分页总结
查看>>
iOS-----App闪退,程序崩溃---解决方案
查看>>
Vue使用axios
查看>>
Docker入门系列(三):让你的应用变为可扩展的服务
查看>>
爬虫开发13.UA池和代理池在scrapy中的应用
查看>>
用多线程处理FTP上传
查看>>
点击事件在label标签执行2次解决办法
查看>>