結果

問題 No.748 yuki国のお財布事情
ユーザー ransewhaleransewhale
提出日時 2018-12-07 17:34:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 166,788 KB
実行使用メモリ 7,356 KB
最終ジャッジ日時 2024-09-14 03:25:04
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 107 ms
6,648 KB
testcase_18 AC 125 ms
6,944 KB
testcase_19 AC 139 ms
7,320 KB
testcase_20 AC 123 ms
7,140 KB
testcase_21 AC 121 ms
7,308 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 97 ms
6,596 KB
testcase_26 AC 118 ms
7,240 KB
testcase_27 AC 114 ms
7,356 KB
testcase_28 AC 96 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define INF (1<<30)
#define INFLL (1ll<<60)
typedef pair<ll, int> P;
typedef pair<ll, P> E;
#define MOD (1000000007ll)
#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	b += MOD;
	a += b;
	a %= MOD;
}

int ufp[100100],ufr[100100],a[100100],b[100100];
ll c[100100];
bool f[100100];
vector<P> v;

void ufinit(int n){
	int i;
	for(i=0; i<n; ++i){
		ufp[i] = i;
		ufr[i] = 0;
	}
}

int ufind(int x){
	if(ufp[x]!=x){
		ufp[x] = ufind(ufp[x]);
	}
	return ufp[x];
}

void unionf(int x, int y){
	x = ufind(x);
	y = ufind(y);
	if(x==y){
		return;
	}
	if(ufr[x] > ufr[y]){
		ufp[y] = x;
	}else{
		ufp[x] = y;
		if(ufr[x]==ufr[y]){
			++ufr[y];
		}
	}
}

bool comp(P a, P b){
	return (a.first<b.first);
}

int main(void){
	int n,m,k,e,i;
	ll ans=0ll;
	fill(f,f+100100,false);
	cin >> n >> m >> k;
	ufinit(n);
	for(i=0; i<m; ++i){
		cin >> a[i] >> b[i] >> c[i];
		--a[i]; --b[i];
		v.push_back(P(c[i],i));
	}
	sort(v.begin(),v.end(),comp);
	for(i=0; i<k; ++i){
		cin >> e;
		--e;
		f[e] = true;
		unionf(a[e],b[e]);
	}
	for(i=0; i<m; ++i){
		e = v[i].second;
		if(f[e]){
			continue;
		}
		if(ufind(a[e]) == ufind(b[e])){
			ans += c[e];
			continue;
		}
		unionf(a[e],b[e]);
	}
	cout << ans << endl;
	return 0;
}
0