結果

問題 No.1209 XOR Into You
ユーザー tentententen
提出日時 2022-08-31 18:34:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 2,938 bytes
コンパイル時間 2,853 ms
コンパイル使用メモリ 79,108 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2024-11-08 12:24:12
合計ジャッジ時間 26,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,972 KB
testcase_01 AC 56 ms
37,000 KB
testcase_02 AC 55 ms
37,128 KB
testcase_03 AC 56 ms
36,796 KB
testcase_04 AC 497 ms
67,068 KB
testcase_05 AC 710 ms
76,772 KB
testcase_06 AC 497 ms
67,328 KB
testcase_07 AC 608 ms
70,044 KB
testcase_08 AC 551 ms
64,176 KB
testcase_09 AC 558 ms
64,824 KB
testcase_10 AC 491 ms
62,724 KB
testcase_11 AC 508 ms
64,628 KB
testcase_12 AC 510 ms
63,868 KB
testcase_13 AC 583 ms
69,084 KB
testcase_14 AC 489 ms
63,764 KB
testcase_15 AC 500 ms
63,656 KB
testcase_16 AC 497 ms
63,252 KB
testcase_17 AC 499 ms
63,384 KB
testcase_18 AC 697 ms
74,696 KB
testcase_19 AC 509 ms
63,608 KB
testcase_20 AC 615 ms
67,604 KB
testcase_21 AC 492 ms
61,892 KB
testcase_22 AC 517 ms
76,420 KB
testcase_23 AC 516 ms
76,160 KB
testcase_24 AC 542 ms
76,436 KB
testcase_25 AC 690 ms
76,568 KB
testcase_26 AC 690 ms
76,552 KB
testcase_27 AC 697 ms
76,472 KB
testcase_28 AC 679 ms
76,596 KB
testcase_29 AC 695 ms
76,448 KB
testcase_30 AC 682 ms
76,436 KB
testcase_31 AC 406 ms
51,128 KB
testcase_32 AC 402 ms
51,288 KB
testcase_33 AC 419 ms
51,084 KB
testcase_34 AC 419 ms
54,088 KB
testcase_35 AC 430 ms
51,252 KB
testcase_36 AC 401 ms
51,164 KB
testcase_37 AC 388 ms
52,936 KB
testcase_38 AC 588 ms
70,116 KB
testcase_39 AC 482 ms
64,120 KB
testcase_40 AC 534 ms
76,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] valuesA = new int[n];
        HashMap<Integer, ArrayDeque<Integer>> idxes = new HashMap<>();
        for (int i = 0; i < n; i++) {
            valuesA[i] = sc.nextInt();
            if (i > 0) {
                int xor = valuesA[i] ^ valuesA[i - 1];
                if (!idxes.containsKey(xor)) {
                    idxes.put(xor, new ArrayDeque<>());
                }
                idxes.get(xor).add(i);
            }
        }
        BinaryIndexedTree bit = new BinaryIndexedTree(n + 1);
        long ans = 0;
        int[] valuesB = new int[n];
        for (int i = 0; i < n; i++) {
            valuesB[i] = sc.nextInt();
            if (i > 0) {
                int xor = valuesB[i] ^ valuesB[i - 1];
                if (!idxes.containsKey(xor) || idxes.get(xor).size() == 0) {
                    System.out.println(-1);
                    return;
                }
                int v = idxes.get(xor).poll();
                ans += i - 1 - bit.getSum(v);
                bit.add(v, 1);
            }
        }
        if (valuesA[0] != valuesB[0] || valuesA[n - 1] != valuesB[n - 1]) {
            System.out.println(-1);
            return;
        }
        System.out.println(ans);
    }

}
class BinaryIndexedTree {
    int size;
    int[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new int[size];
    }
    
    public void add(int idx, int value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public int getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public int getSum(int x) {
        int mask = 1;
        int ans = 0;
        while (x > 0) {
            if ((x & mask) != 0) {
                ans += tree[x];
                x -= mask;
            }
            mask <<= 1;
        }
        return ans;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0