結果
問題 | No.1767 BLUE to RED |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-28 21:12:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 387 ms / 2,000 ms |
コード長 | 1,674 bytes |
コンパイル時間 | 1,464 ms |
コンパイル使用メモリ | 125,360 KB |
実行使用メモリ | 34,020 KB |
最終ジャッジ日時 | 2024-06-08 12:13:14 |
合計ジャッジ時間 | 8,862 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 162 ms
18,352 KB |
testcase_10 | AC | 206 ms
30,484 KB |
testcase_11 | AC | 177 ms
19,108 KB |
testcase_12 | AC | 163 ms
19,252 KB |
testcase_13 | AC | 233 ms
31,716 KB |
testcase_14 | AC | 309 ms
31,128 KB |
testcase_15 | AC | 314 ms
34,020 KB |
testcase_16 | AC | 387 ms
31,336 KB |
testcase_17 | AC | 383 ms
31,716 KB |
testcase_18 | AC | 381 ms
31,148 KB |
testcase_19 | AC | 378 ms
33,984 KB |
testcase_20 | AC | 317 ms
33,816 KB |
testcase_21 | AC | 312 ms
32,088 KB |
testcase_22 | AC | 305 ms
31,364 KB |
testcase_23 | AC | 304 ms
32,360 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> using namespace std; using ll = long long; struct UnionFind { vector<int> par; vector<int> siz; UnionFind(int N) : par(N), siz(N) { for(int i = 0; i < N; i++){ par[i] = i; siz[i] = 1; } } int root(int x) { if (par[x] == x) return x; return par[x] = root(par[x]); } void unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return; par[rx] = ry; siz[ry] += siz[rx]; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } int size(int x){ return siz[root(x)]; } }; template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>; int main(){ ll N, M, A, B, c, x, y, ans=0; cin >> N >> M; vector<pair<ll, ll>> X; for (int i=0; i<N; i++){ cin >> A; X.push_back({A, 0}); } for (int i=0; i<M; i++){ cin >> B; X.push_back({B, 1}); } sort(X.begin(), X.end()); pq<tuple<ll, ll, ll>> que; UnionFind tree(N+M+1); for (int i=0; i<N+M; i++){ if (i) que.push({X[i].first-X[i-1].first, i, i-1}); if (X[i].second == 0) tree.unite(i, N+M); } while(!que.empty()){ tie(c, x, y) = que.top(); que.pop(); if (!tree.same(x, y)){ ans += c; tree.unite(x, y); } } cout << ans << endl; return 0; }