xay loves count 枚举-复杂度-顺序无关-选择

该博客介绍了如何解决一个数组中找到所有满足 ai * aj = ak 的三元组 (i, j, k) 的问题。提供了两种解决方案:第一种通过计算每个元素出现的次数,然后对每个元素进行笛卡尔积计算;第二种使用集合来存储不重复的元素,避免重复计数。这两种方法都考虑了效率,避免了超时。
摘要由CSDN通过智能技术生成

在这里插入图片描述

题意 :

  • 给出一个长为n的数组,求有多少对(i ,j ,k)满足 ai * aj == ak,n < 1e6,下标没有顺序。

思路 :
在这里插入图片描述

// 解法1		1e6 * (1 + 1/2 + 1/3 + ... + 1/1e6) == 14 * 1e6
#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
#include <unordered_map>
#define endl '\n'
using namespace std;

typedef long long LL;

const int N = 1e6 + 10;

int a[N];

int main()
{
    ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
    
    int n;
    cin >> n;
    for (int i = 0; i < n; i ++ )
    {
        int x;
        cin >> x;
        a[x] ++ ;
    }
    
    LL ans = 0;
    for (int i = 1; i <= 1000000; i ++ )
        for (int j = 1; j <= 1000000 / i; j ++ )
            ans += a[i] * a[j] * a[i * j];
    
    cout << ans << endl;
    
    return 0;
}



// 解法2
#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include <set>
#define endl '\n'
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
using namespace std;
typedef long long LL;
const int N = 1e6 + 10;

int a[N];

int main()
{
    IOS;
    
    int n;
    cin >> n;
    set<int> se;
    for (int i = 0; i < n; i ++ )
    {
        int x;
        cin >> x;
        se.insert(x);
        a[x] ++ ;
    }
    
    LL ans = 0;
    
    for (auto i : se)
    {
        for (int j = i; j <= 1000000 / i; j ++ )
            if (a[j])
                if (i != j)
                    ans += a[i] * a[j] * a[i * j] * 2;
                else
                    ans += a[i] * a[j] * a[i * j];
    }
    
    cout << ans << endl;
    
    return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值