結果

問題 No.74 貯金箱の退屈
ユーザー リチウムリチウム
提出日時 2014-11-21 02:16:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,664 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 79,480 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-06-10 21:28:29
合計ジャッジ時間 7,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,404 KB
testcase_01 AC 111 ms
41,280 KB
testcase_02 AC 110 ms
41,256 KB
testcase_03 AC 116 ms
41,196 KB
testcase_04 AC 118 ms
41,480 KB
testcase_05 AC 123 ms
41,372 KB
testcase_06 AC 117 ms
41,516 KB
testcase_07 AC 119 ms
41,372 KB
testcase_08 AC 116 ms
41,252 KB
testcase_09 AC 114 ms
41,460 KB
testcase_10 AC 118 ms
41,416 KB
testcase_11 AC 119 ms
41,676 KB
testcase_12 AC 121 ms
41,328 KB
testcase_13 AC 123 ms
41,432 KB
testcase_14 AC 131 ms
41,552 KB
testcase_15 AC 123 ms
41,296 KB
testcase_16 AC 121 ms
41,364 KB
testcase_17 AC 113 ms
41,440 KB
testcase_18 AC 115 ms
41,224 KB
testcase_19 AC 121 ms
41,156 KB
testcase_20 AC 114 ms
41,332 KB
testcase_21 AC 129 ms
41,412 KB
testcase_22 AC 116 ms
40,400 KB
testcase_23 AC 116 ms
41,164 KB
testcase_24 AC 116 ms
41,712 KB
testcase_25 AC 123 ms
41,568 KB
testcase_26 AC 125 ms
41,448 KB
testcase_27 AC 117 ms
41,004 KB
testcase_28 AC 133 ms
41,696 KB
testcase_29 AC 119 ms
41,632 KB
testcase_30 AC 125 ms
41,552 KB
testcase_31 AC 119 ms
41,296 KB
testcase_32 AC 119 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static int par[];//mainでparのi代入が必要
	static int rank[];

	static int find(int x) {
		if (par[x] == x) {
			return x;
		} else {
			return par[x] = find(par[x]);
		}
	}

	static boolean same(int x, int y) {
		return find(x) == find(y);
	}

	static void union(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]++;

		}
	}
	
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int n=sc.nextInt();
	  int d[]=new int[n];
	  int w[]=new int[n];
	  
	  for(int i=0;i<n;i++){
		  d[i]=sc.nextInt();
	  }
	  par=new int[n];
	  rank=new int[n];
	  for(int i=0;i<n;i++){
		  w[i]=sc.nextInt();
		  par[i]=i;
	  }
	  boolean single[]=new boolean [n];
	  for(int i=0;i<n;i++){
		  int x=(i+d[i])%n;
		  int y=i-d[i];
		  while(y<0)y+=n;
		  if(x==y)single[x]=true;
		  else union(x,y);
	  }
	  boolean ans=true;
	  for(int i=0;i<n;i++){
		  if(single[i])single[find(i)]=true;
	  }
	  boolean check[]=new boolean[n];
	  
	  ArrayList <Integer>parent[]=new ArrayList[n];
	  for(int i=0;i<n;i++){
		  parent[i]=new ArrayList<>();
	  }
	  
	  for(int i=0;i<n;i++){
		  parent[find(i)].add(i);
	  }
	  bi:for(int i=0;i<n;i++){
		  int ura=0;
		  for(int j=0;j<parent[i].size();j++){
			  int x=parent[i].get(j);
			  if(single[x])continue bi;
			  if(w[x]==0)ura++;
		  }
		  if(ura%2==1){
			  System.out.println("No");
			  return;
		  }
	  }
	  System.out.println("Yes");
  }
}
0