-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTrie.cpp
158 lines (139 loc) · 2.91 KB
/
Trie.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//#define SUBMIT
#ifdef SUBMIT
#define LOGLEVEL 0
#define NDEBUG
#else
#define LOGLEVEL 1
#endif
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <array>
#include <type_traits>
#include <queue>
#include <stack>
#include <functional>
using namespace std;
#define LOG(l, x) if (l <= LOGLEVEL) cout << x << endl
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF ((int)2E9L)
#define INT64_INF ((int64)1E18L)
#define MOD 1000000007
int MODP(int64 x) {
int r = x % MOD;
if (r < 0) r += MOD;
return r;
}
template <class T> class Trie {
vector<vector<pair<int, T>>> child;
int root;
int n;
public:
Trie() {
reset();
}
void reset() {
child.clear();
child.push_back({});
root = 0;
n = 1;
}
const vector<pair<int, T>>& getChild(int u) const {
return child[u];
}
template<class Iterator> void addWord(Iterator begin, Iterator end) {
int curNode = root;
for (auto it = begin; it != end; ++it) {
T c = *it;
bool found = false;
for (auto &v: child[curNode]) {
if (v.second == c) {
curNode = v.first;
found = true;
break;
}
}
if (!found) {
++n;
child.push_back({});
child[curNode].push_back(make_pair(n - 1, c));
curNode = n - 1;
}
}
}
int getRoot() const {
return root;
}
int getSize() const {
return n;
}
};
void testGen() {
freopen("biginput1.txt", "w", stdout);
fclose(stdout);
}
Trie<char> trie;
vector<bool> win;
vector<bool> lose;
void dfs(int u) {
win[u] = false;
if (trie.getChild(u).size() == 0) {
lose[u] = true;
} else {
lose[u] = false;
}
for (auto &v: trie.getChild(u)) {
LOG(1, "Edge " << u << " " << v.first << " " << v.second);
dfs(v.first);
if (!win[v.first]) {
win[u] = true;
}
if (!lose[v.first]) {
lose[u] = true;
}
}
}
// Sample: CF260_div2_D
int main() {
#ifndef SUBMIT
freopen("input5.txt", "r", stdin);
#endif
int n, k;
cin >> n >> k;
repeat(n) {
string s;
cin >> s;
trie.addWord(s.begin(), s.end());
}
LOG(1, trie.getSize());
win.resize(trie.getSize());
lose.resize(trie.getSize());
dfs(trie.getRoot());
bool canWin = win[trie.getRoot()];
bool canLose = lose[trie.getRoot()];
if (canWin) {
if (canLose) {
cout << "First";
} else if (k % 2 == 1) {
cout << "First";
} else {
cout << "Second";
}
} else {
cout << "Second";
}
return 0;
}