Codeforces Round #771 (Div. 2) 1638B. Odd Swap Sort Solution

 

Solution in C++: 







///La ilaha illellahu muhammadur rasulullah
///******Bismillahir-Rahmanir-Rahim******///
///Abul Hasnat  Tonmoy
///Department of CSE,23rd batch
///Islamic University,Bangladesh
#include <bits/stdc++.h>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t,n,i,a;
    cin>>t;
    while(t--)
    {
        vector<int>odd,even,ve,vo;
        cin>>n;
        for(i=0; i<n; i++)
        {
            cin>>a;
            if(a%2==0)
            {
                even.push_back(a);
                ve.push_back(a);
            }
            else
            {
                odd.push_back(a);
                vo.push_back(a);
            }
        }
        sort(ve.begin(),ve.end());
        sort(vo.begin(),vo.end());

        if((odd==vo)&&(even==ve))
            cout<<"YES"<<endl;
        else
            cout<<"NO"<<endl;
    }
    return 0;
}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.