結果

問題 No.1189 Sum is XOR
ユーザー V_MelvilleV_Melville
提出日時 2024-11-07 20:26:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 5,568 ms
コンパイル使用メモリ 317,052 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 20:26:44
合計ジャッジ時間 7,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
5,248 KB
testcase_01 AC 54 ms
5,248 KB
testcase_02 AC 51 ms
5,248 KB
testcase_03 AC 22 ms
5,248 KB
testcase_04 AC 19 ms
5,248 KB
testcase_05 AC 31 ms
5,248 KB
testcase_06 AC 43 ms
5,248 KB
testcase_07 AC 25 ms
5,248 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 20 ms
5,248 KB
testcase_12 AC 51 ms
5,248 KB
testcase_13 AC 52 ms
5,248 KB
testcase_14 AC 38 ms
5,248 KB
testcase_15 AC 26 ms
5,248 KB
testcase_16 AC 25 ms
5,248 KB
testcase_17 AC 21 ms
5,248 KB
testcase_18 AC 25 ms
5,248 KB
testcase_19 AC 46 ms
5,248 KB
testcase_20 AC 51 ms
5,248 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using mint = modint998244353;

struct modfact {
  int n; vector<mint> d;
  modfact(): n(2), d({1,1}) {}
  mint operator()(int i) {
    while (n <= i) d.push_back(d.back()*n), ++n;
    return d[i];
  }
  mint operator[](int i) const { return d[i];}
} facts;

int main() {
    int n, k;
    cin >> n >> k;
    
    vector<int> a(n);
    rep(i, n) cin >> a[i];
    
    if (k > 10) {
        puts("0");
        return 0;
    }
    
    unordered_map<int, int> cnt;
    rep(i, n) cnt[a[i]]++;
    
    int m = 10, m2 = 1<<m;
    vector dp(m+1, vector<mint>(m2));
    dp[0][0] = 1;
    rep(i, k)rep(s, m2)rep(t, m2) {
        if (!(s&t)) dp[i+1][s|t] += dp[i][s]*cnt[t];
    }
    
    mint ans;
    rep(s, m2) ans += dp[k][s];
    ans /= facts(k);
    
    cout << ans.val() << '\n';
    
    return 0;
}
0