/ SeriousOJ /

Record Detail

System Error


  
# Status Time Cost Memory Cost
#1 Accepted 45ms 11.27 MiB
#2 Accepted 50ms 11.367 MiB
#3 Accepted 50ms 11.441 MiB
#4 Accepted 51ms 11.234 MiB
#5 Accepted 71ms 11.461 MiB
#6 Accepted 53ms 11.688 MiB
#7 Accepted 55ms 11.398 MiB
#8 Accepted 54ms 11.273 MiB
#9 Accepted 59ms 11.461 MiB
#10 Accepted 54ms 11.316 MiB
#11 Accepted 59ms 11.297 MiB
#12 Accepted 74ms 11.441 MiB
#13 Accepted 59ms 11.262 MiB
#14 Accepted 54ms 11.25 MiB
#15 Accepted 63ms 11.34 MiB
#16 Accepted 67ms 11.453 MiB
#17 Accepted 98ms 11.789 MiB
#18 System Error 52ms 11.715 MiB
#19 System Error 49ms 11.621 MiB
#20 System Error 62ms 11.781 MiB
#21 System Error 45ms 11.816 MiB
#22 System Error 43ms 11.773 MiB
#23 System Error 40ms 11.828 MiB
#24 System Error 43ms 11.824 MiB
#25 System Error 50ms 11.816 MiB
#26 System Error 51ms 11.586 MiB
#27 System Error 42ms 11.77 MiB
#28 System Error 50ms 11.562 MiB
#29 System Error 47ms 11.672 MiB
#30 System Error 50ms 11.922 MiB
#31 System Error 56ms 11.973 MiB
#32 System Error 43ms 11.496 MiB
#33 System Error 53ms 11.848 MiB
#34 System Error 41ms 11.602 MiB
#35 System Error 47ms 12.02 MiB

Code

/*For today, you happen to be the defeated. But what will you become tomorrow?*/

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

using namespace __gnu_pbds;
using namespace std;

#define dbg if(debugg)
#define F first 
#define S second 

bool debugg = false;

template <typename T>
using order_set = tree<T, null_type,less<T>, rb_tree_tag,tree_order_statistics_node_update>;

template <typename T>
using minheap = priority_queue<T, vector<T>, greater<T>>;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());  

const int N = 100005;
vector<int>divisors[N];
void sieve()
{
    for(int i = 1; i < N; i ++){
        for(int j = i; j < N; j += i){
            divisors[j].push_back(i);
        }
    }
}
int cnt[N], tot[N];
void solve()
{
    
    int n;
    cin >> n;
    vector<int>v(n);
    int gd = 0;
    memset(cnt, 0, sizeof(cnt));
    memset(tot, 0, sizeof(tot));
    for(int i = 0; i < n; i ++){
        cin >> v[i];
        gd = __gcd(gd, v[i]);
        cnt[v[i]] += 1;
    }

    for(int i = 1; i < N; i ++){
        for(int j = i; j < N; j += i){
            tot[i] += cnt[j];
        }
    }
    int ans = 2 * gd;
    for(int itr = 0; itr < 100; itr ++){
        int x = v[rng() % n], y = v[rng() % n];
        for(int i : divisors[x]){
            for(int j : divisors[y]){
                
                if(i == j) continue;
                int lm = i * j / __gcd(i, j);
                if(lm >= N) lm = 0;
                if(tot[i] + tot[j] - tot[lm] != n) continue;
                int p = tot[i], q = tot[j];
                if(max(p, q) >= ((n + 1) / 2)){
                    if(min(p, q) >= (n / 2)){
                        ans = max(ans, i + j);
                    }
                }
                
            }
        }
    }

    cout << ans << '\n';
}



int32_t main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);

    int t  = 1;
    cin>>t;

    sieve();

    while(t--){

        solve();

    }

    return 0;

}

Information

Submit By
Type
Submission
Problem
P1077 Even Odd GCD (Hard Version)
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 18:27:41
Judged At
2024-08-16 18:27:41
Judged By
Score
49
Total Time
98ms
Peak Memory
12.02 MiB