Codeforces Round #459 (Div. 2):B. Radio Station
B. Radio Station
time limit per test2 seconds 
memory limit per test256 megabytes
Problem Dsecription
As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin’s task was to add comments to nginx configuration for school’s website. The school has n servers. Each server has a name and an ip (names aren’t necessarily unique, but ips are). Dustin knows the ip and name of each server. For simplicity, we’ll assume that an nginx command is of form “command ip;” where command is a string consisting of English lowercase letter only, and ip is the ip of one of school servers. 
Each ip is of form “a.b.c.d” where a, b, c and d are non-negative integers less than or equal to 255 (with no leading zeros). The nginx configuration file Dustin has to add comments to has m commands. Nobody ever memorizes the ips of servers, so to understand the configuration better, Dustin has to comment the name of server that the ip belongs to at the end of each line (after each command). More formally, if a line is “command ip;” Dustin has to replace it with “command ip; #name” where name is the name of the server with ip equal to ip.
Dustin doesn’t know anything about nginx, so he panicked again and his friends asked you to do his task for him.
Input
The first line of input contains two integers n and m (1 ≤ n, m ≤ 1000).
The next n lines contain the names and ips of the servers. Each line contains a string name, name of the server and a string ip, ip of the server, separated by space (1 ≤ |name| ≤ 10, name only consists of English lowercase letters). It is guaranteed that all ip are distinct.
The next m lines contain the commands in the configuration file. Each line is of form “command ip;” (1 ≤ |command| ≤ 10, command only consists of English lowercase letters). It is guaranteed that ip belongs to one of the n school servers.
Output
Print m lines, the commands in the configuration file after Dustin did his task.
Examples
input
2 2 
main 192.168.0.2 
replica 192.168.0.1 
block 192.168.0.1; 
proxy 192.168.0.2;
output
block 192.168.0.1; #replica 
proxy 192.168.0.2; #main
input
3 5 
google 8.8.8.8 
codeforces 212.193.33.27 
server 138.197.64.57 
redirect 138.197.64.57; 
block 8.8.8.8; 
cf 212.193.33.27; 
unblock 8.8.8.8; 
check 138.197.64.57;
output
redirect 138.197.64.57; #server 
block 8.8.8.8; #google 
cf 212.193.33.27; #codeforces 
unblock 8.8.8.8; #google 
check 138.197.64.57; #server
解题心得:
- 题目说了一大堆其实题意很简单,给你n个ip地址,每个地址有一个对应的名字,然后m次询问,每次询问给你一个ip地址,叫你输出ip地址的名字。当然还有一些乱七八糟的输出要求。
- 就是一个hash,将每个地址用一个数表示,然后将地址和这个数存起来,每次询问的时候直接去找这个数,然后将地址输出就行了。主要的是考验一个读题的能力。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5+100;
map <string ,string> maps;
string s1;
int n,m,tot=0;
struct NODE
{
    string s;
    long long num;
}node[10000];
int main()
{
   cin>>n>>m;
   for(int i=0;i<n;i++)
   {
       cin>>s1;
       long long x1,x2,x3,x4,ans =0;
       scanf("%lld.%lld.%lld.%lld",&x1,&x2,&x3,&x4);//注意输入的时候控制格式
       ans += x1*233;
       ans = ans*233+x2;
       ans = ans*233+x3;
       ans = ans*233+x4;
       node[tot].num = ans;
       node[tot++].s = s1;
   }
   for(int i=0;i<m;i++)
   {
       cin>>s1;
       long long x1,x2,x3,x4,ans=0;
       scanf("%lld.%lld.%lld.%lld;",&x1,&x2,&x3,&x4);
       cout<<s1<<" ";
       printf("%lld.%lld.%lld.%lld; #",x1,x2,x3,x4);
       ans = x1*233;
       ans = ans*233+x2;
       ans = ans*233+x3;
       ans = ans*233+x4;
       for(int i=0;i<tot;i++)
           if(node[i].num == ans)
           {
               cout<<node[i].s<<endl;
               break;
           }
   }
   return 0;
}
Codeforces Round #459 (Div. 2):B. Radio Station的更多相关文章
- 【Codeforces Round #459 (Div. 2) B】 Radio Station
		[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 用map模拟一下映射就好了. [代码] #include <bits/stdc++.h> using namespace ... 
- Codeforces Round #459 (Div. 2):D. MADMAX(记忆化搜索+博弈论)
		D. MADMAX time limit per test1 second memory limit per test256 megabytes Problem Description As we a ... 
- Codeforces Round #459 (Div. 2)
		A. Eleven time limit per test 1 second memory limit per test 256 megabytes input standard input outp ... 
- Codeforces Round #482 (Div. 2) : Kuro and GCD and XOR and SUM (寻找最大异或值)
		题目链接:http://codeforces.com/contest/979/problem/D 参考大神博客:https://www.cnblogs.com/kickit/p/9046953.htm ... 
- Codeforces Round #482 (Div. 2) :B - Treasure Hunt
		题目链接:http://codeforces.com/contest/979/problem/B 解题心得: 这个题题意就是三个人玩游戏,每个人都有一个相同长度的字符串,一共有n轮游戏,每一轮三个人必 ... 
- Codeforces Round #532 (Div. 2):F. Ivan and Burgers(贪心+异或基)
		F. Ivan and Burgers 题目链接:https://codeforces.com/contest/1100/problem/F 题意: 给出n个数,然后有多个询问,每次回答询问所给出的区 ... 
- Codeforces Round #511 (Div. 2):C. Enlarge GCD(数学)
		C. Enlarge GCD 题目链接:https://codeforces.com/contest/1047/problem/C 题意: 给出n个数,然后你可以移除一些数.现在要求你移除最少的数,让 ... 
- Codeforces Round #514 (Div. 2):D. Nature Reserve(二分+数学)
		D. Nature Reserve 题目链接:https://codeforces.com/contest/1059/problem/D 题意: 在二维坐标平面上给出n个数的点,现在要求一个圆,能够容 ... 
- Codeforces Round #459 (Div. 2) D. MADMAX  DFS+博弈
		D. MADMAX time limit per test 1 second memory limit per test 256 megabytes input standard input outp ... 
随机推荐
- Maven的学习资料收集--(一)环境搭建
			这几天在做项目的时候用到了maven,但是自己没有从来没有接触过,所以咋网上找资料,终于找到了一下的资料,这个是别人总结的,我只是转载过来积累.请尊重原创. 官网地址:http://maven.apa ... 
- JavaSE之Java基础(3)
			11.什么是值传递和引用传递? 值传递:方法调用时,实际参数把它的值传递给对应的形式参数,方法执行中形式参数值的改变不影响实际参数的值. 引用传递:也称为传地址.方法调用时,实际参数的引用被传递给方法 ... 
- 解决在eclipse中导入项目名称已存在的有关问题
			新建项目-Import-File System-找到相应的文件夹-Overwrite existing resources without warning打钩,选中项目即可 
- Teradata 认证系列 - 3. 关系型数据库的概念
			本课的学习目标 定义关系型数据库关联的术语 讨论主键的功能 讨论外键的功能 列出关系型数据库的优势 描述星型架构和第三范式数据模型的区别 什么是数据库?数据库是一个应用永久保存数据的集合表现在: 逻辑 ... 
- 学习笔记:《JavaScript高级程序设计》
			第1章 JavaScript简介 1.一个完整的JavaScript实现应该由三部分组成:核心(ECMAScript),文档对象模型(DOM)和浏览器对象模型(BOM). 2.Web浏览器只是ECMA ... 
- agc015F - Kenus the Ancient Greek(结论题)
			题意 题目链接 $Q$组询问,每次给出$[x, y]$,定义$f(x, y)$为计算$(x, y)$的最大公约数需要的步数,设$i \leqslant x, j \leqslant y$,求$max( ... 
- javascript Boolean
			Boolean 对象表示两个值:true 或 false 创建Boolean对象的语法 new Boolean(value) //构造函数 Boolean(value; //转换函数 参数 参数va ... 
- CSS文档优化
			首先了解下CSS的渲染逻辑,它是从标记的最后一位开始搜索的,例如:.myclass li a,首选它会遍历所有的<a>,然后看哪些<a>之前有<li>,然后再看哪些 ... 
- Eucalyptus管理页面密码设置
			桉树环境什么的都已经是配置好了的,但是过了一段时间不用,也不知道密码是什么了,看着下面的页面也不知道如何进去,这里我们通过命令行的方式重置用户名和密码信息. 登陆clc所在机器,输入下命令: euar ... 
- python数据类型、输入输出、运算符、条件判断、循环
			变量以及类型 变量:存储程序运行中的数据,变量有3个要素:变量名.变量类型.变量值.python属于弱类型语言,不需要声明变量类型. [root@localhost python]# ipython3 ... 
