結果

問題 No.330 Eigenvalue Decomposition
ユーザー 37zigen37zigen
提出日時 2016-05-23 22:32:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,123 ms / 5,000 ms
コード長 1,039 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 58,876 KB
最終ジャッジ日時 2024-10-07 03:26:20
合計ジャッジ時間 18,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 851 ms
57,832 KB
testcase_01 AC 120 ms
41,472 KB
testcase_02 AC 214 ms
45,740 KB
testcase_03 AC 844 ms
57,780 KB
testcase_04 AC 116 ms
40,816 KB
testcase_05 AC 199 ms
55,052 KB
testcase_06 AC 826 ms
58,044 KB
testcase_07 AC 129 ms
41,712 KB
testcase_08 AC 662 ms
53,596 KB
testcase_09 AC 1,055 ms
57,792 KB
testcase_10 AC 113 ms
40,796 KB
testcase_11 AC 572 ms
51,852 KB
testcase_12 AC 1,061 ms
58,044 KB
testcase_13 AC 120 ms
41,388 KB
testcase_14 AC 640 ms
51,552 KB
testcase_15 AC 280 ms
46,548 KB
testcase_16 AC 126 ms
40,968 KB
testcase_17 AC 245 ms
46,692 KB
testcase_18 AC 622 ms
47,980 KB
testcase_19 AC 133 ms
41,520 KB
testcase_20 AC 294 ms
47,468 KB
testcase_21 AC 1,123 ms
58,340 KB
testcase_22 AC 250 ms
46,688 KB
testcase_23 AC 416 ms
47,904 KB
testcase_24 AC 1,064 ms
58,876 KB
testcase_25 AC 123 ms
41,340 KB
testcase_26 AC 318 ms
47,728 KB
testcase_27 AC 106 ms
40,216 KB
testcase_28 AC 105 ms
40,024 KB
testcase_29 AC 107 ms
40,248 KB
testcase_30 AC 102 ms
40,052 KB
testcase_31 AC 116 ms
40,928 KB
testcase_32 AC 124 ms
41,560 KB
testcase_33 AC 123 ms
41,180 KB
testcase_34 AC 108 ms
40,296 KB
testcase_35 AC 117 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		DJSet ds=new DJSet(n);
		for(int i=0;i<m;i++){
			int a=sc.nextInt()-1;
			int b=sc.nextInt()-1;
			int c=sc.nextInt();
			ds.setUnion(a, b);
		}
		System.out.println(ds.count());
	}
	class DJSet{
		int n;//the number of vertices
		int[] d;
		DJSet(int n){
			this.n=n;
			d=new int[n];
			Arrays.fill(d, -1);
		}
		int root(int x){
			return d[x]<0?x:root(d[x]);
		}
		boolean setUnion(int x,int y){
			x=root(x);
			y=root(y);
			if(x!=y){
				if(x<y){
					int d=x;
					x=y;
					y=d;
				}
				//x>y
				d[y]+=d[x];
				d[x]=y;
			}
			return x!=y;
		}
		boolean equiv(int x,int y){
			return root(x)==root(y);
		}
		int size(int x){
			return d[root(x)]*(-1);
		}
		//連結グラフの数
		int count(){
			int ct=0;
			for(int u:d){
				if(u<0)ct++;
			}
			return ct;
		}
	}
}
0