首页 > 试题广场 >

魔咒词典

[编程题]魔咒词典
  • 热度指数:11912 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
    哈利波特在魔法学校的必修课之一就是学习魔咒。据说魔法世界有100000种不同的魔咒,哈利很难全部记住,但是为了对抗强敌,他必须在危急时刻能够调用任何一个需要的魔咒,所以他需要你的帮助。     给你一部魔咒词典。当哈利听到一个魔咒时,你的程序必须告诉他那个魔咒的功能;当哈利需要某个功能但不知道该用什么魔咒时,你的程序要替他找到相应的魔咒。如果他要的魔咒不在词典中,就输出“what?”

输入描述:
    首先列出词典中不超过100000条不同的魔咒词条,每条格式为:

    [魔咒] 对应功能

    其中“魔咒”和“对应功能”分别为长度不超过20和80的字符串,字符串中保证不包含字符“[”和“]”,且“]”和后面的字符串之间有且仅有一个空格。词典最后一行以“@END@”结束,这一行不属于词典中的词条。
    词典之后的一行包含正整数N(<=1000),随后是N个测试用例。每个测试用例占一行,或者给出“[魔咒]”,或者给出“对应功能”。


输出描述:
    每个测试用例的输出占一行,输出魔咒对应的功能,或者功能对应的魔咒。如果魔咒不在词典中,就输出“what?”
示例1

输入

[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

输出

light the wand
accio
what?
what?
头像 Huster水仙
发表于 2023-01-31 21:56:06
字符串中可能有空格,分界字符选']',不要选空格 凡是字符串可能含空格的,用getline(cin,s)之前,检查前面缓冲区是否需要getchar() #include<iostream> #include<string> #include<map> using 展开全文
头像 牛客774160366号
发表于 2023-06-27 14:38:29
#include <stdio.h> #include <string.h> #include <stdlib.h> //思路:这题学到的知识太多了 // 1.超大数组放在main函数外部定义,不然自动退出 //2.c语言提供strcspn函数可以返回你在字符串中 展开全文
头像 rainman_
发表于 2023-03-05 09:40:05
#include <iostream> #include <map> #include <string> #include <cstdio> using namespace std; map<string, string> dict; 展开全文
头像 普罗列塔丽亚
发表于 2022-01-14 18:48:49
这题太坑了,注意格式,]后面还有个空格 cin直接读会被空格隔断,需要用cin.getline读入 getline不能直接写入string,要先写到char[],再赋给string为map作key cin>>n之后缓冲区里还有一个\n,需要ignore()掉,否则会被g 展开全文
头像 易水寒learning
发表于 2022-01-24 21:47:05
#include<iostream> #include<cstdio> #include<map> #include<string> using namespace std; map<string, string> dict 展开全文
头像 CooKing
发表于 2023-03-12 10:44:38
#include <iostream> #include <map> #include <string> #include <cstdio> using namespace std; map<string, string> dict; 展开全文
头像 ChaChaCharis
发表于 2023-03-13 10:00:30
#include <cstdio> #include <iostream> #include <string> #include <map> using namespace std; int main(){ string str; 展开全文
头像 智慧君
发表于 2023-04-08 21:01:52
//算法思路:先构建库,然而切分,再次构建Map,最后读取。 //substr(0,2) 取出子串 而且是双闭区间!! //fgets(line,200,stdin) 读入了 \n 换行符 //fgets后面用 line1.pop_back() 去掉最后的\n /* 1.输入 int n, 展开全文
头像 华水计科26713
发表于 2023-03-16 20:52:47
#include <cstddef> #include <cstdio> #include <iostream> #include <map> #include <string> #include <bits/stdc++.h> 展开全文
头像 理性的追梦人躺平又起来了
发表于 2023-04-05 00:05:24
#include<cstdio> #include<string> #include<map> using namespace std; int main(){ map<string,string> dict; //构建词典 while (tru 展开全文

问题信息

难度:
44条回答 6352浏览

热门推荐

通过挑战的用户

查看代码