标签:space direct single txt line nts ++ author 时间
Time Limit: 1000MS | Memory Limit: 30000K | |
Total Submissions: 15617 | Accepted: 6753 |
Description
Input
Output
Sample Input
2 10 3 2 6 7 214 7 11 12 7 13 176 23 191
Sample Output
4 8 38 207
白书上有类似的题目....一开始想分开讨论...想了想可以合在一起写。
最小的滑落时间就是 最小里面的最大值
最大的滑落时间就是 最大里面的最大值
/* *********************************************** Author :guanjun Created Time :2016/10/29 19:34:19 File Name :poj1852.cpp ************************************************ */ #include <iostream> #include <stdio.h> #include <algorithm> #define ull unsigned long long #define ll long long #define mod 90001 #define INF 0x3f3f3f3f #define maxn 10010 #define cle(a) memset(a,0,sizeof(a)) using namespace std; int n,l; int a[1001000]; int main() { #ifndef ONLINE_JUDGE freopen("in.txt","r",stdin); #endif //freopen("out.txt","w",stdout); int t; cin>>t; while(t--){ scanf("%d %d",&l,&n); for(int i=1;i<=n;i++)scanf("%d",&a[i]); int Max=0; int Min=0; for(int i=1;i<=n;i++){ Min=max(Min,min(a[i],l-a[i])); Max=max(Max,max(a[i],l-a[i])); } cout<<Min<<" "<<Max<<endl; } return 0; }
标签:space direct single txt line nts ++ author 时间
原文地址:http://www.cnblogs.com/pk28/p/6036673.html