結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tentententen
提出日時 2023-01-27 09:26:08
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,102 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 89,436 KB
実行使用メモリ 64,740 KB
最終ジャッジ日時 2024-06-27 21:30:23
合計ジャッジ時間 29,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,148 KB
testcase_01 AC 56 ms
49,984 KB
testcase_02 AC 55 ms
50,232 KB
testcase_03 AC 55 ms
50,364 KB
testcase_04 AC 55 ms
50,400 KB
testcase_05 AC 57 ms
50,248 KB
testcase_06 AC 80 ms
51,440 KB
testcase_07 AC 90 ms
51,348 KB
testcase_08 AC 82 ms
51,684 KB
testcase_09 AC 96 ms
51,728 KB
testcase_10 AC 55 ms
50,156 KB
testcase_11 AC 56 ms
50,016 KB
testcase_12 AC 135 ms
52,104 KB
testcase_13 AC 111 ms
52,044 KB
testcase_14 AC 110 ms
51,952 KB
testcase_15 AC 105 ms
51,664 KB
testcase_16 AC 114 ms
51,820 KB
testcase_17 AC 284 ms
56,072 KB
testcase_18 AC 221 ms
56,012 KB
testcase_19 AC 263 ms
55,952 KB
testcase_20 AC 190 ms
55,044 KB
testcase_21 AC 247 ms
56,504 KB
testcase_22 AC 220 ms
56,332 KB
testcase_23 AC 261 ms
56,192 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 4,055 ms
57,668 KB
testcase_28 AC 6,576 ms
57,872 KB
testcase_29 TLE -
testcase_30 AC 4,236 ms
58,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int l = sc.nextInt();
        int m = sc.nextInt();
        int n = sc.nextInt();
        BitArray a = new BitArray(n);
        for (int i = 0; i < l; i++) {
            a.setBit(sc.nextInt() - 1);
        }
        BitArray b = new BitArray(n);
        for (int i = 0; i < m; i++) {
            b.setBit(sc.nextInt() - 1);
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            sb.append(a.getAndCount(b)).append("\n");
            a.shift();
        }
        System.out.print(sb);
    }
    
    static class BitArray {
        int[] arr;
        int size;
        
        public BitArray(int x) {
            size = (x + 30 - 1) / 30;
            arr = new int[size];
        }
        
        public BitArray(int size, int[] arr) {
            this.size = size;
            this.arr = arr;
        }
        
        public void setBit(int x) {
            arr[x / 30] |= (1L << (x % 30));
        }
        
        public void shift() {
            int add = 0;
            for (int i = size - 1; i >= 0; i--) {
                arr[i] += (add << 30);
                add = arr[i] % 2;
                arr[i] >>= 1;
            }
        }
        
        public int getAndCount(BitArray x) {
            int count = 0;
            for (int i = 0; i < size; i++) {
                count += pitCount(arr[i] & x.arr[i]);
            }
            return count;
        }
        
        private int pitCount(int x) {
            int count = 0;
            while (x > 0) {
                count += x % 2;
                x >>= 1;
            }
            return count;
        }
        
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0