結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2024-07-22 17:14:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 2,019 bytes
コンパイル時間 2,881 ms
コンパイル使用メモリ 78,696 KB
実行使用メモリ 123,276 KB
最終ジャッジ日時 2024-07-22 17:14:31
合計ジャッジ時間 8,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
99,908 KB
testcase_01 AC 362 ms
75,192 KB
testcase_02 AC 328 ms
66,140 KB
testcase_03 AC 53 ms
36,688 KB
testcase_04 AC 53 ms
37,128 KB
testcase_05 AC 51 ms
37,364 KB
testcase_06 AC 51 ms
36,920 KB
testcase_07 AC 52 ms
37,036 KB
testcase_08 AC 52 ms
37,104 KB
testcase_09 AC 52 ms
37,068 KB
testcase_10 AC 52 ms
37,048 KB
testcase_11 AC 280 ms
91,108 KB
testcase_12 AC 306 ms
66,916 KB
testcase_13 AC 400 ms
110,856 KB
testcase_14 AC 368 ms
109,276 KB
testcase_15 AC 318 ms
111,276 KB
testcase_16 AC 337 ms
123,276 KB
testcase_17 AC 301 ms
91,080 KB
testcase_18 AC 301 ms
76,272 KB
testcase_19 AC 403 ms
116,132 KB
testcase_20 AC 401 ms
115,132 KB
testcase_21 AC 113 ms
55,444 KB
testcase_22 AC 109 ms
55,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    static int[] counts = new int[1 << 10];
    static long[][][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        if (k > 10) {
            System.out.println(0);
            return;
        }
        while (n-- > 0) {
            counts[sc.nextInt()]++;
        }
        dp = new long[k][1 << 10][1 << 10];
        for (long[][] arr1 : dp) {
            for (long[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        System.out.println(dfw(k - 1, (1 << 10) - 1, (1 << 10) - 1));
    }
    
    static long dfw(int c, int idx, int v) {
        if (c < 0) {
            return 1;
        }
        if (idx == 0) {
            return 0;
        }
        if (dp[c][idx][v] < 0) {
            dp[c][idx][v] = (dfw(c, idx - 1, v) + ((v & idx) == idx ? dfw(c - 1, idx - 1, v ^ idx) * counts[idx] : 0)) % MOD;
        }
        return dp[c][idx][v];
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0