結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー mfbgjsczmfbgjscz
提出日時 2021-02-01 03:42:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,427 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 175,108 KB
実行使用メモリ 281,752 KB
最終ジャッジ日時 2023-09-03 04:12:28
合計ジャッジ時間 15,499 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
52,136 KB
testcase_01 AC 93 ms
68,516 KB
testcase_02 AC 80 ms
52,136 KB
testcase_03 AC 277 ms
281,752 KB
testcase_04 AC 80 ms
52,188 KB
testcase_05 AC 80 ms
52,140 KB
testcase_06 AC 82 ms
52,180 KB
testcase_07 AC 81 ms
52,144 KB
testcase_08 WA -
testcase_09 AC 81 ms
52,380 KB
testcase_10 AC 80 ms
52,268 KB
testcase_11 AC 76 ms
52,448 KB
testcase_12 AC 82 ms
52,432 KB
testcase_13 AC 78 ms
52,148 KB
testcase_14 AC 81 ms
52,452 KB
testcase_15 AC 81 ms
52,304 KB
testcase_16 AC 86 ms
52,248 KB
testcase_17 WA -
testcase_18 AC 79 ms
52,272 KB
testcase_19 AC 80 ms
52,248 KB
testcase_20 AC 81 ms
52,136 KB
testcase_21 WA -
testcase_22 AC 82 ms
52,280 KB
testcase_23 AC 84 ms
52,284 KB
testcase_24 AC 83 ms
52,272 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 134 ms
117,756 KB
testcase_31 AC 175 ms
166,892 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 135 ms
117,872 KB
testcase_39 AC 185 ms
183,380 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 136 ms
117,716 KB
testcase_44 AC 162 ms
150,496 KB
04_evil_A_01 WA -
04_evil_A_02 WA -
04_evil_A_03 WA -
04_evil_A_04 WA -
04_evil_A_05 WA -
04_evil_A_06 AC 80 ms
52,192 KB
04_evil_A_07 AC 79 ms
52,312 KB
04_evil_A_08 AC 79 ms
52,196 KB
04_evil_A_09 AC 76 ms
52,192 KB
04_evil_A_10 AC 77 ms
52,268 KB
05_evil_B_01 WA -
05_evil_B_02 WA -
05_evil_B_03 WA -
05_evil_B_04 WA -
05_evil_B_05 WA -
05_evil_B_06 WA -
05_evil_B_07 WA -
05_evil_B_08 WA -
05_evil_B_09 WA -
05_evil_B_10 WA -
06_evil_C_01 RE -
06_evil_C_02 RE -
06_evil_C_03 RE -
06_evil_C_04 RE -
06_evil_C_05 RE -
06_evil_C_06 RE -
06_evil_C_07 RE -
06_evil_C_08 RE -
06_evil_C_09 RE -
06_evil_C_10 AC 75 ms
44,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
#define ll long long
#define rep(i, m, n) for (ll i = m; i < n; i++)
#define mod 998244353

void fwt(vector<ll>& f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) {
        for(int j = 0; j < n; j++) {
            if((j & i) == 0) {
                ll x = f[j], y = f[j | i];
                f[j] = x + y, f[j | i] = x - y;
            }
        }
    }
}

void ifwt(vector<ll>& f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) {
        for(int j = 0; j < n; j++) {
            if((j & i) == 0) {
                ll x = f[j], y = f[j | i];
                f[j] = (x + y) / 2, f[j | i] = (x - y) / 2;
            }
        }
    }
}

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	ll N, K, X, Y; 
    cin >> N >> K >> X >> Y;
	ll M = 1048576;
	vector<vector<ll>> dp(N + 2, vector<ll>(M, 1));
    vector<ll> H(M);
    rep(i, 0, K) {
		ll A;
		cin >> A;
		H[A]++;
	}
	fwt(H);
    rep(v, 0, M) dp[1][v] = dp[0][v] * H[v];
    rep(v, 0, M) dp[2][v] = dp[1][v] * H[v] - K * dp[0][v];
	rep(i, 3, N + 1) rep(v, 0, M) dp[i][v] = (dp[i - 1][v] * H[v] - (K - 1) * dp[i - 2][v] + 10LL * mod) % mod;
	vector<ll> ep(M);
	rep(v, 0, M) ep[v] = dp[N][v];
	ifwt(ep);
	ll res=0;
	rep(v, 0, M) if(X <= v & v <= Y) res = (res + ep[v]) % mod;
	cout << res % mod << endl;
}
0