結果

問題 No.100 直列あみだくじ
ユーザー scachescache
提出日時 2014-12-11 23:50:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,361 bytes
コンパイル時間 10,882 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 54,720 KB
最終ジャッジ日時 2024-06-11 20:48:39
合計ジャッジ時間 13,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,316 KB
testcase_01 AC 145 ms
41,196 KB
testcase_02 AC 143 ms
41,448 KB
testcase_03 AC 145 ms
41,524 KB
testcase_04 AC 145 ms
41,432 KB
testcase_05 AC 139 ms
41,260 KB
testcase_06 AC 138 ms
41,388 KB
testcase_07 AC 136 ms
41,164 KB
testcase_08 AC 138 ms
41,580 KB
testcase_09 AC 138 ms
41,348 KB
testcase_10 AC 139 ms
41,484 KB
testcase_11 AC 142 ms
41,716 KB
testcase_12 AC 143 ms
41,276 KB
testcase_13 AC 150 ms
41,476 KB
testcase_14 WA -
testcase_15 AC 140 ms
41,520 KB
testcase_16 AC 140 ms
41,236 KB
testcase_17 AC 140 ms
41,388 KB
testcase_18 AC 140 ms
41,324 KB
testcase_19 AC 143 ms
41,772 KB
testcase_20 AC 149 ms
41,392 KB
testcase_21 WA -
testcase_22 AC 144 ms
41,568 KB
testcase_23 AC 149 ms
41,192 KB
testcase_24 AC 144 ms
41,340 KB
testcase_25 AC 144 ms
41,320 KB
testcase_26 AC 147 ms
41,280 KB
testcase_27 AC 141 ms
41,584 KB
testcase_28 AC 141 ms
41,388 KB
testcase_29 AC 141 ms
41,500 KB
testcase_30 AC 150 ms
41,644 KB
testcase_31 AC 142 ms
41,400 KB
testcase_32 AC 148 ms
41,452 KB
testcase_33 WA -
testcase_34 AC 142 ms
41,380 KB
testcase_35 AC 148 ms
41,696 KB
testcase_36 AC 150 ms
41,256 KB
testcase_37 AC 145 ms
41,484 KB
testcase_38 WA -
testcase_39 AC 146 ms
41,428 KB
testcase_40 WA -
testcase_41 AC 151 ms
41,576 KB
testcase_42 AC 154 ms
41,564 KB
testcase_43 WA -
testcase_44 AC 133 ms
40,196 KB
testcase_45 AC 147 ms
41,576 KB
testcase_46 AC 147 ms
41,572 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]);
		}
		
		for(int i=0;i<n;i++){
			int c = 1;
			for(int j=0;j<n;j++){
				if(same(i, j))
					c++;
			}
			if(c%2!=0){
				res = false;
				break;
			}
		}
		
		
		System.out.println(res? "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