結果

問題 No.100 直列あみだくじ
ユーザー 37zigen37zigen
提出日時 2016-11-25 15:44:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 893 bytes
コンパイル時間 4,075 ms
コンパイル使用メモリ 80,384 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-11-24 01:40:38
合計ジャッジ時間 13,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,508 KB
testcase_01 AC 158 ms
41,328 KB
testcase_02 AC 157 ms
41,420 KB
testcase_03 AC 156 ms
41,736 KB
testcase_04 AC 159 ms
41,544 KB
testcase_05 AC 151 ms
41,220 KB
testcase_06 AC 151 ms
41,088 KB
testcase_07 AC 157 ms
41,196 KB
testcase_08 AC 164 ms
41,068 KB
testcase_09 AC 151 ms
41,152 KB
testcase_10 AC 149 ms
41,556 KB
testcase_11 AC 155 ms
41,216 KB
testcase_12 AC 149 ms
41,180 KB
testcase_13 AC 151 ms
41,488 KB
testcase_14 AC 149 ms
41,224 KB
testcase_15 AC 151 ms
41,192 KB
testcase_16 AC 153 ms
41,556 KB
testcase_17 AC 152 ms
41,512 KB
testcase_18 AC 150 ms
41,300 KB
testcase_19 AC 154 ms
41,148 KB
testcase_20 AC 151 ms
41,372 KB
testcase_21 AC 152 ms
41,036 KB
testcase_22 AC 153 ms
40,936 KB
testcase_23 AC 155 ms
41,192 KB
testcase_24 AC 151 ms
41,268 KB
testcase_25 AC 153 ms
41,040 KB
testcase_26 AC 163 ms
41,200 KB
testcase_27 AC 154 ms
41,040 KB
testcase_28 AC 175 ms
41,284 KB
testcase_29 AC 161 ms
41,452 KB
testcase_30 AC 165 ms
41,548 KB
testcase_31 AC 161 ms
41,048 KB
testcase_32 AC 157 ms
41,304 KB
testcase_33 AC 156 ms
41,088 KB
testcase_34 AC 155 ms
41,248 KB
testcase_35 AC 159 ms
41,276 KB
testcase_36 AC 162 ms
41,472 KB
testcase_37 AC 160 ms
41,044 KB
testcase_38 AC 157 ms
41,036 KB
testcase_39 AC 157 ms
41,240 KB
testcase_40 AC 159 ms
41,276 KB
testcase_41 AC 154 ms
41,120 KB
testcase_42 AC 155 ms
41,196 KB
testcase_43 AC 156 ms
41,244 KB
testcase_44 AC 155 ms
41,372 KB
testcase_45 AC 166 ms
41,200 KB
testcase_46 AC 155 ms
41,200 KB
testcase_47 AC 156 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

import javax.swing.plaf.synth.SynthScrollBarUI;

public class Q100 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] a = new int[N];
		for (int i = 0; i < N; ++i) {
			a[i] = sc.nextInt() - 1;
		}
		boolean[] vis = new boolean[N];
		int[] loopSize = new int[N + 1];

		for (int i = 0; i < N; ++i) {
			if (!vis[i]) {
				int count = 1;
				int cur = i;
				vis[cur] = true;
				while (!vis[a[cur]]) {
					cur = a[cur];
					vis[cur] = true;
					++count;
				}
				++loopSize[count];
			}
		}
		for (int i = 1; i <= N; ++i) {
			if (i % 2 == 0 && loopSize[i] > 0) {
				if (loopSize[i] % 2 == 1) {
					System.out.println("No");
					return;
				}
			}
		}
		System.out.println("Yes");

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0