B - Shiritori

本文介绍了一个简单的程序,用于检查玩家是否遵守了Shiritori游戏的规则。该程序接收一系列单词作为输入,并验证这些单词是否符合游戏的要求:每个单词必须以之前单词的最后一个字符开始,并且所有单词都不能重复。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Time limit : 2sec / Memory limit : 1024MB

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, Wi, 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≤N≤100.
  • Wi 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:

N
W1
W2
:
WN

Output

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


Sample Input 1

4
hoge
english
hoge
enigma

Sample Output 1

No

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


Sample Input 2

9
basic
c
cpp
php
python
nadesico
ocaml
lua
assembly

Sample Output 2

Yes

Sample Input 3

Copy

8
a
aa
aaa
aaaa
aaaaa
aaaaaa
aaa
aaaaaaa

Sample Output 3

No

Sample Input 4

3
abc
arc
agc

Sample Output 4

No

#include <iostream>
#include <cstring>
#include <string>
using namespace std;
const int N=100+10;
char a[N][15];
int main()
{
	int n;
	bool pd=true;
	cin>>n;
	memset(a,0,sizeof(a));
	for(int i=0;i<n;i++)
		cin>>a[i];
	for(int i=0;i<n-1;i++)
	{
		int l=strlen(a[i]);
		if(a[i][l-1]!=a[i+1][0])
		{
			cout<<"No";
			pd=false; 
			break;
		}	
		for(int j=i+1;j<n;j++)
		{
			if(strcmp(a[i],a[j])==0)
			{
				cout<<"No";
				pd=false;
				break;
			}
		} 
	}
	if(pd)
	cout<<"Yes";	
    return 0;		
}

 

内容概要:本文档为VMware虚拟机的安装提供了详细的指导。首先明确了安装前计算机应满足的条件,包括操作系统、处理器、内存和硬盘空间的要求。接着介绍了从VMware官网下载Workstation Player的步骤,它是适用于个人用户的免费虚拟机软件。文档详细列出了安装Workstation Player的具体操作流程,包括安装向导指引、许可协议接受以及安装路径的选择。然后重点讲解了创建新虚拟机的步骤,涵盖虚拟机类型的选取、操作系统镜像文件的选择、资源配置及网络设置等。此外,还阐述了操作系统在虚拟机中的安装方法,以及安装后VMware Tools的配置以提升性能和兼容性。最后针对可能出现的问题给出了常见解决方案,如虚拟化技术未开启、虚拟机无法启动和性能问题等,确保用户能顺利完成虚拟机的安装与配置。; 适合人群:对虚拟机有需求但缺乏安装经验的个人用户,尤其是想要进行多操作系统环境下的开发、测试工作的技术人员。; 使用场景及目标:①帮助用户在本地计算机上搭建不同操作系统的运行环境;②为开发、测试等工作提供便捷的虚拟化平台;③解决安装过程中可能遇到的各种问题,确保虚拟机稳定运行。; 其他说明:本教程为简化版本,实际操作时可根据自身情况调整相关设置。若遇困难,可参考官方文档或寻求专业帮助。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值