結果

問題 No.1059 素敵な集合
ユーザー rnanornano
提出日時 2023-03-03 17:32:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 2,283 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 176,504 KB
実行使用メモリ 102,520 KB
最終ジャッジ日時 2024-09-17 22:06:48
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 144 ms
102,484 KB
testcase_02 AC 14 ms
10,356 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 12 ms
10,232 KB
testcase_07 AC 11 ms
10,360 KB
testcase_08 AC 14 ms
10,360 KB
testcase_09 AC 5 ms
5,752 KB
testcase_10 AC 23 ms
16,372 KB
testcase_11 AC 12 ms
10,360 KB
testcase_12 AC 7 ms
7,160 KB
testcase_13 AC 21 ms
16,500 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 41 ms
28,788 KB
testcase_16 AC 13 ms
10,232 KB
testcase_17 AC 14 ms
10,356 KB
testcase_18 AC 9 ms
7,028 KB
testcase_19 AC 149 ms
102,520 KB
testcase_20 AC 131 ms
102,256 KB
testcase_21 AC 37 ms
28,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#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 Rep(i,a,b) for (int i = a; i < b; ++i)
#define rRep(i,a,b) for (int i = a; i > b; --i)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define Bit(x,i) (((x)>>(i))&1)
using ll = long long;
using vi = vector<int>;
using vll = vector<long long>;
using vvi = vector<vi>;
using vvll = vector<vll>;
using vb = vector<bool>;
using vs = vector<string>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
struct settings{settings(){ios_base::sync_with_stdio(0); cin.tie(0); cout<<fixed<<setprecision(15);};}settingss;
const double PI = acos(-1);
const int INF = 1001001001;
const ll LINF = 1001001001001001001LL;

struct UnionFind {
  vector<int> par;
  UnionFind() { }
  UnionFind(int n) : par(n, -1) {}
  void init(int n) { par.assign(n, -1); }
  int root(int x) {
    if (par[x] < 0) return x;
    else return par[x] = root(par[x]);
  }
  bool issame(int x, int y) {
    return root(x) == root(y);
  }
  bool merge(int x, int y) {
    x = root(x); y = root(y);
    if (x == y) return false;
    if (par[x] > par[y]) swap(x, y);
    par[x] += par[y];
    par[y] = x;
    return true;
  }
  int size(int x) {
    return -par[root(x)];
  }
};

UnionFind uf(200100);
struct Edge {
  ll frm, to, cost;
  bool operator<(const Edge& o) const {
    return cost < o.cost;
  }
};
struct Graph {
  vector<Edge> es;
  ll kruskal() {
    sort(es.begin(), es.end());
    ll min_cost = 0;
    rep(ei, es.size()) {
      Edge& e = es[ei];
      if (!uf.issame(e.frm, e.to)) {
        min_cost += e.cost;
        uf.merge(e.frm, e.to);
      }
    }
    return min_cost;
  }
};

Graph g;

int main() {
  int L, R; cin >> L >> R;
  Rep(i, L, R) {
    Edge e;
    e.frm = i; e.to = i+1; e.cost = 1;
    g.es.push_back(e);
  }
  Rep(i, L, R+1) {
    for(int j = 2; i*j <= R; ++j) {
      Edge e;
      e.frm = i; e.to = i*j; e.cost = 0;
      g.es.push_back(e);
    }
  }
  cout << g.kruskal() << endl;
}
0