結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tentententen
提出日時 2023-01-27 09:20:16
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,352 bytes
コンパイル時間 5,591 ms
コンパイル使用メモリ 80,432 KB
実行使用メモリ 61,104 KB
最終ジャッジ日時 2023-09-10 05:51:12
合計ジャッジ時間 51,962 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,604 KB
testcase_01 AC 44 ms
49,476 KB
testcase_02 AC 45 ms
49,372 KB
testcase_03 AC 44 ms
49,572 KB
testcase_04 AC 45 ms
49,660 KB
testcase_05 AC 45 ms
49,520 KB
testcase_06 AC 76 ms
50,532 KB
testcase_07 AC 65 ms
50,676 KB
testcase_08 AC 70 ms
50,540 KB
testcase_09 AC 69 ms
50,796 KB
testcase_10 AC 46 ms
49,352 KB
testcase_11 AC 46 ms
49,384 KB
testcase_12 AC 131 ms
54,764 KB
testcase_13 AC 98 ms
52,672 KB
testcase_14 AC 94 ms
52,376 KB
testcase_15 AC 89 ms
52,196 KB
testcase_16 AC 92 ms
52,244 KB
testcase_17 AC 263 ms
54,112 KB
testcase_18 AC 212 ms
55,540 KB
testcase_19 AC 267 ms
56,028 KB
testcase_20 AC 203 ms
55,460 KB
testcase_21 AC 234 ms
56,512 KB
testcase_22 AC 223 ms
56,608 KB
testcase_23 AC 261 ms
56,172 KB
testcase_24 AC 6,994 ms
61,104 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 3,779 ms
58,936 KB
testcase_28 AC 6,241 ms
57,820 KB
testcase_29 AC 6,692 ms
57,232 KB
testcase_30 AC 4,163 ms
60,368 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++) {
            BitArray x = a.and(b);
            sb.append(x.getCount()).append("\n");
            a.shift();
        }
        System.out.print(sb);
    }
    
    static class BitArray {
        long[] arr;
        int size;
        
        public BitArray(int x) {
            size = (x + 60 - 1) / 60;
            arr = new long[size];
        }
        
        public BitArray(int size, long[] arr) {
            this.size = size;
            this.arr = arr;
        }
        
        public void setBit(int x) {
            arr[x / 60] |= (1L << (x % 60));
        }
        
        public void shift() {
            long add = 0;
            for (int i = size - 1; i >= 0; i--) {
                arr[i] += (add << 60);
                add = arr[i] % 2;
                arr[i] >>= 1;
            }
        }
        
        public BitArray and(BitArray x) {
            long[] ans = new long[size];
            for (int i = 0; i < size; i++) {
                ans[i] = (arr[i] & x.arr[i]);
            }
            return new BitArray(size, ans);
        }
        
        public long getCount() {
            long count = 0;
            for (long x : arr) {
                count += pitCount(x);
            }
            return count;
        }
        
        private long pitCount(long x) {
            long 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