链接:
https://codeforces.com/problemset/problem/1545/A
题意:
长度n的数列,一开始都具有一个状态1,每次可以使相邻两个数字交换,但状态乘-1
能否变成状态全为1,且i<j,ai<=aj;
输入
3
4
4 3 2 5
4
3 3 2 2
5
1 2 3 5 4
输出量
YES
YES
NO
解:
如果要保持状态为1,一次移到两个位置即可,即奇数位和偶数位上的数字固定
奇序列,偶序列,原序列排序,看奇偶序列能不能合成一个按从小到大排序的原序列;
实际代码:
#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int j[100005];
int o[100005];
int sz[100005];
int main()
{
int t;
cin>>t;
for(int f=1;f<=t;f++)
{
int n;
cin>>n;
int jj=0,oo=0;
memset(j,0,sizeof(j));
memset(o,0,sizeof(o));
memset(sz,0,sizeof(sz));
for(int i=1;i<=n;i++)
{
int temp=0;
cin>>temp;
sz[i]=temp;
if(i%2==0)
{
o[++oo]=temp;
}
else j[++jj]=temp;
}
sort(o+1,o+oo+1);
sort(j+1,j+jj+1);
sort(sz+1,sz+n+1);
bool ans=1;
for(int i=1;i<=n;i++)
{
//cout<<sz[i]<<o[i]<<j[i]<<endl;
if(i%2==0)
{
if(o[i/2]!=sz[i])
{
ans=0;break;
}
}
else{
if(j[i/2+1]!=sz[i])
{
ans=0;break;
}
}
}
if(ans==1) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
}
限制:
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output