魔咒词典
Time Limit: 8000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 16775    Accepted Submission(s): 3963
Problem Description
哈利波特在魔法学校的必修课之一就是学习魔咒。据说魔法世界有100000种不同的魔咒,哈利很难全部记住,但是为了对抗强敌,他必须在危急时刻能够调用任何一个需要的魔咒,所以他需要你的帮助。
给你一部魔咒词典。当哈利听到一个魔咒时,你的程序必须告诉他那个魔咒的功能;当哈利需要某个功能但不知道该用什么魔咒时,你的程序要替他找到相应的魔咒。如果他要的魔咒不在词典中,就输出“what?”
 
Input
首先列出词典中不超过100000条不同的魔咒词条,每条格式为:
[魔咒] 对应功能
其中“魔咒”和“对应功能”分别为长度不超过20和80的字符串,字符串中保证不包含字符“[”和“]”,且“]”和后面的字符串之间有且仅有一个空格。词典最后一行以“@END@”结束,这一行不属于词典中的词条。
词典之后的一行包含正整数N(<=1000),随后是N个测试用例。每个测试用例占一行,或者给出“[魔咒]”,或者给出“对应功能”。
 
Output
每个测试用例的输出占一行,输出魔咒对应的功能,或者功能对应的魔咒。如果魔咒不在词典中,就输出“what?”
 
Sample Input
[expelliarmus] the disarming charm
[rictusempra] send a jet of silver light to hit the enemy
[tarantallegra] control the movement of one's legs
[serpensortia] shoot a snake out of the end of one's wand
[lumos] light the wand
[obliviate] the memory charm
[expecto patronum] send a Patronus to the dementors
[accio] the summoning charm
@END@
4
[lumos]
the summoning charm
[arha]
take me to the sky
 
Sample Output
light the wand
accio
what?
what?

C/C++:

 #include <map>
#include <queue>
#include <cmath>
#include <vector>
#include <string>
#include <cstdio>
#include <cstring>
#include <climits>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
using namespace std;
const int Mod = 1e9 + ; char str[], s1[], s2[];
map<pair<int, int>, string> m0;
map<pair<int, int>, string> m1; int get_hash0(char *s)
{
int sum = ;
for (int i = ; s[i]; ++ i)
sum = (sum * % Mod + s[i]) % Mod;
return sum;
} int get_hash1(char *s)
{
int sum = ;
for (int i = ; s[i]; ++ i)
sum = (sum * % Mod + s[i]) % Mod;
return sum;
} int main()
{
int n, a, b;
m0.clear();
m1.clear();
ios::sync_with_stdio(false);
while (gets(str), str[] != '@')
{
a = , b = ;
for (a, b; str[a] != ']'; ++ a, ++ b)
s1[b] = str[a];
s1[b] = ;
b = , a += ;
for (a, b; str[a]; ++ a, ++ b)
s2[b] = str[a];
s2[b] = ;
a = get_hash0(s1), b = get_hash1(s1);
m0[make_pair(a, b)] = s2;
a = get_hash0(s2), b = get_hash1(s2);
m1[make_pair(a, b)] = s1;
}
scanf("%d", &n);
getchar();
while (n --)
{
gets(str);
if (str[] == '[')
{
str[strlen(str) - ] = ;
a = get_hash0(str + ), b = get_hash1(str + );
if (m0.find(make_pair(a, b)) != m0.end()) cout <<m0[make_pair(a, b)] <<endl;
else puts("what?");
}
else
{
str[strlen(str)] = ;
a = get_hash0(str), b = get_hash1(str);
if (m1.find(make_pair(a, b)) != m1.end()) cout <<m1[make_pair(a, b)] <<endl;
else puts("what?");
}
}
return ;
}

最新文章

  1. VMware 中如何打开U盘弹出U盘或者移动硬盘的(两种方法)
  2. Unity3D热更新全书-脚本(三) C#LightEvil语法与调试
  3. Java爬虫,信息抓取的实现
  4. TX Textcontrol 使用总结五——添加图片
  5. hdu 1044(bfs+状压)
  6. Android学习笔记12:图像渲染(Shader)
  7. Python学习 - 编写一个简单的web框架(一)
  8. 平衡树(AVL)详解
  9. Java基础知识强化25:Java创建对象的四种方式
  10. OD: ASLR
  11. jQuery中使用 .html() function在IE8和9中显示不正常源码中多出sizset和sizcache
  12. 学习php常用算法
  13. BZOJ 1114 Number theory(莫比乌斯反演+预处理)
  14. 自定义MVC框架---第二章
  15. java并发包分析之———volitale
  16. MessageDigest类
  17. HTML中的坐标系及其在MouseEvent和元素Box中的应用
  18. Learning-Python【30】:基于UDP协议通信的套接字
  19. C++ map&lt;key , value&gt; key值为指针
  20. npm教程_脚手架原理以及bootstrap引入

热门文章

  1. PHP array_mulitsort
  2. CSS核心问题
  3. Pycharm 常用快捷键大全
  4. 【RabbitMQ 实战指南】一 死信队列
  5. 像使用SQL一样对List对象集合进行排序
  6. (day29) 进程互斥锁 + 线程
  7. day10整理(面对对象,过程,类和对象)
  8. SpringBoot与热部署整合(五)
  9. 外星人R7 1080Ti 装ubuntu两个巨坑
  10. Arthas - Java 线上问题定位处理的终极利器