A. Circle of Students(遍历匹配)Codeforces Round #579 (Div. 3)
程序员文章站
2022-06-27 11:52:34
...
原题链接: https://codeforces.com/contest/1203/problem/A
测试样例
input
5
4
1 2 3 4
3
1 3 2
5
1 2 3 5 4
1
1
5
3 2 1 5 4
output
YES
YES
NO
YES
YES
题意: 给你一个圆位置排列,判断他们是否可以开始圆舞。(条件为顺时针或者逆时针是 1 1 1到 n n n的排列。)
解题思路: 开一个两倍数组将首尾连接起来,判断是否有这种排列存在即可。简单遍历。
AC代码
/*
*邮箱:aaa@qq.com
*blog:https://me.csdn.net/hzf0701
*注:文章若有任何问题请私信我或评论区留言,谢谢支持。
*
*/
#include<bits/stdc++.h> //POJ不支持
#define rep(i,a,n) for (int i=a;i<=n;i++)//i为循环变量,a为初始值,n为界限值,递增
#define per(i,a,n) for (int i=a;i>=n;i--)//i为循环变量, a为初始值,n为界限值,递减。
#define pb push_back
#define IOS ios::sync_with_stdio(false);cin.tie(0); cout.tie(0)
#define fi first
#define se second
#define mp make_pair
using namespace std;
const int inf = 0x3f3f3f3f;//无穷大
const int maxn = 1e5;//最大值。
typedef long long ll;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
//*******************************分割线,以上为自定义代码模板***************************************//
int t,n;
int main(){
//freopen("in.txt", "r", stdin);//提交的时候要注释掉
IOS;
while(cin>>t){
while(t--){
cin>>n;
vector<int> nums(n+1);
rep(i,1,n){
cin>>nums[i];
}
rep(i,1,n){
nums.pb(nums[i]);
}
bool flag=true;
rep(i,1,2*n){
if(i+n-1>2*n){
break;
}
flag=true;
rep(j,1,n){
if(nums[i+j-1]!=j){
flag=false;
break;
}
}
if(flag)break;
}
if(flag){
cout<<"YES"<<endl;
continue;
}
rep(i,1,2*n){
if(i+n-1>2*n){
break;
}
flag=true;
rep(j,1,n){
if(nums[i+j-1]!=n-j+1){
flag=false;
break;
}
}
if(flag)break;
}
if(flag){
cout<<"YES"<<endl;
}
else{
cout<<"NO"<<endl;
}
}
}
return 0;
}
上一篇: Vuex的基本使用
下一篇: vue push路由报错