/ SeriousOJ /

Record Detail

System Error


  
# Status Time Cost Memory Cost
#1 Accepted 57ms 11.305 MiB
#2 Accepted 61ms 11.332 MiB
#3 Accepted 61ms 11.27 MiB
#4 Accepted 62ms 11.27 MiB
#5 Accepted 61ms 11.285 MiB
#6 Accepted 62ms 11.27 MiB
#7 Accepted 62ms 11.352 MiB
#8 Accepted 62ms 11.242 MiB
#9 Accepted 62ms 11.367 MiB
#10 Accepted 62ms 11.383 MiB
#11 Accepted 62ms 11.223 MiB
#12 Accepted 62ms 11.348 MiB
#13 Accepted 62ms 11.344 MiB
#14 Accepted 62ms 11.41 MiB
#15 Accepted 66ms 11.379 MiB
#16 Accepted 67ms 11.52 MiB
#17 Accepted 106ms 11.832 MiB
#18 System Error 49ms 11.445 MiB
#19 System Error 52ms 11.523 MiB
#20 System Error 69ms 11.566 MiB
#21 System Error 51ms 11.52 MiB
#22 System Error 52ms 11.52 MiB
#23 System Error 52ms 11.613 MiB
#24 System Error 51ms 11.562 MiB
#25 System Error 52ms 11.52 MiB
#26 System Error 52ms 11.562 MiB
#27 System Error 55ms 11.422 MiB
#28 System Error 53ms 11.52 MiB
#29 System Error 52ms 11.52 MiB
#30 System Error 60ms 11.867 MiB
#31 System Error 64ms 11.812 MiB
#32 System Error 49ms 11.422 MiB
#33 System Error 58ms 11.66 MiB
#34 System Error 52ms 11.402 MiB
#35 System Error 63ms 11.77 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 < 50; 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++17 (G++ 13.2.0)
Submit At
2024-08-16 18:29:32
Judged At
2024-08-16 18:29:32
Judged By
Score
49
Total Time
106ms
Peak Memory
11.867 MiB