zoukankan      html  css  js  c++  java
  • poj 1825 Ants 水题

    Ants
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 10722   Accepted: 4752

    Description

    An army of ants walk on a horizontal pole of length l cm, each with a constant speed of 1 cm/s. When a walking ant reaches an end of the pole, it immediatelly falls off it. When two ants meet they turn back and start walking in opposite directions. We know the original positions of ants on the pole, unfortunately, we do not know the directions in which the ants are walking. Your task is to compute the earliest and the latest possible times needed for all ants to fall off the pole.

    Input

    The first line of input contains one integer giving the number of cases that follow. The data for each case start with two integer numbers: the length of the pole (in cm) and n, the number of ants residing on the pole. These two numbers are followed by n integers giving the position of each ant on the pole as the distance measured from the left end of the pole, in no particular order. All input integers are not bigger than 1000000 and they are separated by whitespace.

    Output

    For each case of input, output two numbers separated by a single space. The first number is the earliest possible time when all ants fall off the pole (if the directions of their walks are chosen appropriately) and the second number is the latest possible such time.

    Sample Input

    2
    10 3
    2 6 7
    214 7
    11 12 7 13 176 23 191
    

    Sample Output

    4 8
    38 207
    
    给你一堆蚂蚁,问全部蚂蚁掉下去的最少时间和最大时间
    扫一遍就好
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    #include <map>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    #define maxn 1000001
    #define eps 1e-9
    const int inf=0x7fffffff;   //无限大
    int x[maxn];
    int main()
    {
        int t;
        cin>>t;
        while(t--)
        {
            int l,n;
            scanf("%d%d",&l,&n);
            int min_num=inf;
            int max_num=0;
            int min_ans=0;
            int max_ans=0;
            for(int i=0;i<n;i++)
            {
                scanf("%d",&x[i]);
                min_num=min(x[i],l-x[i]);
                //cout<<min_num<<endl;
                min_ans=max(min_num,min_ans);
                max_num=max(max_num,max(x[i],l-x[i]));
            }
            cout<<min_ans<<" "<<max_num<<endl;
        }
        return 0;
    }
  • 相关阅读:
    centos6和centos7升级openssh7.5脚本
    开通telnet服务,使用telnet登入
    彻底删除kafka的topic以及其中的数据
    redis集群创建
    curl 命令参数
    nginx.conf配置文件详解,白嫖的
    logstash迁移es数据
    es 常用查询
    pl/sql 存储过程
    es查看集群信息命令_cat和_cluster
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4290176.html
Copyright © 2011-2022 走看看