結果

問題 No.1917 LCMST
ユーザー KudeKude
提出日時 2022-04-29 22:56:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,600 ms / 4,000 ms
コード長 1,959 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 239,332 KB
実行使用メモリ 90,980 KB
最終ジャッジ日時 2024-06-29 04:35:30
合計ジャッジ時間 56,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 20 ms
6,940 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 19 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 2,355 ms
90,968 KB
testcase_10 AC 2,194 ms
90,924 KB
testcase_11 AC 2,480 ms
90,780 KB
testcase_12 AC 2,600 ms
90,740 KB
testcase_13 AC 1,865 ms
89,776 KB
testcase_14 AC 2,492 ms
90,668 KB
testcase_15 AC 1,599 ms
88,932 KB
testcase_16 AC 1,760 ms
89,712 KB
testcase_17 AC 2,126 ms
90,252 KB
testcase_18 AC 2,291 ms
90,384 KB
testcase_19 AC 1,291 ms
89,220 KB
testcase_20 AC 1,186 ms
88,948 KB
testcase_21 AC 1,439 ms
89,036 KB
testcase_22 AC 1,241 ms
88,852 KB
testcase_23 AC 1,205 ms
88,848 KB
testcase_24 AC 1,299 ms
88,848 KB
testcase_25 AC 1,179 ms
89,164 KB
testcase_26 AC 1,225 ms
90,144 KB
testcase_27 AC 1,284 ms
90,088 KB
testcase_28 AC 1,295 ms
89,668 KB
testcase_29 AC 808 ms
90,748 KB
testcase_30 AC 786 ms
90,980 KB
testcase_31 AC 817 ms
90,744 KB
testcase_32 AC 805 ms
90,864 KB
testcase_33 AC 821 ms
90,748 KB
testcase_34 AC 273 ms
87,500 KB
testcase_35 AC 241 ms
87,476 KB
testcase_36 AC 283 ms
87,492 KB
testcase_37 AC 1,147 ms
90,904 KB
testcase_38 AC 1,257 ms
90,904 KB
testcase_39 AC 1,261 ms
90,748 KB
testcase_40 AC 1,088 ms
90,904 KB
testcase_41 AC 1,163 ms
90,852 KB
testcase_42 AC 1,473 ms
90,916 KB
testcase_43 AC 619 ms
87,520 KB
testcase_44 AC 1,519 ms
87,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

constexpr int MX = 100010;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VI a(n);
  VVI vals(MX);
  rep(i, n) {
    cin >> a[i];
    vals[a[i]].emplace_back(i);
  }
  ll ans = 0;
  dsu uf(n);
  constexpr ll INF = 1002003004005006007;
  vector<pair<ll, pair<int, int>>> mns;
  while(true) {
    auto gs = uf.groups();
    if (gs.size() == 1) break;
    mns.assign(n, {INF, {-1, -1}});
    for(int g = 1; g < MX; g++) {
      int i1 = -1;
      int li1 = -1;
      int v = -1;
      for(int x = g; x < MX; x += g) {
        for(int i: vals[x]) {
          if (i1 == -1) {
            i1 = i;
            li1 = uf.leader(i1);
            v = a[i1] / g;
          } else if (int li = uf.leader(i); li != li1) {
            ll cost = (ll)v * a[i];
            if (cost < mns[li1].first) {
              mns[li1] = {cost, {i1, i}};
            }
            if (cost < mns[li].first) {
              mns[li] = {cost, {i1, i}};
            }
          }
        }
      }
    }
    rep(l, n) if (mns[l].first != INF) {
      auto [cost, ij] = mns[l];
      auto [i, j] = ij;
      if (!uf.same(i, j)) {
        ans += cost;
        uf.merge(i, j);
      }
    }
  }
  cout << ans << endl;
}
0