传统题 1000ms 256MiB

B - Shiritori

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

B - Shiritori

Score : $200$ points

Problem Statement

Takahashi is practicing shiritori alone again today.

Shiritori is a game as follows:

  • In the first turn, a player announces any one word.
  • In the subsequent turns, a player announces a word that satisfies the following conditions:
    • That word is not announced before.
    • The first character of that word is the same as the last character of the last word announced.

In this game, he is practicing to announce as many words as possible in ten seconds.

You are given the number of words Takahashi announced, $N$, and the $i$-th word he announced, $W_i$, for each $i$. Determine if the rules of shiritori was observed, that is, every word announced by him satisfied the conditions.

Constraints

  • $N$ is an integer satisfying $2 \leq N \leq 100$.
  • $W_i$ is a string of length between $1$ and $10$ (inclusive) consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

NN

W1W_1

W2W_2

::

WNW_N

Output

If every word announced by Takahashi satisfied the conditions, print Yes; otherwise, print No.


4
hoge
english
hoge
enigma
No

As hoge is announced multiple times, the rules of shiritori was not observed.


9
basic
c
cpp
php
python
nadesico
ocaml
lua
assembly
Yes

8
a
aa
aaa
aaaa
aaaaa
aaaaaa
aaa
aaaaaaa
No

3
abc
arc
agc
No

2024寒假入门组刷题营(二)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-1-30 13:30
结束于
2024-1-30 15:30
持续时间
2 小时
主持人
参赛人数
9