codeforces 893AChess For Three 模拟
Posted lemonsbiscuit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 893AChess For Three 模拟相关的知识,希望对你有一定的参考价值。
893A Chess For Three
思路:
直接模拟即可,第一盘永远是A与B开始
代码:
#include <bits/stdc++.h>
using namespace std;
#define _for(i,a,b) for(int i=(a); i<(b); ++i)
#define _rep(i,a,b) for(int i=(a); i<=(b); ++i)
int n,num,a[4];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin>>n;
_rep(i,1,3) a[i]=i;
_rep(i,1,n) {
cin>>num;
if(a[1]!=num&&a[2]!=num) {
cout<<"NO"<<endl;
return 0;
}
if(a[1]==num) {
swap(a[2],a[3]);
} else {
swap(a[1],a[3]);
}
}
cout<<"YES"<<endl;
return 0;
}
以上是关于codeforces 893AChess For Three 模拟的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 893B Beautiful Divisors 打表
CodeForces - 893B Beautiful Divisors
codeforces 893D Credit Card 贪心 思维