結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー uafr_csuafr_cs
提出日時 2015-09-11 18:14:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 1,406 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 43,492 KB
最終ジャッジ日時 2024-07-19 05:17:45
合計ジャッジ時間 9,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,948 KB
testcase_01 AC 175 ms
43,096 KB
testcase_02 AC 175 ms
43,036 KB
testcase_03 AC 129 ms
41,360 KB
testcase_04 AC 124 ms
41,088 KB
testcase_05 AC 174 ms
42,668 KB
testcase_06 AC 131 ms
41,692 KB
testcase_07 AC 163 ms
42,544 KB
testcase_08 AC 158 ms
42,368 KB
testcase_09 AC 160 ms
42,260 KB
testcase_10 AC 164 ms
41,944 KB
testcase_11 AC 160 ms
41,796 KB
testcase_12 AC 174 ms
43,232 KB
testcase_13 AC 186 ms
43,192 KB
testcase_14 AC 162 ms
42,336 KB
testcase_15 AC 165 ms
42,604 KB
testcase_16 AC 171 ms
43,004 KB
testcase_17 AC 171 ms
42,688 KB
testcase_18 AC 165 ms
42,120 KB
testcase_19 AC 165 ms
42,516 KB
testcase_20 AC 163 ms
42,432 KB
testcase_21 AC 171 ms
42,968 KB
testcase_22 AC 157 ms
42,208 KB
testcase_23 AC 182 ms
43,488 KB
testcase_24 AC 159 ms
42,176 KB
testcase_25 AC 168 ms
43,176 KB
testcase_26 AC 174 ms
43,112 KB
testcase_27 AC 180 ms
42,760 KB
testcase_28 AC 162 ms
42,408 KB
testcase_29 AC 172 ms
43,180 KB
testcase_30 AC 160 ms
42,568 KB
testcase_31 AC 167 ms
42,976 KB
testcase_32 AC 173 ms
42,832 KB
testcase_33 AC 178 ms
43,492 KB
testcase_34 AC 114 ms
41,244 KB
testcase_35 AC 114 ms
41,044 KB
testcase_36 AC 106 ms
40,108 KB
testcase_37 AC 125 ms
41,152 KB
testcase_38 AC 128 ms
41,388 KB
testcase_39 AC 127 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void swap(int[] array, int a, int b){
		int tmp = array[a];
		array[a] = array[b];
		array[b] = tmp;
	}
	
	public static long gcd(long a, long b){
		return b == 0 ? a : gcd(b, a % b);
	}
	
	public static long lcm(long a, long b){
		return a / gcd(a, b) * b;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt();
		
		int[] perms = new int[N];
		for(int i = 0; i < N; i++){
			perms[i] = i;
		}
		
		for(int i = 0; i < K; i++){
			final int x = sc.nextInt() - 1;
			final int y = sc.nextInt() - 1;
			
			swap(perms, x, y);
		}
		
		long answer = 1;
		boolean[] used = new boolean[N];
		while(true){
			int start_pos = -1;
			for(int i = 0; i < N; i++){
				if(!used[i]){
					start_pos = i;
					break;
				}
			}
			
			if(start_pos < 0){ break; }
			//System.out.println(start_pos + " " + Arrays.toString(perms));
			
			used[start_pos] = true;
			int current = start_pos;
			int count = 1;
			
			while(true){
				current = perms[current];
				if(current == start_pos){ break; }
				//System.out.println(current);

				used[current] = true;
				count++;
			}
			
			answer = lcm(answer, count);
		}
		
		System.out.println(answer);
		
		
	}

}
0