/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 165ms 16.16 MiB
#2 Wrong Answer 188ms 16.172 MiB
#3 Wrong Answer 308ms 16.172 MiB
#4 Wrong Answer 299ms 16.172 MiB
#5 Wrong Answer 352ms 16.168 MiB
#6 Wrong Answer 380ms 16.172 MiB
#7 Wrong Answer 370ms 16.164 MiB
#8 Wrong Answer 286ms 16.168 MiB
#9 Wrong Answer 277ms 16.176 MiB
#10 Wrong Answer 185ms 16.176 MiB
#11 Wrong Answer 181ms 16.18 MiB
#12 Wrong Answer 630ms 16.18 MiB
#13 Wrong Answer 477ms 16.176 MiB
#14 Wrong Answer 564ms 16.168 MiB
#15 Wrong Answer 497ms 16.168 MiB
#16 Wrong Answer 233ms 16.176 MiB
#17 Wrong Answer 455ms 16.172 MiB
#18 Wrong Answer 436ms 16.172 MiB
#19 Wrong Answer 333ms 16.168 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 = 100005;

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]);
	}
	if(tot == n) return x * 2;

	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] / x])
			cnt[j]++;
	}

	int ret = 0;
	for(int i=1; i<N; i++) {
		if(out % i or cnt[i] < lage) continue;
		ret = max(ret, i + x);
	}

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

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

	int ans = 0;
	for(int i : divs[a[1]]) ans = max(ans, calc(i));

	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
P1076 Even Odd GCD (Easy Version)
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 16:48:29
Judged At
2024-10-03 13:25:51
Judged By
Score
1
Total Time
630ms
Peak Memory
16.18 MiB