結果

問題 No.330 Eigenvalue Decomposition
ユーザー chocoruskchocorusk
提出日時 2018-10-27 07:16:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 753 bytes
コンパイル時間 959 ms
コンパイル使用メモリ 98,096 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-19 06:38:38
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
9,100 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 5 ms
5,888 KB
testcase_03 AC 94 ms
9,100 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 5 ms
5,760 KB
testcase_06 AC 111 ms
10,692 KB
testcase_07 AC 3 ms
5,632 KB
testcase_08 AC 73 ms
9,088 KB
testcase_09 AC 171 ms
8,192 KB
testcase_10 AC 4 ms
5,632 KB
testcase_11 AC 56 ms
6,400 KB
testcase_12 AC 210 ms
8,960 KB
testcase_13 AC 4 ms
5,632 KB
testcase_14 AC 56 ms
6,784 KB
testcase_15 AC 11 ms
6,272 KB
testcase_16 AC 4 ms
5,632 KB
testcase_17 AC 8 ms
6,016 KB
testcase_18 AC 43 ms
7,168 KB
testcase_19 AC 3 ms
5,632 KB
testcase_20 AC 12 ms
6,144 KB
testcase_21 AC 251 ms
11,008 KB
testcase_22 AC 7 ms
5,760 KB
testcase_23 AC 16 ms
6,016 KB
testcase_24 AC 170 ms
8,064 KB
testcase_25 AC 3 ms
5,760 KB
testcase_26 AC 9 ms
5,888 KB
testcase_27 AC 3 ms
5,760 KB
testcase_28 AC 3 ms
5,760 KB
testcase_29 AC 4 ms
5,760 KB
testcase_30 AC 3 ms
5,632 KB
testcase_31 AC 3 ms
5,632 KB
testcase_32 AC 3 ms
5,760 KB
testcase_33 AC 3 ms
5,632 KB
testcase_34 AC 4 ms
5,760 KB
testcase_35 AC 2 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
vector<int> g[100000];
bool used[100000];
void dfs(int x){
	used[x]=1;
	for(auto y:g[x]){
		if(!used[y]) dfs(y);
	}
}

int main()
{
	int n, m;
	cin>>n>>m;
	for(int i=0; i<m; i++){
		int a, b, c; cin>>a>>b>>c;
		a--; b--;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	int ans=0;
	for(int i=0; i<n; i++){
		if(!used[i]){
			dfs(i);
			ans++;
		}
	}
	cout<<ans<<endl;
    return 0;
}
0