結果

問題 No.2200 Weird Shortest Path
ユーザー warabi0906warabi0906
提出日時 2023-02-08 19:41:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,661 bytes
コンパイル時間 3,992 ms
コンパイル使用メモリ 237,120 KB
実行使用メモリ 8,444 KB
最終ジャッジ日時 2024-07-06 05:49:20
合計ジャッジ時間 9,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 57 ms
6,940 KB
testcase_18 AC 99 ms
6,940 KB
testcase_19 AC 173 ms
8,132 KB
testcase_20 AC 163 ms
7,876 KB
testcase_21 AC 66 ms
6,940 KB
testcase_22 AC 93 ms
6,940 KB
testcase_23 AC 177 ms
8,120 KB
testcase_24 AC 30 ms
6,944 KB
testcase_25 AC 168 ms
7,956 KB
testcase_26 AC 177 ms
8,076 KB
testcase_27 AC 62 ms
6,940 KB
testcase_28 AC 131 ms
6,940 KB
testcase_29 AC 182 ms
8,256 KB
testcase_30 AC 176 ms
8,076 KB
testcase_31 AC 107 ms
6,940 KB
testcase_32 AC 180 ms
8,368 KB
testcase_33 AC 179 ms
8,288 KB
testcase_34 AC 177 ms
8,428 KB
testcase_35 AC 177 ms
8,288 KB
testcase_36 AC 178 ms
8,244 KB
testcase_37 AC 178 ms
8,332 KB
testcase_38 AC 181 ms
8,316 KB
testcase_39 WA -
testcase_40 AC 141 ms
8,368 KB
testcase_41 AC 81 ms
6,940 KB
testcase_42 AC 126 ms
8,280 KB
testcase_43 AC 188 ms
8,384 KB
testcase_44 AC 191 ms
8,280 KB
testcase_45 AC 188 ms
8,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include "atcoder/all"
#define debug cout << "OK" << endl;
template<typename T>
inline bool chmax(T& a, const T b) { if (a < b) { a = b; return true; } return false; }
template<typename T>
inline bool chmin(T& a, const T b) { if (a > b) { a = b; return true; } return false; }
inline int Code(char c) {
	if ('A' <= c and c <= 'Z')return (int)(c - 'A');
	if ('a' <= c and c <= 'z')return (int)(c - 'a');
	if ('0' <= c and c <= '9')return (int)(c - '0');
	assert(false);
}
using namespace std;
using namespace atcoder;
#define int long long
constexpr int MOD = 998244353;
constexpr int INF = (1LL << 63);
using minit = modint998244353;

template<typename T>
ostream& operator << (ostream& st, const vector<T>& v) {
	for (const T value : v) {
		st << value << " ";
	}
	return st;
}
template<typename T>
istream& operator >> (istream& st, vector<T>& v) {
	for (T& value : v) {
		st >> value;
	}
	return st;
}

//

//

void solve() {
	int N, M;
	cin >> N >> M;
	vector<pair<int, pair<int, int>>> E(M);
	for (int e = 0; e < M; e++) {
		int u, v, w;
		cin >> u >> v >> w;
		u--; v--;
		E[e] = { w,{u,v} };
	}
	sort(E.begin(), E.end());
	dsu d(N);
	int ans = 0;
	for (int i = 0; i < M; i++) {
		if (d.same(E[i].second.first, E[i].second.second))continue;
		ans += d.size(E[i].second.first) * d.size(E[i].second.second) * E[i].first;
		d.merge(E[i].second.first, E[i].second.second);
		if (d.size(0) == N) {
			cout << ans << endl;
			return;
		}
	}
	assert(false);
}
signed main() {
	int T = 1;
	// cin >> T;
	for (int i = 0; i < T; i++)
		solve();
	return 0;
}

/*
* わらびのコードこーどすぺーす
 (σ・∀・)σゲッツ!!
*/
0