結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー chocoruskchocorusk
提出日時 2020-12-01 19:29:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,593 bytes
コンパイル時間 1,382 ms
コンパイル使用メモリ 136,200 KB
実行使用メモリ 26,984 KB
最終ジャッジ日時 2024-06-12 10:53:44
合計ジャッジ時間 35,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
26,836 KB
testcase_01 AC 10 ms
26,752 KB
testcase_02 AC 8 ms
26,880 KB
testcase_03 AC 42 ms
26,708 KB
testcase_04 AC 14 ms
26,868 KB
testcase_05 AC 10 ms
26,848 KB
testcase_06 AC 8 ms
26,864 KB
testcase_07 AC 13 ms
26,928 KB
testcase_08 AC 14 ms
26,984 KB
testcase_09 AC 13 ms
26,680 KB
testcase_10 AC 12 ms
26,928 KB
testcase_11 AC 12 ms
26,676 KB
testcase_12 AC 12 ms
26,784 KB
testcase_13 AC 10 ms
26,744 KB
testcase_14 AC 11 ms
26,956 KB
testcase_15 AC 11 ms
26,748 KB
testcase_16 AC 12 ms
26,824 KB
testcase_17 AC 11 ms
19,720 KB
testcase_18 AC 12 ms
19,844 KB
testcase_19 AC 9 ms
19,780 KB
testcase_20 AC 7 ms
19,796 KB
testcase_21 AC 14 ms
19,844 KB
testcase_22 AC 13 ms
19,760 KB
testcase_23 AC 14 ms
19,904 KB
testcase_24 AC 14 ms
19,924 KB
testcase_25 AC 19 ms
19,764 KB
testcase_26 AC 14 ms
19,868 KB
testcase_27 AC 14 ms
19,808 KB
testcase_28 AC 17 ms
19,720 KB
testcase_29 AC 13 ms
19,836 KB
testcase_30 AC 18 ms
19,884 KB
testcase_31 AC 26 ms
19,808 KB
testcase_32 AC 14 ms
19,708 KB
testcase_33 AC 20 ms
19,892 KB
testcase_34 AC 15 ms
19,720 KB
testcase_35 AC 18 ms
19,824 KB
testcase_36 AC 23 ms
19,784 KB
testcase_37 AC 20 ms
19,948 KB
testcase_38 AC 18 ms
19,760 KB
testcase_39 AC 28 ms
19,804 KB
testcase_40 AC 19 ms
19,780 KB
testcase_41 AC 28 ms
19,880 KB
testcase_42 AC 19 ms
19,892 KB
testcase_43 AC 18 ms
19,800 KB
testcase_44 AC 23 ms
19,860 KB
04_evil_A_01 RE -
04_evil_A_02 RE -
04_evil_A_03 RE -
04_evil_A_04 RE -
04_evil_A_05 RE -
04_evil_A_06 RE -
04_evil_A_07 RE -
04_evil_A_08 RE -
04_evil_A_09 RE -
04_evil_A_10 RE -
05_evil_B_01 RE -
05_evil_B_02 RE -
05_evil_B_03 RE -
05_evil_B_04 RE -
05_evil_B_05 RE -
05_evil_B_06 RE -
05_evil_B_07 RE -
05_evil_B_08 RE -
05_evil_B_09 RE -
05_evil_B_10 RE -
06_evil_C_01 TLE -
06_evil_C_02 TLE -
06_evil_C_03 TLE -
06_evil_C_04 TLE -
06_evil_C_05 TLE -
06_evil_C_06 TLE -
06_evil_C_07 TLE -
06_evil_C_08 TLE -
06_evil_C_09 TLE -
06_evil_C_10 AC 3 ms
31,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n, k, x, y;
    cin>>n>>k>>x>>y;
    vector<int> a(k);
    for(int i=0; i<k; i++){
        cin>>a[i];
    }
    sort(a.begin(), a.end());
    a.erase(unique(a.begin(), a.end()), a.end());
    k=a.size();
    const ll MOD=998244353;
    ll dp[1<<10][1<<10]={};
    for(int i=0; i<k; i++){
        dp[a[i]][i]=1;
    }
    for(int i=0; i<n-1; i++){
        ll dps[1<<10]={};
        for(int j=0; j<(1<<10); j++){
            for(int l=0; l<k; l++){
                dps[j]+=dp[j][l];
            }
        }
        ll dp2[1<<10][1<<10]={};
        for(int j=0; j<(1<<10); j++){
            for(int l=0; l<k; l++){
                dp2[j^a[l]][l]+=dps[j];
            }
        }
        for(int j=0; j<(1<<10); j++){
            for(int l=0; l<k; l++){
                dp2[j^a[l]][l]-=dp[j][l];
            }
        }
        swap(dp, dp2);
    }
    ll ans=0;
    for(int i=x; i<=min(y, (1<<10)-1); i++){
        for(int j=0; j<k; j++){
            ans+=dp[i][j];
        }
    }
    cout<<ans%MOD<<endl;
    return 0;
}
0