博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF---(452)A. Eevee
阅读量:7035 次
发布时间:2019-06-28

本文共 2327 字,大约阅读时间需要 7 分钟。

A. Eevee
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are solving the crossword problem K from IPSC 2014. You solved all the clues except for one: who does Eevee evolve into? You are not very into pokemons, but quick googling helped you find out, that Eevee can evolve into eight different pokemons: Vaporeon, Jolteon, Flareon, Espeon, Umbreon, Leafeon, Glaceon, and Sylveon.

You know the length of the word in the crossword, and you already know some letters. Designers of the crossword made sure that the answer is unambiguous, so you can assume that exactly one pokemon out of the 8 that Eevee evolves into fits the length and the letters given. Your task is to find it.

Input

First line contains an integer n (6 ≤ n ≤ 8) – the length of the string.

Next line contains a string consisting of n characters, each of which is either a lower case english letter (indicating a known letter) or a dot character (indicating an empty cell in the crossword).

Output

Print a name of the pokemon that Eevee can evolve into that matches the pattern in the input. Use lower case letters only to print the name (in particular, do not capitalize the first letter).

Sample test(s)
Input
7 j......
Output
jolteon
Input
7 ...feon
Output
leafeon
Input
7 .l.r.o.
Output
flareon
Note

Here's a set of names in a form you can paste into your solution:

["vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"]

{"vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"}

 

给你一个稀疏的字符串,告诉你长度,然后要你在已知的8个字符串下进行匹配..........

代码:

1 #include
2 #include
3 #include
4 using namespace std; 5 struct node{ 6 int len; 7 char ss[9]; 8 }; 9 node str[]={10 {
8,"vaporeon"},11 {
7,"jolteon"},12 {
7,"flareon"},13 {
6, "espeon"},14 {
7,"umbreon"},15 {
7,"leafeon"},16 {
7,"glaceon"},17 {
7,"sylveon"}18 };19 int main()20 {21 int n;22 char ss[10];23 //freopen("test.in","r",stdin);24 while(scanf("%d%s",&n,ss)!=EOF)25 for(int i=0;i<8;i++){26 if(n==str[i].len){27 bool flag=true;28 for(int j=0;j
View Code

 

转载地址:http://kejal.baihongyu.com/

你可能感兴趣的文章
AWStats: Apache/IIS的日志分析工具
查看>>
Freebsd系统升级
查看>>
QuickPart : 用户控件包装器 for SharePoint Server 2007
查看>>
使用DPM2007备份还原Exchange2007邮箱数据库
查看>>
数字签名原理
查看>>
DIY迷你邮件客户端开发手记(二)
查看>>
云MongoDB网络安全策略和权限管理体系
查看>>
[CTO札记]招聘出题
查看>>
企业网络及应用层安全防护技术精要(Part I)
查看>>
新瓶装旧酒的苹果,是否回走30年前的老路
查看>>
Rafy 领域实体框架 - 树型实体功能(自关联表)
查看>>
java中使用junit测试
查看>>
计算机网络原理相关面试问题
查看>>
flex游戏编程性能优化
查看>>
美国诚实签经验——是不是户籍和常住作业地在一起?是不是有居住证?明白居住证信息吗?英语超卓,应变能力强,有幽默感 10分...
查看>>
VC++速记
查看>>
D3D中设备丢失的处理
查看>>
由鸣人的螺旋丸想到的
查看>>
Python牛刀小试(四)--代码解析(邮件发送功能)
查看>>
Sharing A Powerful Tool For Calculate Code Lines
查看>>