代碼實現問題 [CodeForces-893A] [Problem A]

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.

Output

Print YES if the situation described in the log was possible. Otherwise print NO.

Example
Input
3
1
1
2
Output
YES
Input
2
1
2
Output
NO
Note

In the first example the possible situation is:

  1. Alex wins, Carl starts playing instead of Bob;
  2. Alex wins, Bob replaces Carl;
  3. Bob wins.

The situation in the second example is impossible because Bob loses the first game, so he cannot win the second one.

題意:1,2,3個人,1,2比賽,3等待,1贏之後,1,3比賽,2等待。問是否有可能是輸入的贏的方式。

#include<stdio.h>
#include<string.h>
int main()
{
	int n;
	int a[105];
	int vis[4];
	while(~scanf("%d",&n))
	{
		memset(vis,0,sizeof(vis));
		int flag = 0;
		vis[1]=1,vis[2]=1;
		for(int i = 0; i < n; i++)
			scanf("%d",&a[i]);
		for(int i = 0; i < n; i++)
		{
			if(vis[a[i]] == 1)//反轉
			{
				vis[a[i]] = 0;
				for(int j = 1; j <= 3; j++)
					vis[j] = !vis[j];
			}
			else
			{
				flag = 1;
				break;
			}
		}
		if(flag == 0)
			printf("YES\n");
		else
			printf("NO\n");
	}
} 

發佈了46 篇原創文章 · 獲贊 6 · 訪問量 5445
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章