Uva-10714-ants

Source: Internet
Author: User
Tags integer numbers

UVA-10714

Ants
Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld &%llu

Submit Status

Description

Problem B:antsan army of ants walk on a horizontal pole of length LCM, 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 the ants meet they turn back and the start walking in opposite directions. We know the original positions of ants on the pole, unfortunately, we don't know the directions in which the ants is Wal King. Your task is to compute the earliest and the latest possible times needed for all ants to fall off the pole.

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

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

Sample input
210 32 6 7214 711 12 7 13 176 23 191
Output for sample input
4 838 207
Piotr Rudnicki

Source

Root:: Competitive programming 3:the New Lower Bound of programming contests (Steven & Felix Halim):: Problem Solvi Ng Paradigms:: Greedy:: Non classical, usually harder
Root:: AOAPC i:beginning algorithm Contests (Rujia Liu):: Volume 4. Algorithm Design
Root:: Competitive programming 2:this increases the lower bound of programming contests. Again (Steven & Felix Halim):: Problem Solving Paradigms:: Greedy-standard
Root:: Prominent problemsetters:: Piotr Rudnicki

Submit Status





Idea: only need to traverse all ants, each ant out of the wood pole of the longest time, the shortest time to find out, whichever is the maximum, that is, the question asked all ants leave the wood pole of the shortest time and the longest time


AC Code:

#include <cstdio> #include <cstring> #include <algorithm> #define INF 0x3fffffffusing namespace std; int main () {int t;scanf ("%d", &t), while (t--) {int. Len, n, MA = 0, MI = 0;scanf ("%d%d", &len, &n); for (int i = 0; I < n; i++) {int t;scanf ("%d", &t), int ma = len-t;int mi = len-ma;if (ma < mi) swap (MA, MI); MA = Max (MA, MA); mi = max (MI, MI);} printf ("%d%d\n", MI, MA);} return 0;}












Uva-10714-ants

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.