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

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

简单题

#include 
#include
using namespace std;int l, n;void input(){ int earliest, latest; scanf("%d%d", &l, &n); latest = 0; earliest = 0; for (int i = 0; i < n; i++) { int a; scanf("%d", &a); earliest = max(earliest, min(a, l - a)); latest = max(latest, max(a, l- a)); } printf("%d %d\n", earliest, latest);}int main(){ int t; scanf("%d", &t); while (t--) { input(); } return 0;}
View Code

 

转载地址:http://npkyo.baihongyu.com/

你可能感兴趣的文章
VMware(Plus 1)
查看>>
DOS和DDOS你知道多少?
查看>>
2013计算机视觉代码合集
查看>>
在vue中如何实现购物车checkbox的三级联动
查看>>
数据库常用语句
查看>>
Python_爬虫1
查看>>
智能指针
查看>>
hibernate 检索策略
查看>>
shell小脚本--从laod博客更新hosts文件
查看>>
winform登录窗体加载等待图片
查看>>
eclipse配置
查看>>
转:Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB
查看>>
NSArray block用法
查看>>
ios input框无法输入问题
查看>>
Owncloud-X安装配置
查看>>
OCA读书笔记(16) - 执行数据库恢复
查看>>
jmeter测试TCP服务器/模拟发送TCP请求 设置16进制发送(转)
查看>>
时代亿信 安全保密邮件产品
查看>>
Python自学笔记-递归函数(来自廖雪峰的官网Python3)
查看>>
转 C语言编译过程简介
查看>>