結果

問題 No.1689 Set Cards
ユーザー ripityripity
提出日時 2021-11-18 17:38:56
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,006 bytes
コンパイル時間 1,690 ms
コンパイル使用メモリ 77,236 KB
実行使用メモリ 72,968 KB
最終ジャッジ日時 2024-06-08 01:02:02
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
45,676 KB
testcase_01 AC 112 ms
41,488 KB
testcase_02 AC 159 ms
42,696 KB
testcase_03 AC 138 ms
41,948 KB
testcase_04 AC 140 ms
41,960 KB
testcase_05 AC 137 ms
41,944 KB
testcase_06 AC 134 ms
41,812 KB
testcase_07 AC 131 ms
41,768 KB
testcase_08 AC 110 ms
41,224 KB
testcase_09 AC 108 ms
41,616 KB
testcase_10 AC 127 ms
41,668 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[][] dp = new int[1<<13][N];
        int[] A = new int[N];
        int mod = 998244353;
        for( int i = 0; i < N; i++ ) {
            int k = sc.nextInt();
            for( int j = 0; j < k; j++ ) {
                int c = sc.nextInt()-1;
                A[i] |= 1<<c;
            }
            dp[A[i]][i]++;
        }
        
        for( int S = (1<<13)-1; S >= 0 ; S-- ) {
            for( int i = 0; i < N-1; i++ ) {
                for( int j = i+1; j < N; j++ ) {
                    dp[S&A[j]][j] += dp[S][i];
                    dp[S&A[j]][j] %= mod;
                }
            }
        }
        
        int ans = 0;
        for( int i = 0; i < N; i++ ) {
            ans += dp[0][i];
            ans %= mod;
        }
        
        System.out.println(ans);
        
    }
    
}
0