前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CF---(452)A. Eevee

CF---(452)A. Eevee

作者头像
Gxjun
发布2018-03-26 10:25:55
1K0
发布2018-03-26 10:25:55
举报
文章被收录于专栏:mlml

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

代码语言:javascript
复制
7 j......

Output

代码语言:javascript
复制
jolteon

Input

代码语言:javascript
复制
7 ...feon

Output

代码语言:javascript
复制
leafeon

Input

代码语言:javascript
复制
7 .l.r.o.

Output

代码语言:javascript
复制
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个字符串下进行匹配..........

代码:

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 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<n;j++){
29               if(ss[j]!='.'&&ss[j]!=str[i].ss[j]){
30                  flag=false;
31                    break;
32                 }
33             }
34             if(flag){
35              printf("%s\n",str[i].ss);
36              break;
37             }
38           }
39       }
40   return 0;
41 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-08-18 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档