結果

問題 No.2711 Connecting Lights
ユーザー tentententen
提出日時 2024-05-07 17:19:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,990 bytes
コンパイル時間 3,018 ms
コンパイル使用メモリ 78,844 KB
実行使用メモリ 44,800 KB
最終ジャッジ日時 2024-11-30 11:59:35
合計ジャッジ時間 7,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,984 KB
testcase_01 AC 48 ms
36,996 KB
testcase_02 AC 51 ms
37,196 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 71 ms
39,784 KB
testcase_06 AC 48 ms
37,228 KB
testcase_07 AC 49 ms
37,400 KB
testcase_08 AC 69 ms
38,120 KB
testcase_09 AC 215 ms
41,908 KB
testcase_10 AC 74 ms
40,672 KB
testcase_11 AC 138 ms
43,544 KB
testcase_12 AC 139 ms
42,412 KB
testcase_13 AC 97 ms
43,180 KB
testcase_14 AC 53 ms
37,972 KB
testcase_15 AC 108 ms
40,684 KB
testcase_16 AC 71 ms
39,724 KB
testcase_17 AC 75 ms
40,416 KB
testcase_18 AC 78 ms
39,924 KB
testcase_19 AC 90 ms
41,660 KB
testcase_20 AC 127 ms
43,136 KB
testcase_21 AC 74 ms
39,936 KB
testcase_22 AC 51 ms
37,656 KB
testcase_23 AC 54 ms
39,764 KB
testcase_24 AC 147 ms
40,928 KB
testcase_25 AC 193 ms
40,800 KB
testcase_26 AC 693 ms
44,376 KB
testcase_27 AC 273 ms
44,520 KB
testcase_28 AC 316 ms
44,800 KB
testcase_29 AC 123 ms
43,004 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 n;
    static int k;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        int m = sc.nextInt();
        k = sc.nextInt();
        dp = new int[m][1 << n];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(m - 1, (1 << n) - 1));
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            return 1;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = 0;
            for (int i = 1; i < (1 << n); i++) {
                if (getPop(v & i) >= k) {
                    dp[idx][v] += dfw(idx - 1, i);
                    dp[idx][v] %= MOD;
                }
            }
        }
        return dp[idx][v];
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
}
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