codeforces 893A Chess For Three 模擬
阿新 • • 發佈:2017-11-26
++i div esp mar wap false name down 代碼
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 893A Chess For Three 模擬