Prijateljice
의견: 0
One summer night in Krk, Leona and Zoe went for a walk. On their winding path,
they found a pile of words! Excited by that, they quickly started collecting them:
Leona collected \(n\) words, and Zoe \(m\) words. After admiring them for a while, they
decided to play the following game:
In one move a player says a word from her pile. The player chooses the word in
such a way that the following conditions are met: the word is lexicographically
greater than the previous word, and it begins with the same letter as the previous
word or with the first letter of the English alphabet after it. If a player can’t make a move, she loses.
They alternate turns, and Leona plays first by saying her lexicographically smallest word. If Leona and
Zoe play optimally, determine who wins.
Note: The word \(A\) \(is\) lexicographically smaller than the word \(B\) \(if\) the word \(A\) \(is\) \(a\) prefix \(of\) the word \(B\) \(or\)
\(if\) \(in\) the first position \(in\) which the words \(A\) and \(B\) differ the letter \(in\) \(A\) \(at\) that position comes before the
letter \(in\) \(B\) \(at\) that position.
Subtask 1 (20 points): n, \(m \le 100\), each word contains at most 10 letters
Subtask 2 (30 points): n, \(m \le 1\,000\)
Subtask 3 (60 points): No additional constraints.
The first line contains integers \(n\) and \(m\) (\(1 \le n\), \(m \le 10^{5}\)), the number of Leona’s words, and the number
of Zoe’s words.
The following \(n\) lines contain Leona’s words.
The following \(m\) lines contain Zoe’s words.
Words from the input contain only lowercase letters of the English alphabet, all words are mutually
distinct, their total length is at most \(10^{6}\), and Leona’s and Zoe’s words are lexicographically sorted.
Output Leona or Zoe, the name of the winner.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
1 | 20점 | n, \(m \le 100\), each word contains at most 10 letters |
2 | 30점 | n, \(m \le 1\,000\) |
3 | 60점 | No additional constraints. |
2 1
avokado
dabar
brazilZoe3 3
ananas
atlas
banana
albatros
cikla
nogometLeona2 2
hrvatska
zastava
bijeli
galebLeonaClarification of the first example:
Leona starts with the word avokado, then Zoe continues with her only word brazil. Leona can’t make
any move so she loses.
평가 및 의견
Prijateljice
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Prijateljice