結果
| 問題 |
No.1189 Sum is XOR
|
| コンテスト | |
| ユーザー |
toku
|
| 提出日時 | 2020-09-05 02:35:41 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,762 bytes |
| コンパイル時間 | 1,527 ms |
| コンパイル使用メモリ | 169,704 KB |
| 実行使用メモリ | 364,544 KB |
| 最終ジャッジ日時 | 2024-11-27 02:50:44 |
| 合計ジャッジ時間 | 10,769 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) for(int i=0; i<int(n); i++)
#define FOR(i,m,n) for(int i=int(m); i<int(n); i++)
#define ALL(obj) (obj).begin(),(obj).end()
#define VI vector<int>
#define VP vector<pair<int,int>>
#define VPP vector<pair<int,pair<int,int>>>
#define VLL vector<long long>
#define VVI vector<vector<int>>
#define VVLL vector<vector<long long>>
#define VC vector<char>
#define VS vector<string>
#define VVC vector<vector<char>>
#define VB vector<bool>
#define VVB vector<vector<bool>>
#define fore(i,a) for(auto &i:a)
typedef pair <int, int> P;
template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
template<class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; }
const int INF = (1 << 30) - 1;
const ll INFL = 1LL << 60;
const ll mod = 998244353;
ll dp[2050][2050][11];
int main(){
int n, kk;
cin >> n >> kk;
VI a(2050, 0);
REP(i, n) {
int b;
cin >> b;
a[b]++;
}
if (kk > 10) {
cout << 0 << endl;
return 0;
}
if (kk == 2) {
ll ans = 0;
REP(i, 2050) {
FOR(j, i + 1, 2050) {
if ((i + j) == (i^j)) {
ans += a[i] * a[j];
ans %= mod;
}
}
}
cout << ans << endl;
return 0;
}
dp[0][0][0] = 1;
FOR(i, 1, 2050) {
REP(j, 2050)REP(k, 11) {
dp[i][j][k] += dp[i - 1][j][k];
dp[i][j][k] %= mod;
}
REP(j, 2050 - i) {
if ((i + j) != (i^j))continue;
REP(k, 10) {
dp[i][i + j][k + 1] += dp[i - 1][j][k];
dp[i][i + j][k + 1] %= mod;
}
}
}
ll ans = 0;
REP(i, 2050) {
REP(j, 2050) {
ans += dp[i][j][kk];
ans %= mod;
}
}
cout << ans << endl;
}
toku