Chess For Three
Alex, Bob and Carl will soon participate in a team chess tournament. Since they are all in the same team, they have decided to practise really hard before the tournament. But it's a bit difficult for them because chess is a game for two players, not three.
So they play with each other according to following rules:
- Alex and Bob play the first game, and Carl is spectating;
- When the game ends, the one who lost the game becomes the spectator in the next game, and the one who was spectating plays against the winner.
Alex, Bob and Carl play in such a way that there are no draws.
Today they have played n games, and for each of these games they remember who was the winner. They decided to make up a log of games describing who won each game. But now they doubt if the information in the log is correct, and they want to know if the situation described in the log they made up was possible (that is, no game is won by someone who is spectating if Alex, Bob and Carl play according to the rules). Help them to check it!
Input
The first line contains one integer n (1 ≤ n ≤ 100) — the number of games Alex, Bob and Carl played.
Then n lines follow, describing the game log. i-th line contains one integer ai (1 ≤ ai ≤ 3) which is equal to 1 if Alex won i-th game, to 2 if Bob won i-th game and 3 if Carl won i-th game.
OutputPrint YES if the situation described in the log was possible. Otherwise print NO.
Examples3 1 1 2
YES
2 1 2
NO
In the first example the possible situation is:
- Alex wins, Carl starts playing instead of Bob;
- Alex wins, Bob replaces Carl;
- Bob wins.
The situation in the second example is impossible because Bob loses the first game, so he cannot win the second one.
code:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main(){
int n;
int a[110];
scanf("%d",&n);
for(int i = 0; i < n; i++){
scanf("%d",&a[i]);
}
int ing1 = 1,ing2 = 2;//参赛者
int watch = 3;//观众
int flag = 1;
for(int i = 0; i < n; i++){
if(a[i] == ing1){//第一个赢
swap(ing2,watch);//旁观者和输的交换
}
else if(a[i] == ing2){//第二个赢同理
swap(ing1,watch);
}
else{
flag = 0;
break;
}
}
if(flag) printf("YES\n");
else printf("NO\n");
return 0;
}

本文介绍了一个三人棋赛的模拟程序,该程序通过一系列比赛记录来验证比赛过程是否符合既定规则。具体而言,三名选手轮流进行比赛,失败者成为下一局的观众,而观众则取代失败者继续比赛。
1万+

被折叠的 条评论
为什么被折叠?



