牛客网多校第6场J题 随机化暴力

牛客网多校第6场J题        链接:https://www.nowcoder.com/acm/contest/144/J

skywalkert, the new legend of Beihang University ACM-ICPC Team, retired this year leaving a group of newbies again.
 

Rumor has it that he left a heritage when he left, and only the one who has at least 0.1% IQ(Intelligence Quotient) of his can obtain it.


To prove you have at least 0.1% IQ of skywalkert, you have to solve the following problem:

Given n positive integers, for all (i, j) where 1 ≤ i, j ≤ n and i ≠ j, output the maximum value among . means the Lowest Common Multiple.

输入描述:

The input starts with one line containing exactly one integer t which is the number of test cases. (1 ≤ t ≤ 50)

For each test case, the first line contains four integers n, A, B, C. (2 ≤ n ≤ 107, A, B, C are randomly selected in unsigned 32 bits integer range)

The n integers are obtained by calling the following function n times, the i-th result of which is ai, and we ensure all ai > 0. Please notice that for each test case x, y and z should be reset before being called.

No more than 5 cases have n greater than 2 x 106.

输出描述:

For each test case, output "Case #x: y" in one line (without quotes), where x is the test case number (starting from 1) and y is the maximum lcm.

示例1

输入

2
2 1 2 3
5 3 4 8

输出

Case #1: 68516050958
Case #2: 5751374352923604426

这是我接触的第一题随机化算法,比赛的时候有点懵,队友把表打出来发现所有烫^_^后得到的值都不一样。。。

然后直接选了最大的那两个算lcm,然后只过了样例。后来学长说这题随机化,只需要取前100个最大的烫,暴力算lcm就可以得到答案了。

用到一个数学知识点:两个正整数互质的概率为  \tfrac{6}{\pi^{2}}  .

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e7+5;
unsigned x,y,z;
int n;
unsigned long long gcd(unsigned a,unsigned b)
{
    while(b)
    {
        int c=a%b;
        a=b;
        b=c;
    }
    return a;
}
unsigned tang()
{
    unsigned t;
    x ^= x << 16;
    x ^= x >> 5;
    x ^= x << 1;
    t = x;
    x = y;
    y = z;
    z = t ^ x ^ y;
    return z;
}
unsigned a[maxn];

int main()
{
    int t;
    cin>>t;
    int cnt=1;
    while(t--)
    {
        scanf("%d%u%u%u",&n,&x,&y,&z);
        for(int i=0;i<n;++i)
            a[i]=tang();
        int m=min(100,n);
        nth_element(a,a+n-m,a+n);//找出前100个大的
        unsigned long long ans=0;
        for(int i=n-m;i<n;++i)
            for(int j=i+1;j<n;++j)
        {
            ans=max(ans,1ull*a[i]*a[j]/gcd(a[i],a[j]));
        }
        printf("Case #%d: %llu\n",cnt++,ans);
    }
}

猜你喜欢

转载自blog.csdn.net/codetypeman/article/details/81433851