/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 134ms 16.156 MiB
#2 Wrong Answer 168ms 16.32 MiB
#3 Accepted 167ms 16.164 MiB
#4 Accepted 148ms 16.332 MiB
#5 Accepted 167ms 16.309 MiB
#6 Accepted 160ms 16.336 MiB
#7 Wrong Answer 137ms 16.137 MiB
#8 Accepted 161ms 16.32 MiB
#9 Accepted 161ms 16.305 MiB
#10 Wrong Answer 157ms 16.297 MiB
#11 Accepted 143ms 16.289 MiB
#12 Accepted 137ms 16.363 MiB
#13 Accepted 155ms 16.27 MiB
#14 Accepted 153ms 16.176 MiB
#15 Accepted 218ms 16.582 MiB
#16 Accepted 274ms 16.652 MiB
#17 Accepted 909ms 17.172 MiB
#18 Wrong Answer 173ms 16.176 MiB
#19 Wrong Answer 236ms 16.332 MiB
#20 Wrong Answer 244ms 16.461 MiB
#21 Wrong Answer 204ms 16.48 MiB
#22 Wrong Answer 223ms 16.363 MiB
#23 Wrong Answer 216ms 16.496 MiB
#24 Wrong Answer 222ms 16.523 MiB
#25 Wrong Answer 191ms 16.504 MiB
#26 Wrong Answer 236ms 16.504 MiB
#27 Wrong Answer 256ms 16.504 MiB
#28 Accepted 278ms 16.551 MiB
#29 Wrong Answer 275ms 16.539 MiB
#30 Wrong Answer 466ms 17.086 MiB
#31 Wrong Answer 455ms 17.09 MiB
#32 Accepted 258ms 16.473 MiB
#33 Accepted 214ms 17.684 MiB
#34 Wrong Answer 185ms 16.359 MiB
#35 Wrong Answer 652ms 17.082 MiB

Code

#pragma GCC optimize("O3,unroll-loops,Ofast")
// #pragma GCC target("avx2")
#include<bits/stdc++.h>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;
#define int long long
#define endl '\n'

using namespace std;
using pii = pair<int, int>;
using tup = tuple<int, int, int>;

// mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
// template <class T> using ordered_set = tree<T, null_type,
//                          less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const int inf = (1e15)+5;
const int mod = 1000000007;
const double eps = 1e-6;
const int N = 100001;

vector<int> divs[N];
void preprocess() {
	for (int i = 1; i < N; i++) {
		for (int j = i; j < N; j += i) {
			divs[j].push_back(i);
		}
	}
}

int n, a[N];
int cnt[N];


int calc(int x) {
	int tot = 0, out = 0;
	for(int i=1; i<=n; i++) {
		if(a[i] % x == 0) tot++;
		else out = gcd(out, a[i]);
	}

	int onno = n - tot;
	int lage;

	if(n % 2 == 0) {
		if(tot < n/2) return 0;
		lage = n / 2;
	}

	else {
		if(tot >= n/2+1) lage = n/2;
		else if(tot == n/2) lage = n/2+1;
		else return 0;
	}

	lage -= onno;

	for(int i=1; i<=n; i++) {
		if(a[i] % x) continue;
		for(int j : divs[a[i]])
			cnt[j]++;
	}

	// cout << tot << ' ' << onno << ' ' << lage << ' ' << out << endl;
	int ret = 0;
	for(int i=1; i<N; i++) {
		if(out % i or cnt[i] < lage) continue;
		ret = max(ret, i);
	}

	for(int i=1; i<=n; i++) {
		if(a[i] % x) continue;
		for(int j : divs[a[i]])
			cnt[j]--;
	}
	// if(out % x == 0) ret *= x;
	
	// cout << x << ": " << ret + x << endl;
	return ret + x;
}

void solve(int tc) {
	cin >> n;
	for(int i=1; i<=n; i++) cin >> a[i];

	int ans = 0;
	
	auto div = divs[a[1]];
	reverse(div.begin(), div.end());
	int cnt = 0;
	for(int i : divs[a[1]]) {
		int ret = calc(i);
		if(ret) cnt++;
		ans = max(ans, calc(i));
		if(cnt == 3) break;
	}

	cout << ans << endl;
}
    
int32_t main() {
    cin.tie(NULL)->sync_with_stdio(false);
    cout.precision(10);

    preprocess();

    int T = 1;
    cin >> T;

    for (int i = 1; i <= T; i++) {
        solve(i);
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1077 Even Odd GCD (Hard Version)
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 17:16:18
Judged At
2024-10-03 13:23:01
Judged By
Score
49
Total Time
909ms
Peak Memory
17.684 MiB