Codeforces Round \ # 260 (Div. 1) B 문제 (사전 트 리 + DFS + 게임)

B. A Lot of Games
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Andrew, Fedor and Alex are inventive guys. Now they invent the game with strings for two players.
Given a group of n non-empty strings. During the game two players build the word together, initially the word is empty. The players move in turns. On his step player must add a single letter in the end of the word, the resulting word must be prefix of at least one string from the group. A player loses if he cannot move.
Andrew and Alex decided to play this game k times. The player who is the loser of the i-th game makes the first move in the (i + 1)-th game. Guys decided that the winner of all games is the player who wins the last (k-th) game. Andrew and Alex already started the game. Fedor wants to know who wins the game if both players will play optimally. Help him.
Input
The first line contains two integers, n and k (1 ≤ n ≤ 105; 1 ≤ k ≤ 109).
Each of the next n lines contains a single non-empty string from the given group. The total length of all strings from the group doesn't exceed 105. Each string of the group consists only of lowercase English letters.
Output
If the player who moves first wins, print "First", otherwise print "Second" (without the quotes).
Sample test(s)
input
2 3
a
b

output
First

input
3 1
a
b
c

output
First

input
1 2
ab

output
Second

이 문 제 는 뭐라고 할 까요? 사전 트 리 + 게임 유형 이 라 고 할 수 있 죠?
사고방식: 먼저 한 판 과 선수 의 승부 상황 에 만 관심 을 가지 고 제 시 된 문자열 로 사전 트 리 를 만 든 다음 에 사전 트 리 에서 각각 두 번 의 DFS 를 사용 하면 이 기 려 면 반드시 이 길 수 있다 (성공 하면 1 을 되 돌려 주 고 그렇지 않 으 면 0 이다. 변수 ans 로
지 려 면 반드시 질 수 있 음 을 나타 낸다.
한 판 의 상황 이 해결 되 었 습 니 다. 그러면 K 국 에 보급 되 었 습 니 다. 문 제 는 K 번 째 로 이 겨 야 이 기 는 것 입 니 다. 그러면 지금 ans 와 ans2 의 값 으로 나 누 어 토론 합 니 다.
1. ans = 1 과 ans2 = 1. 즉, 어느 한 판 에 먼저 이기 고 싶 으 면 반드시 이 길 수 있 고 지고 싶 어도 질 수 있다. 그러면 먼저 K - 1 번 에 지 는 것 을 선택 하고 마지막 에 이 기 는 것 을 선택 할 수 있 기 때문에 이런 상황 에서 먼저 이 길 수 있다.
2. ans = 0, 이런 상황 은 ans2 의 값 을 막론하고 마지막 에는 반드시 후수 가 이 길 것 이다. 왜냐하면 후수 가 선 수 를 계속 질 수 있 기 때문이다.
3. ans = 1 및 ans2 = 0, 이것 은 K 의 패 리 티 로 나 누 어 토론 해 야 합 니 다. 지금 K 취, 1 또는 2 만 토론 한다 고 가정 합 니 다.
  
   1. 만약 에 K 가 1 을 취하 면 한 판 밖 에 없 는 상황 에 대해 서 는 반드시 먼저 이 길 것 이다. K 는 3, 5, 7 까지 보급 되 고.............................................
   
   2. 만약 에 K 가 2 를 취하 면 첫 번 째 판 에서 먼저 이 길 수 밖 에 없다. 그러면 두 번 째 판 은 후수 가 먼저 바둑 을 둘 차례 이다. 분명히 후수 가 이 길 것 이다. K 는 4, 6, 8 까지 보급 되 었 다.
디 테 일 코드 봐 요 ~ ~
#include 
#include 
#include 
#include 
using namespace std;

int n,k;
char s[100010];
int ch[100010][27];
int val[100010];
int sz;
int ans[3];

void insert1()
{
    int u=0;
    int n=strlen(s);
    int i;
    for(i=0;i

좋은 웹페이지 즐겨찾기