1545A - AquaMoon and Strange Sort

链接:

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值