結果

問題 No.1917 LCMST
ユーザー simansiman
提出日時 2022-04-30 17:33:43
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 486 ms / 4,000 ms
コード長 2,165 bytes
コンパイル時間 1,589 ms
コンパイル使用メモリ 144,868 KB
実行使用メモリ 44,916 KB
最終ジャッジ日時 2024-06-29 22:41:36
合計ジャッジ時間 19,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,484 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,484 KB
testcase_03 AC 6 ms
5,744 KB
testcase_04 AC 6 ms
5,732 KB
testcase_05 AC 6 ms
5,616 KB
testcase_06 AC 5 ms
5,604 KB
testcase_07 AC 6 ms
5,744 KB
testcase_08 AC 3 ms
5,484 KB
testcase_09 AC 452 ms
30,064 KB
testcase_10 AC 468 ms
29,968 KB
testcase_11 AC 452 ms
29,776 KB
testcase_12 AC 427 ms
28,404 KB
testcase_13 AC 321 ms
20,340 KB
testcase_14 AC 435 ms
28,660 KB
testcase_15 AC 281 ms
16,500 KB
testcase_16 AC 307 ms
20,084 KB
testcase_17 AC 341 ms
28,532 KB
testcase_18 AC 365 ms
28,404 KB
testcase_19 AC 291 ms
16,136 KB
testcase_20 AC 272 ms
15,092 KB
testcase_21 AC 319 ms
16,628 KB
testcase_22 AC 278 ms
14,968 KB
testcase_23 AC 274 ms
14,968 KB
testcase_24 AC 303 ms
16,372 KB
testcase_25 AC 287 ms
15,216 KB
testcase_26 AC 281 ms
15,600 KB
testcase_27 AC 289 ms
16,112 KB
testcase_28 AC 286 ms
16,240 KB
testcase_29 AC 471 ms
44,912 KB
testcase_30 AC 471 ms
44,788 KB
testcase_31 AC 461 ms
44,916 KB
testcase_32 AC 466 ms
44,788 KB
testcase_33 AC 472 ms
44,712 KB
testcase_34 AC 273 ms
13,304 KB
testcase_35 AC 263 ms
13,300 KB
testcase_36 AC 258 ms
13,176 KB
testcase_37 AC 480 ms
44,916 KB
testcase_38 AC 482 ms
44,788 KB
testcase_39 AC 477 ms
44,660 KB
testcase_40 AC 472 ms
44,792 KB
testcase_41 AC 473 ms
44,792 KB
testcase_42 AC 486 ms
44,916 KB
testcase_43 AC 255 ms
13,540 KB
testcase_44 AC 256 ms
13,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <numeric>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Edge {
  int from;
  int to;
  ll cost;

  Edge(int from = -1, int to = -1, ll cost = -1) {
    this->from = from;
    this->to = to;
    this->cost = cost;
  }

  bool operator>(const Edge &n) const {
    return cost > n.cost;
  }
};

class UnionFind {
public:
  vector<int> _parent;
  vector<int> _rank;
  vector<int> _size;

  UnionFind(int n) {
    for (int i = 0; i < n; ++i) {
      _parent.push_back(i);
      _rank.push_back(0);
      _size.push_back(1);
    }
  }

  int find(int x) {
    if (_parent[x] == x) {
      return x;
    } else {
      return _parent[x] = find(_parent[x]);
    }
  }

  void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;

    if (_rank[x] < _rank[y]) {
      _parent[x] = y;
      _size[y] += _size[x];
    } else {
      _parent[y] = x;
      _size[x] += _size[y];
      if (_rank[x] == _rank[y]) ++_rank[x];
    }
  }

  bool same(int x, int y) {
    return find(x) == find(y);
  }

  int size(int x) {
    return _size[find(x)];
  }
};

int main() {
  int N;
  cin >> N;
  vector<ll> A(N);
  ll ans = 0;
  ll M = 0;
  vector<ll> counter(100010, 0);

  for (int i = 0; i < N; ++i) {
    cin >> A[i];
    M = max(M, A[i]);
    counter[A[i]]++;
  }

  priority_queue <Edge, vector<Edge>, greater<Edge>> pque;
  vector<bool> checked(M + 1, false);

  for (ll d = 1; d <= M; ++d) {
    if (counter[d] > 0) {
      ans += d * (counter[d] - 1);
    }
    ll min_x = -1;

    for (ll x = d; x <= M; x += d) {
      if (counter[x] == 0) continue;

      if (checked[d]) {
        pque.push(Edge(min_x, x, min_x * x / d));
      } else {
        min_x = x;
        checked[d] = true;
      }
    }
  }

  UnionFind uf(100010);

  while (not pque.empty()) {
    Edge e = pque.top();
    pque.pop();

    if (uf.same(e.from, e.to)) continue;

    uf.unite(e.from, e.to);
    ans += e.cost;
  }

  cout << ans << endl;

  return 0;
}
0