結果

問題 No.100 直列あみだくじ
ユーザー scachescache
提出日時 2014-12-12 00:23:17
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,508 bytes
コンパイル時間 4,065 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-11 20:52:24
合計ジャッジ時間 11,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,176 KB
testcase_01 AC 116 ms
40,316 KB
testcase_02 AC 130 ms
41,292 KB
testcase_03 AC 136 ms
41,216 KB
testcase_04 AC 139 ms
41,048 KB
testcase_05 AC 137 ms
41,520 KB
testcase_06 AC 132 ms
41,016 KB
testcase_07 AC 127 ms
41,564 KB
testcase_08 AC 130 ms
41,308 KB
testcase_09 AC 137 ms
41,300 KB
testcase_10 AC 138 ms
41,436 KB
testcase_11 AC 137 ms
41,424 KB
testcase_12 AC 137 ms
41,432 KB
testcase_13 AC 134 ms
41,176 KB
testcase_14 WA -
testcase_15 AC 126 ms
41,164 KB
testcase_16 AC 135 ms
41,300 KB
testcase_17 AC 130 ms
41,156 KB
testcase_18 AC 116 ms
40,028 KB
testcase_19 AC 120 ms
40,240 KB
testcase_20 AC 135 ms
41,080 KB
testcase_21 WA -
testcase_22 AC 132 ms
41,256 KB
testcase_23 AC 134 ms
41,436 KB
testcase_24 AC 134 ms
41,388 KB
testcase_25 AC 131 ms
41,068 KB
testcase_26 AC 119 ms
39,872 KB
testcase_27 AC 130 ms
41,164 KB
testcase_28 AC 131 ms
41,252 KB
testcase_29 AC 131 ms
41,048 KB
testcase_30 AC 141 ms
41,252 KB
testcase_31 AC 130 ms
41,264 KB
testcase_32 AC 141 ms
41,448 KB
testcase_33 WA -
testcase_34 AC 132 ms
41,108 KB
testcase_35 AC 139 ms
41,432 KB
testcase_36 AC 139 ms
41,308 KB
testcase_37 AC 139 ms
41,344 KB
testcase_38 WA -
testcase_39 AC 140 ms
41,540 KB
testcase_40 WA -
testcase_41 AC 140 ms
41,452 KB
testcase_42 AC 136 ms
41,188 KB
testcase_43 WA -
testcase_44 AC 139 ms
41,392 KB
testcase_45 AC 143 ms
41,624 KB
testcase_46 AC 141 ms
41,600 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main0100 {
	public static void main(String[] args) {
		Main0100 p = new Main0100();
	}

	public Main0100() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < a.length; i++)
			a[i] = sc.nextInt()-1;
		solve(n, a);
	}

	public void solve(int n, int[] a) {
		boolean res = true;
		uf(n);
		for(int i=0;i<a.length;i++){
			unite(i, a[i]);
		}
		
		int gc = 0;
		boolean[] isVisit = new boolean[n];
		for(int i=0;i<n;i++){
			if(isVisit[i])
				continue;
			
			int c = 0;
			isVisit[i] = true;
			for(int j=0;j<n;j++){
				if(same(i, j)){
					isVisit[j] = true;
					c++;
				}
			}
			if(c%2==0){
				gc++;
				break;
			}
		}
		
		
		System.out.println(gc%2==0 ? "Yes" : "No");
	}
	
	
	int[] par;
	int[] rank;
	private void uf(int n){
		par = new int[n];
		rank = new int[n];
		for(int i=0;i<n;i++){
			par[i] = i;
			rank[i] = 0;
		}
	}
	
	// 木の根を返す
	private int find(int x){
		if(par[x] == x)
			return x;
		else
			return par[x] =find(par[x]);
	}
	
	// 併合
	private void unite(int x, int y){
		x = find(x);
		y = find(y);
		
		// すでに同じグループ
		if(x==y)
			return;
		
		if(rank[x]<rank[y]){
			par[x] = y;
		}else{
			par[y] = x;
			if(rank[x]==rank[y])
				rank[x]++;
		}
	}
	
	// 同じグループなら真
	private boolean same(int x, int y){
		return find(x) == find(y);
	}

}
0