結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,948 KB
testcase_01 AC 5 ms
7,760 KB
testcase_02 AC 4 ms
7,856 KB
testcase_03 AC 4 ms
7,908 KB
testcase_04 AC 21 ms
8,676 KB
testcase_05 AC 74 ms
11,796 KB
testcase_06 AC 199 ms
18,944 KB
testcase_07 AC 158 ms
16,720 KB
testcase_08 AC 149 ms
16,016 KB
testcase_09 AC 128 ms
14,924 KB
testcase_10 AC 181 ms
17,860 KB
testcase_11 AC 230 ms
20,596 KB
testcase_12 AC 60 ms
10,464 KB
testcase_13 AC 282 ms
20,996 KB
testcase_14 AC 261 ms
19,856 KB
testcase_15 AC 60 ms
10,532 KB
testcase_16 AC 147 ms
14,556 KB
testcase_17 AC 178 ms
15,972 KB
testcase_18 AC 58 ms
10,384 KB
testcase_19 AC 290 ms
21,212 KB
testcase_20 AC 539 ms
19,736 KB
testcase_21 AC 248 ms
13,192 KB
testcase_22 AC 330 ms
20,176 KB
testcase_23 AC 68 ms
9,296 KB
testcase_24 AC 425 ms
17,344 KB
testcase_25 AC 457 ms
17,936 KB
testcase_26 AC 408 ms
19,544 KB
testcase_27 AC 333 ms
20,308 KB
testcase_28 AC 150 ms
14,536 KB
testcase_29 AC 221 ms
17,728 KB
testcase_30 AC 293 ms
20,748 KB
testcase_31 AC 126 ms
13,208 KB
testcase_32 AC 953 ms
18,660 KB
testcase_33 AC 368 ms
11,900 KB
testcase_34 AC 58 ms
9,584 KB
testcase_35 AC 387 ms
19,568 KB
testcase_36 AC 247 ms
19,464 KB
testcase_37 AC 5 ms
7,948 KB
testcase_38 AC 93 ms
20,276 KB
testcase_39 AC 101 ms
25,048 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