結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー 37zigen37zigen
提出日時 2020-03-30 18:40:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 1,184 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 79,512 KB
実行使用メモリ 57,048 KB
最終ジャッジ日時 2024-06-22 14:24:46
合計ジャッジ時間 9,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,064 KB
testcase_01 AC 170 ms
56,680 KB
testcase_02 AC 172 ms
56,684 KB
testcase_03 AC 127 ms
54,076 KB
testcase_04 AC 121 ms
54,260 KB
testcase_05 AC 170 ms
56,428 KB
testcase_06 AC 123 ms
54,252 KB
testcase_07 AC 162 ms
54,452 KB
testcase_08 AC 158 ms
54,372 KB
testcase_09 AC 158 ms
54,548 KB
testcase_10 AC 164 ms
54,748 KB
testcase_11 AC 144 ms
54,500 KB
testcase_12 AC 168 ms
56,888 KB
testcase_13 AC 168 ms
56,668 KB
testcase_14 AC 160 ms
54,492 KB
testcase_15 AC 164 ms
54,504 KB
testcase_16 AC 176 ms
56,872 KB
testcase_17 AC 162 ms
56,700 KB
testcase_18 AC 164 ms
54,540 KB
testcase_19 AC 164 ms
54,428 KB
testcase_20 AC 153 ms
54,656 KB
testcase_21 AC 170 ms
56,796 KB
testcase_22 AC 160 ms
54,584 KB
testcase_23 AC 171 ms
56,668 KB
testcase_24 AC 156 ms
54,272 KB
testcase_25 AC 175 ms
57,048 KB
testcase_26 AC 169 ms
56,696 KB
testcase_27 AC 174 ms
56,720 KB
testcase_28 AC 142 ms
54,484 KB
testcase_29 AC 173 ms
56,516 KB
testcase_30 AC 168 ms
56,516 KB
testcase_31 AC 168 ms
56,732 KB
testcase_32 AC 170 ms
54,364 KB
testcase_33 AC 175 ms
56,652 KB
testcase_34 AC 111 ms
53,984 KB
testcase_35 AC 113 ms
54,160 KB
testcase_36 AC 102 ms
52,712 KB
testcase_37 AC 122 ms
54,188 KB
testcase_38 AC 126 ms
54,500 KB
testcase_39 AC 122 ms
54,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;


class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	long gcd(long a,long b) {
		return a==0?b:gcd(b%a,a);
	}
	
	long lcm(long a,long b) {
		return a/gcd(a,b)*b;
	}
	
	int dfs(int cur,int par,ArrayList<Integer>[] g,boolean[] vis) {
		if(vis[cur])return 0;
		int sz=1;
		vis[cur]=true;
		for(int dst:g[cur]) {
			if(dst==par)continue;
			sz+=dfs(dst,cur,g,vis);
		}
		return sz;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int K=sc.nextInt();
		ArrayList<Integer>[] g=new ArrayList[N];
		for(int i=0;i<N;++i)g[i]=new ArrayList<Integer>();
		int[] ord=new int[N];
		for(int i=0;i<N;++i)ord[i]=i;
		for(int i=0;i<K;++i) {
			int x=sc.nextInt();
			int y=sc.nextInt();
			--x;--y;
			ord[x]^=ord[y];ord[y]^=ord[x];ord[x]^=ord[y];
		}
		for(int i=0;i<N;++i) {
			g[i].add(ord[i]);
		}
		long ans=1;
		boolean[] vis=new boolean[N];
		for(int i=0;i<N;++i) {
			if(vis[i])continue;
			ans=lcm(ans,dfs(i,-1,g,vis));
		}
		System.out.println(ans);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0