結果

問題 No.74 貯金箱の退屈
ユーザー GrenacheGrenache
提出日時 2016-08-06 23:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 2,944 bytes
コンパイル時間 4,386 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 38,640 KB
最終ジャッジ日時 2024-11-07 04:22:24
合計ジャッジ時間 7,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,872 KB
testcase_01 AC 61 ms
37,760 KB
testcase_02 AC 62 ms
37,688 KB
testcase_03 AC 66 ms
37,880 KB
testcase_04 AC 68 ms
37,980 KB
testcase_05 AC 66 ms
37,980 KB
testcase_06 AC 67 ms
37,996 KB
testcase_07 AC 66 ms
38,000 KB
testcase_08 AC 66 ms
37,744 KB
testcase_09 AC 66 ms
37,880 KB
testcase_10 AC 69 ms
38,044 KB
testcase_11 AC 69 ms
38,248 KB
testcase_12 AC 65 ms
37,728 KB
testcase_13 AC 67 ms
37,988 KB
testcase_14 AC 70 ms
38,408 KB
testcase_15 AC 67 ms
38,020 KB
testcase_16 AC 68 ms
37,576 KB
testcase_17 AC 65 ms
37,744 KB
testcase_18 AC 65 ms
37,872 KB
testcase_19 AC 67 ms
38,016 KB
testcase_20 AC 73 ms
38,640 KB
testcase_21 AC 69 ms
37,600 KB
testcase_22 AC 62 ms
37,356 KB
testcase_23 AC 63 ms
37,804 KB
testcase_24 AC 66 ms
37,848 KB
testcase_25 AC 68 ms
38,140 KB
testcase_26 AC 71 ms
38,112 KB
testcase_27 AC 69 ms
38,188 KB
testcase_28 AC 69 ms
38,092 KB
testcase_29 AC 66 ms
37,844 KB
testcase_30 AC 70 ms
37,792 KB
testcase_31 AC 68 ms
37,532 KB
testcase_32 AC 66 ms
38,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder74 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        int n = sc.nextInt();

        int[] d = new int[n];
        for (int i = 0; i < n; i++) {
        	d[i] = sc.nextInt();
        }

        int[] w = new int[n];
        BitSet[] ma = new BitSet[n + 1];
        for (int i = 0; i < n + 1; i++) {
        	ma[i] = new BitSet(n);
        }
        for (int i = 0; i < n; i++) {
        	w[i] = sc.nextInt();
        	if (w[i] == 1) {
        		ma[0].set(i);
        	}
        }

        for (int i = 0; i < n; i++) {
        	int tmp = (i + d[i]) % n;
        	ma[i + 1].set(tmp);
        	int tmp2 = ((i - d[i]) % n + n) % n;
        	ma[i + 1].set(tmp2);
        }

        int cnt = 0;
        int p = 1;
        for (int i = 0; i < n; i++) {
        	boolean flag = false;
        	for (int j = p; j < n + 1; j++) {
        		if (ma[j].get(i)) {
        			flag = true;
        			BitSet tmp = ma[j];
        			ma[j] = ma[p];
        			ma[p] = tmp;
        			break;
        		}
        	}

        	if (flag) {
        		cnt++;
        		for (int j = 1; j < n + 1; j++) {
        			if (j != p && ma[j].get(i)) {
        				ma[j].xor(ma[p]);
        			}
        		}

        		if (ma[0].get(i)) {
        			ma[p].clear();
        		}
        		p++;
        	} else {
        		boolean tmp = false;
        		for (int j = 0; j < p; j++) {
        			tmp ^= ma[j].get(i);
        		}
        		if (tmp) {
        			cnt++;
        		}
        	}
        }

        if (cnt == n) {
        	pr.println("Yes");
        } else {
//        	pr.println(n);
//        	pr.println(cnt);
        	pr.println("No");
        }

		pr.close();
        sc.close();
    }

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
//					it = Arrays.asList(br.readLine().split(" ")).iterator();
					it = Arrays.asList(br.readLine().split("\\p{javaWhitespace}+")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0