Codeforces1545 A. AquaMoon and Strange Sort(思维,排序奇偶性)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces1545 A. AquaMoon and Strange Sort(思维,排序奇偶性)相关的知识,希望对你有一定的参考价值。

题意:

解法:

每次交换,下标奇偶性变化
要保证每个数最后,下标的奇偶性不变.
统计每个数排序之前的奇偶个数
统计每个数排序之后的奇偶个数
如果某个数的奇偶性不相同则无解

容易证明上述做法的正确性.

code:

#include<bits/stdc++.h>
#define MULTI_CASE
#define PI pair<int,int>
// #define int long long
using namespace std;
// const int mod=998244353;
const int mod=1e9+7;
const int maxm=2e6+5;
int a[maxm];
int n;

void solve(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
    }
    //每次交换,下标奇偶性变化
    //要保证每个数最后,下标的奇偶性不变.
    //统计每个数排序之前的奇偶个数
    //统计每个数排序之后的奇偶个数
    //如果某个数的奇偶性不相同则无解
    map<int,int>mp[2];
    for(int i=1;i<=n;i++){
        mp[i%2][a[i]]++;
    }
    sort(a+1,a+1+n);
    for(int i=1;i<=n;i++){
        mp[i%2][a[i]]--;
    }
    for(int x=0;x<2;x++){
        for(auto i:mp[x]){
            if(i.second){
                cout<<"NO"<<endl;return ;
            }
        }
    }
    cout<<"YES"<<endl;
}
void Main(){
    #ifdef MULTI_CASE
    int T;cin>>T;while(T--)
    #endif
    solve();
}
void Init(){
    ios::sync_with_stdio(0);cin.tie(0);
    #ifndef ONLINE_JUDGE
    freopen("../in.txt","r",stdin);
    freopen("../out.txt","w",stdout);
    #endif
}
signed main(){
    Init();
    Main();
    return 0;
}

以上是关于Codeforces1545 A. AquaMoon and Strange Sort(思维,排序奇偶性)的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 655A A. Amity Assessment(水题)

codeforces 632A A. Grandma Laura and Apples

Codeforces Round #353 (Div. 2) A. Infinite Sequence

[codeforces 241]A. Old Peykan

Codeforces Round #353 (Div. 2) A. Infinite Sequence 思维题

codeforces 653A A. Bear and Three Balls(水题)