結果

問題 No.2756 GCD Teleporter
ユーザー haihamabossuhaihamabossu
提出日時 2024-05-10 23:36:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 216,524 KB
実行使用メモリ 24,944 KB
最終ジャッジ日時 2024-05-10 23:36:29
合計ジャッジ時間 12,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,728 KB
testcase_01 AC 5 ms
7,868 KB
testcase_02 AC 6 ms
7,936 KB
testcase_03 AC 5 ms
7,896 KB
testcase_04 AC 20 ms
8,656 KB
testcase_05 AC 75 ms
11,928 KB
testcase_06 AC 202 ms
18,940 KB
testcase_07 AC 161 ms
16,724 KB
testcase_08 AC 150 ms
16,140 KB
testcase_09 AC 128 ms
14,836 KB
testcase_10 AC 181 ms
17,840 KB
testcase_11 AC 239 ms
20,664 KB
testcase_12 AC 60 ms
10,528 KB
testcase_13 AC 286 ms
20,984 KB
testcase_14 AC 263 ms
19,896 KB
testcase_15 AC 62 ms
10,732 KB
testcase_16 AC 151 ms
14,588 KB
testcase_17 AC 183 ms
16,104 KB
testcase_18 AC 60 ms
10,520 KB
testcase_19 AC 302 ms
21,324 KB
testcase_20 AC 545 ms
19,820 KB
testcase_21 AC 249 ms
13,192 KB
testcase_22 AC 326 ms
20,200 KB
testcase_23 AC 67 ms
9,304 KB
testcase_24 AC 426 ms
17,364 KB
testcase_25 AC 459 ms
18,112 KB
testcase_26 AC 403 ms
19,516 KB
testcase_27 AC 328 ms
20,244 KB
testcase_28 AC 149 ms
14,428 KB
testcase_29 AC 226 ms
17,816 KB
testcase_30 AC 298 ms
20,724 KB
testcase_31 AC 129 ms
13,292 KB
testcase_32 AC 944 ms
18,612 KB
testcase_33 AC 365 ms
11,900 KB
testcase_34 AC 59 ms
9,404 KB
testcase_35 AC 383 ms
19,740 KB
testcase_36 AC 247 ms
19,588 KB
testcase_37 AC 7 ms
7,868 KB
testcase_38 AC 97 ms
20,244 KB
testcase_39 AC 106 ms
24,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/dsu>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const ll MX = 200'010;

void solve() {
  ll n;
  cin >> n;
  vector<ll> a(n);
  rep(i, n) cin >> a[i];
  ll min_pf = MX;
  vector has(MX + 10, vector<ll>());
  rep(i, n) {
    ll rem = a[i];
    for (ll j = 2; rem > 1 && j * j <= rem; j++) {
      if (rem % j == 0) {
        has[j].push_back(i);
        min_pf = min(min_pf, j);
      }
      while (rem % j == 0)
        rem /= j;
    }
    if (rem > 1) {
      has[rem].push_back(i);
      min_pf = min(min_pf, rem);
    }
  }
  atcoder::dsu dsu(n);
  rep(j, MX) {
    if (has[j].empty())
      continue;
    ll i1 = has[j][0];
    for (const auto i2 : has[j]) {
      if (i1 == i2 || dsu.same(i1, i2))
        continue;
      dsu.merge(i1, i2);
    }
  }
  ll sz = dsu.groups().size();
  ll ans = min(sz * 2, (sz - 1) * min_pf);
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0