結果

問題 No.1767 BLUE to RED
ユーザー Fu_LFu_L
提出日時 2024-03-14 15:48:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 4,035 bytes
コンパイル時間 2,970 ms
コンパイル使用メモリ 216,740 KB
実行使用メモリ 64,560 KB
最終ジャッジ日時 2024-03-14 15:48:36
合計ジャッジ時間 8,539 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 2 ms
6,548 KB
testcase_05 AC 2 ms
6,548 KB
testcase_06 AC 2 ms
6,548 KB
testcase_07 AC 2 ms
6,548 KB
testcase_08 AC 3 ms
6,548 KB
testcase_09 AC 97 ms
37,772 KB
testcase_10 AC 121 ms
46,192 KB
testcase_11 AC 111 ms
41,448 KB
testcase_12 AC 99 ms
37,760 KB
testcase_13 AC 127 ms
48,556 KB
testcase_14 AC 169 ms
64,560 KB
testcase_15 AC 170 ms
64,560 KB
testcase_16 AC 166 ms
64,560 KB
testcase_17 AC 167 ms
64,560 KB
testcase_18 AC 167 ms
64,560 KB
testcase_19 AC 169 ms
64,560 KB
testcase_20 AC 168 ms
64,560 KB
testcase_21 AC 170 ms
64,560 KB
testcase_22 AC 167 ms
64,560 KB
testcase_23 AC 168 ms
64,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
template <typename T = int>
struct Edge {
    int from, to;
    T cost;
    int idx;
    Edge()
        : from(-1), to(-1), cost(-1), idx(-1) {}
    Edge(int from, int to, T cost = 1, int idx = -1)
        : from(from), to(to), cost(cost), idx(idx) {}
    operator int() const {
        return to;
    }
};
template <typename T = int>
struct Graph {
    Graph(int N)
        : n(N), es(0), g(N) {}
    int size() const {
        return n;
    }
    int edge_size() const {
        return es;
    }
    void add_edge(int from, int to, T cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es);
        g[to].emplace_back(to, from, cost, es++);
    }
    void add_directed_edge(int from, int to, T cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es++);
    }
    inline vector<Edge<T>>& operator[](const int& k) {
        assert(0 <= k and k < n);
        return g[k];
    }
    inline const vector<Edge<T>>& operator[](const int& k) const {
        assert(0 <= k and k < n);
        return g[k];
    }

   private:
    int n, es;
    vector<vector<Edge<T>>> g;
};
template <typename T = int>
using Edges = vector<Edge<T>>;
struct UnionFind {
    UnionFind(int N)
        : n(N), data(N, -1) {}
    int merge(int a, int b) {
        assert(0 <= a and a < n);
        assert(0 <= b and b < n);
        int x = leader(a), y = leader(b);
        if(x == y) return x;
        if(-data[x] < -data[y]) swap(x, y);
        data[x] += data[y];
        data[y] = x;
        return x;
    }
    bool same(int a, int b) {
        assert(0 <= a and a < n);
        assert(0 <= b and b < n);
        return leader(a) == leader(b);
    }
    int leader(int a) {
        assert(0 <= a and a < n);
        if(data[a] < 0) return a;
        return data[a] = leader(data[a]);
    }
    int size(int a) {
        assert(0 <= a and a < n);
        return -data[leader(a)];
    }
    vector<vector<int>> groups() {
        vector<int> leader_buf(n), group_size(n);
        for(int i = 0; i < n; ++i) {
            leader_buf[i] = leader(i);
            ++group_size[leader_buf[i]];
        }
        vector<vector<int>> result(n);
        for(int i = 0; i < n; ++i) {
            result[i].reserve(group_size[i]);
        }
        for(int i = 0; i < n; ++i) {
            result[leader_buf[i]].push_back(i);
        }
        result.erase(remove_if(result.begin(), result.end(), [&](const vector<int>& v) { return v.empty(); }), result.end());
        return result;
    }

   private:
    int n;
    vector<int> data;
};
template <typename T>
pair<T, Edges<T>> kruskal(int n, Edges<T> es) {
    sort(es.begin(), es.end(), [&](const Edge<T>& a, const Edge<T>& b) { return a.cost < b.cost; });
    UnionFind uf(n);
    T cost = 0;
    Edges<T> res;
    res.reserve(n - 1);
    for(const auto& e : es) {
        if(uf.same(e.from, e.to)) continue;
        cost += e.cost;
        uf.merge(e.from, e.to);
        res.emplace_back(e);
    }
    return {cost, res};
}
int main(void) {
    int n, m;
    cin >> n >> m;
    vector<int> a(n), b(m);
    Edges<ll> e;
    rep(i, 0, n) {
        cin >> a[i];
        e.push_back({(int)i, n + m, 0});
    }
    rep(i, 0, m) {
        cin >> b[i];
        if(i > 0) e.push_back({n + (int)i, n + (int)i - 1, b[i] - b[i - 1]});
        int idx = lower_bound(a.begin(), a.end(), b[i]) - a.begin();
        if(idx < n) e.push_back({n + (int)i, idx, a[idx] - b[i]});
        if(idx > 0) e.push_back({n + (int)i, idx - 1, b[i] - a[idx - 1]});
    }
    cout << kruskal(n + m + 1, e).first << '\n';
}
0