結果

問題 No.1689 Set Cards
ユーザー merlinmerlin
提出日時 2021-09-24 22:27:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 77,272 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-05 10:55:14
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,176 KB
testcase_01 AC 47 ms
50,156 KB
testcase_02 AC 53 ms
50,416 KB
testcase_03 AC 52 ms
50,156 KB
testcase_04 AC 51 ms
50,272 KB
testcase_05 AC 50 ms
50,532 KB
testcase_06 AC 51 ms
50,148 KB
testcase_07 AC 48 ms
49,928 KB
testcase_08 AC 45 ms
50,328 KB
testcase_09 AC 46 ms
50,156 KB
testcase_10 AC 48 ms
50,208 KB
testcase_11 AC 121 ms
52,868 KB
testcase_12 AC 141 ms
52,876 KB
testcase_13 AC 148 ms
53,472 KB
testcase_14 AC 135 ms
53,096 KB
testcase_15 AC 98 ms
52,480 KB
testcase_16 AC 118 ms
52,916 KB
testcase_17 AC 91 ms
51,692 KB
testcase_18 AC 143 ms
52,760 KB
testcase_19 AC 179 ms
54,160 KB
testcase_20 AC 180 ms
53,980 KB
testcase_21 AC 137 ms
53,956 KB
testcase_22 AC 142 ms
53,540 KB
testcase_23 AC 141 ms
53,048 KB
testcase_24 AC 161 ms
54,248 KB
testcase_25 AC 160 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int t=12,i,j,m=1<<t;
        /*ArrayList<Integer> g[]=new ArrayList[m];
        for(i=0;i<m;i++) g[i]=new ArrayList<>();
        for(i=0;i<m;i++)
        for(j=0;j<m;j++)
        if(j!=i && (i|j)==(i^j)) g[i].add(j);*/

        int n=Integer.parseInt(bu.readLine());
        long dp[][]=new long[2][m],M=998244353;
        dp[0][m-1]=1; int cur=1;
        for(i=1;i<=n;i++)
        {
            for(j=0;j<m;j++) dp[cur][j]=dp[cur^1][j];

            String s[]=bu.readLine().split(" ");
            int k=Integer.parseInt(s[0]),x,vis=0;
            for(j=0;j<k;j++)
            {
                x=Integer.parseInt(s[j+1])-1;
                vis|=1<<x;
            }

            for(j=0;j<m;j++) dp[cur][j&vis]=(dp[cur][j&vis]+dp[cur^1][j])%M;
            cur^=1;
            //for(j=0;j<10;j++) System.out.print(dp[cur^1][j]+" ");
            //System.out.println();
        }
        System.out.println(dp[cur^1][0]);
    }
}
0