AtCoder Beginner Contest 073 C Write and Erase Solution



Problem Link:  https://atcoder.jp/contests/abc073/tasks/abc073_c 

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()
{
    int n,x,y,t,s=0;
    map<int,int>mp;
    set<int>st;
    cin>>t;
    while(t--)
    {
        cin>>n;
        mp[n]++;
        st.insert(n);
    }
    for (auto it = st.begin(); it !=st.end(); ++it)
    {
      if(mp[*it]%2==1)
        s++;
    }
   cout<<s<<endl;
}


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.