結果
| 問題 |
No.1304 あなたは基本が何か知っていますか?私は知っています.
|
| コンテスト | |
| ユーザー |
uzzy
|
| 提出日時 | 2020-12-18 23:19:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,196 bytes |
| コンパイル時間 | 2,085 ms |
| コンパイル使用メモリ | 163,104 KB |
| 実行使用メモリ | 19,968 KB |
| 最終ジャッジ日時 | 2025-06-22 03:04:41 |
| 合計ジャッジ時間 | 37,199 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 40 WA * 10 TLE * 5 -- * 19 |
ソースコード
//#pragma GCC optimize ("O2")
//#pragma GCC target ("avx2")
#include<bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define rep1(i, n) for(int i = 1; i <= (n); i++)
#define co(x) cout << (x) << "\n"
#define cosp(x) cout << (x) << " "
#define ce(x) cerr << (x) << "\n"
#define cesp(x) cerr << (x) << " "
#define pb push_back
#define mp make_pair
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define Would
#define you
#define please
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int N, K, X, Y;
cin >> N >> K >> X >> Y;
int A[1024] = {};
rep(i, K) {
int a;
cin >> a;
A[a]++;
}
ll dat1[1024][1025] = {}, dat2[1024][1025] = {};
auto mae = dat1;
auto tugi = dat2;
mae[0][1024] = 1;
rep(n, N) {
rep(k, 1024) if (A[k]) {
rep(i, 1024) rep(j, 1025) {
tugi[i ^ k][k] += mae[i][j] * (A[k] - (j == k));
}
}
rep(i, 1024) rep(j, 1025) mae[i][j] = 0;
swap(tugi, mae);
}
ll kotae = 0;
rep(i, 1024) rep(j, 1025) {
if (X <= i && i <= Y) {
kotae += mae[i][j];
}
}
co(kotae % 998244353);
Would you please return 0;
}
uzzy