結果

問題 No.330 Eigenvalue Decomposition
ユーザー tailstails
提出日時 2015-12-23 01:10:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 330 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 1,365 ms
コンパイル使用メモリ 160,404 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-09-18 19:22:40
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
15,212 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 107 ms
15,104 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 113 ms
12,160 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 76 ms
9,856 KB
testcase_09 AC 234 ms
18,304 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 69 ms
9,412 KB
testcase_12 AC 222 ms
18,304 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 61 ms
9,088 KB
testcase_15 AC 13 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 49 ms
7,680 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 330 ms
19,456 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 231 ms
18,144 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 6 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 5 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define N 100010

list<int> lnk[N];
char u[N];

int main(){
	int n,m;
	cin>>n>>m;
	for(int i=0;i<m;++i){
		int a,b,c;
		cin>>a>>b>>c;
		lnk[a].push_back(b);
		lnk[b].push_back(a);
	}
	int r=0;
	for(int i=1;i<=n;++i){
		if(!u[i]){
			u[i]=1;
			++r;
			list<int> q;
			q.push_back(i);
			while(!q.empty()){
				int j=q.back();
				q.pop_back();
				for(int k:lnk[j]){
					if(!u[k]){
						u[k]=1;
						q.push_back(k);
					}
				}
			}
		}
	}
	cout<<r;
}
0