Description

Shaolin 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. 
 

Input

There 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 included).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. 
 

Output

A 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

3
2 1
3 3
4 2
0
 

Sample Output

2 1
3 2
4 2

大致题意:非常久曾经。少林寺里仅仅有一个等级10^9为方丈,他编号为1,少林寺里有个规矩,每一个新来的和尚都必须和一位等级最接近自己的老(就是比他先来的)和尚进行战斗。后来又来了n个和尚。而且他们按入寺时间依次编号2~n+1,可是时间太久。方丈已经不知道每一个和尚来的时候是跟哪个和尚战斗了,可是他还是记得哪个和尚比哪个和尚先来的。

输入给出n个和尚的编号和他们的等级。

以下就靠你了,让你依次求出每一个和尚进寺是是跟谁战斗的,并输出。

解题思路:直接开数组的话,每次找跟他等级最接近的肯定要排序。眼下知道的最快的快排的也是O(n*lg n)的,因为数据给的是10^5,再加上还要操作,时间已经超了。

所以,得换个思路,那就得用到STL中的map的优势了,也好久没用map做题了。map里的数据会自己主动按键值升序排列。据说map内部的排序是用红黑树(一种不明觉厉的数据结构)实现的。其时间复杂度是O(n)的。同一时候,map里还能够直接用find()按键值查找键值所在的迭代器,这就太方便了。

详细实现步骤:1.先开个map<int, int> monk,  把方丈的编号id和等级grad在map里建立映射。这里用到了一个小细节。

建立映射能够直接这样写。monk[grad] = id.

2.在循环输入n个和尚的信息,

1)每次输入一个和尚的信息。然后在map里建立映射;

2)此时用find(grad)寻找当前增加的和尚所在的迭代器。

3)然后,考虑当前的迭代器的位置,若是最后一个。就直接输出当前迭代器的前一个;

要是第一个。就输出当前迭代器的后面一个;

要既不是第一个也不是最后一个的话。就比較当前迭代器的first和它前后两迭代器first之间的差值哪个更小,小的输出;

要是两差值一样的话,输出前一个迭代器。

AC代码:

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
#define INF 0x7fffffff map<int, int> a; //声明一个map对象 int main()
{
#ifdef sxk
freopen("in.txt","r",stdin);
#endif
int n, k, g;
while(scanf("%d",&n)!=EOF && n)
{
a[1e9] = 1; //处理方丈
for(int i=0; i<n; i++){
scanf("%d%d", &k, &g);
a[g] = k;
map<int, int>::iterator temp = a.find(g); //按grad查找当前和尚所在的迭代器
if(temp == a.begin()) printf("%d %d\n", k, (++temp)->second);
else if(temp == a.end()) printf("%d %d\n", k, (--temp)->second);
else{
if(abs((--temp)->first - (++temp)->first) > abs((++temp)->first - (--temp)->first))
printf("%d %d\n", k, (++temp)->second);
else printf("%d %d\n", k, (--temp)->second);
}
}
a.clear();
}
return 0;
}

HDU 4585 Shaolin(STL map)的更多相关文章

  1. HDU 4585 Shaolin (STL map)

    Shaolin Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Sub ...

  2. HDU 4585 Shaolin (STL)

    Shaolin Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Sub ...

  3. HDU 1263 水果 (STL map)

    水果 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submissi ...

  4. HDU 4585 Shaolin(Treap找前驱和后继)

    Shaolin Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others) Total Su ...

  5. HDU 4585 Shaolin(水题,STL)

    Shaolin Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Sub ...

  6. HDU 2094 产生冠军(STL map)

    产生冠军 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submis ...

  7. hdu 4858 项目管理(STL集装箱)

    项目管理 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submi ...

  8. CodeForces 501B Misha and Changing Handles(STL map)

    Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user ...

  9. 【UVA】10391 Compound Words(STL map)

    题目 题目     分析 自认已经很简洁了,虽说牺牲了一些效率     代码 #include <bits/stdc++.h> using namespace std; set <s ...

随机推荐

  1. 洛谷 P2152 [SDOI2009]SuperGCD (高精度)

    这道题直接写了我两个多小时-- 主要是写高精度的时候还存在着一些小毛病,调了很久 在输入这一块卡了很久. 然后注意这里用while的形式写,不然会炸 最后即使我已经是用的万进制了,但是交上去还是有两个 ...

  2. STM32 HAL库利用DMA实现串口不定长度接收方法

    参考:https://blog.csdn.net/u014470361/article/details/79206352 我这里使用的芯片是 F1 系列的,主要是利用 DMA 数据传输方式实现的,在配 ...

  3. js-DOM操作基本知识

  4. POI 详细介绍

    Apache POI是一个开源的Java读写Excel.WORD等微软OLE2组件文档的项目.目前POI已经有了Ruby版本. 结构: HSSF - 提供读写Microsoft Excel XLS格式 ...

  5. 用​M​y​E​c​l​i​p​s​e​ ​打​包​J​A​R文件

    用​M​y​E​c​l​i​p​s​e​ ​将自己定义标签打​成​J​A​R​包 1.新建一个javaproject 2.将标签有关的java代码拷贝到新建javaproject的一个包中,这时会报错 ...

  6. mysql实战45讲读书笔记(一) 一条SQL查询语句是如何执行的

    我们经常说,看一个事儿千万不要直接陷入细节里,你应该先鸟瞰其全貌,这样能够帮助你从高维度理解问题.同样,对于MySQL的学习也是这样.平时我们使用数据库,看到的通常都是一个整体.比如,你有个最简单的表 ...

  7. Python之Linux下的virtualenv

    在使用 Python 开发的过程中,工程一多,难免会碰到不同的工程依赖不同版本的库的问题: 亦或者是在开发过程中不想让物理环境里充斥各种各样的库,引发未来的依赖灾难. 此时,我们需要对于不同的工程使用 ...

  8. js小知识 正则表达

    js定义正则表达式有两种方式:普通方式,构造函数方式 正则对象是js的内置对象 正则的属性 正则的方法 js中字符串的方法 一.普通方式(双斜杠//方式):var  reg = /表达式/附加参数 表 ...

  9. 解决maven 无法下载java-memcached的依赖问题

    1.进入https://github.com/gwhalin/Memcached-Java-Client/downloads 下载java-memcached的jar包. 2.使用cmd进入maven ...

  10. javascript满天小星星