Hdu4585: Shaolin (MAP)

Source: Internet
Author: User
Problem descriptionshaolin Temple is very famous for its Kongfu monks. A lot of young men go to Shaolin Temple every year, trying to be a monk there. the master of Shaolin evaluates a young man mainly by his talent on understanding the Buddism scripture, but fighting skill is also taken into account.
When a young man passes all the tests and is declared a new monk of Shaolin, there will be a fight, as a part of the welcome party. every monk has an unique ID and a unique fighting grade, which are all integers. the new monk must fight with a old monk whose fighting grade is closest to his fighting grade. if there are two old monks satisfying that condition, the new monk will take the one whose fighting grade is less than his.
The master is the first monk in Shaolin, his ID is 1, and his fighting grade is 1,000,000,000 .he just lost the fighting records. but he still remembers who joined Shaolin earlier, who joined later. please recover the fighting records for him.
 
Inputthere are several test cases.
In each test case:
The first line is a integer N (0 <n <= 100,000), meaning the number of monks who joined Shaolin after the master did. (The master is not supported DED ). then n lines follow. each line has two integer k and G, meaning a monk's ID and his fighting grade. (0 <= K, G <= 5,000,000)
The monks are listed by ascending order of jointing time. In other words, monks who joined Shaolin earlier come first.
The input ends with n = 0.
 
Outputa fight can be described as two IDs of the monks who make that fight. for each test case, output all fights by the ascending order of happening time. each fight in a line. for each fight, print the new monk's ID first, then the old monk's ID.
Sample Input
32 13 34 20
 
Sample output
2 13 24 2
#include <stdio.h>#include <string.h>#include <map>#include <algorithm>using namespace std;int main(){    int i,n,id,f;    while(~scanf("%d",&n),n)    {        map<int,int> a;        a.clear();        a[1000000000] = 1;        for(i = 0; i<n; i++)        {            scanf("%d%d",&id,&f);            printf("%d ",id);            map<int,int>::iterator it = a.lower_bound(f);            if(it == a.end())            {                printf("%d\n",it->second);            }            else            {                int t1 = it->first;                int t2 = it->second;                if(it!=a.begin())                {                    it--;                    if(f-it->first<=t1-f)                        printf("%d\n",it->second);                    else                        printf("%d\n",t2);                }                else                    printf("%d\n",t2);            }            a[f] = id;        }    }    return 0;}


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.