ABC206 C - Swappable(map计数)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABC206 C - Swappable(map计数)相关的知识,希望对你有一定的参考价值。

题意:

在这里插入图片描述

解法:

map统计每种数的数量,
对于数字x,设数量为cnt,那么!=x的数量为n-cnt,
则ans+=cnt*(n-cnt),
由于题目求的是无序对,最后答案需要除以2.

code:

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxm=4e6+5;
int a[maxm];
int n;
void solve(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
    }
    map<int,int>mp;
    for(int i=1;i<=n;i++){
        mp[a[i]]++;
    }
    int ans=0;
    for(auto i:mp){
        int x=i.second,y=n-x;
        ans+=x*y;
    }
    cout<<ans/2<<endl;
}
signed main(){
    ios::sync_with_stdio(0);cin.tie(0);
    solve();
    return 0;
}

以上是关于ABC206 C - Swappable(map计数)的主要内容,如果未能解决你的问题,请参考以下文章

ABC206 E - Divide Both(容斥)

ABC206 D - KAIBUNsyo(思维,并查集求连通块大小)

ABC200 C - Ringo‘s Favorite Numbers 2 思维+map计数

Java找到具有特定值的所有键[重复]

c_cpp 206.反向链接清单

c_cpp 206.cpp