結果

問題 No.748 yuki国のお財布事情
ユーザー 0w10w1
提出日時 2018-10-19 21:58:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 218,192 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-11-18 20:32:55
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 17 ms
5,248 KB
testcase_15 AC 11 ms
5,248 KB
testcase_16 AC 36 ms
5,248 KB
testcase_17 AC 64 ms
5,248 KB
testcase_18 AC 95 ms
7,168 KB
testcase_19 AC 107 ms
9,216 KB
testcase_20 AC 96 ms
8,704 KB
testcase_21 AC 81 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 44 ms
6,820 KB
testcase_26 AC 62 ms
6,816 KB
testcase_27 AC 48 ms
6,820 KB
testcase_28 AC 73 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

signed main() {
  ios::sync_with_stdio(false);

  int N, M, K;
  cin >> N >> M >> K;

  vector<tuple<int, int, int>> E(M);
  for (int i = 0; i < M; ++i) {
    int u, v, w;
    cin >> u >> v >> w;
    E[i] = make_tuple(w, u - 1, v - 1);
  }

  set<int> taken;
  for (int i = 0; i < K; ++i) {
    int e;
    cin >> e;
    taken.emplace(e - 1);
  }

  vector<int> fa(N);
  iota(fa.begin(), fa.end(), 0);
  function<int(int)> find = [&](int x) { return fa[x] == x ? x : fa[x] = find(fa[x]); };
  auto unite = [&](int x, int y) {
    int a = find(x);
    int b = find(y);
    if (a == b) return false;
    fa[a] = b;
    return true;
  };

  int64_t ans = 0;
  for (int i = 0; i < M; ++i) ans += get<0>(E[i]);

  for (int i : taken) {
    int w, u, v;
    tie(w, u, v) = E[i];
    unite(u, v);
    ans -= w;
  }

  vector<int> eord(M);
  iota(eord.begin(), eord.end(), 0);
  sort(eord.begin(), eord.end(),
       [&](int i, int j) { return get<0>(E[i]) < get<0>(E[j]); });

  for (int i = 0; i < M; ++i) {
    if (taken.count(eord[i])) continue;
    int w, u, v;
    tie(w, u, v) = E[eord[i]];
    if (unite(u, v)) ans -= w;
  }

  cout << ans << endl;

  return 0;
}
0