結果
| 問題 |
No.1304 あなたは基本が何か知っていますか?私は知っています.
|
| コンテスト | |
| ユーザー |
uzzy
|
| 提出日時 | 2020-12-18 23:55:48 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,388 bytes |
| コンパイル時間 | 1,673 ms |
| コンパイル使用メモリ | 163,252 KB |
| 実行使用メモリ | 20,096 KB |
| 最終ジャッジ日時 | 2025-06-22 03:05:02 |
| 合計ジャッジ時間 | 25,679 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 42 WA * 10 TLE * 3 -- * 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[1025] = {};
rep(i, K) {
int a;
cin >> a;
A[a]++;
}
ll dat1[1025][1025] = {}, dat2[1025][1025] = {};
auto mae = dat1;
auto tugi = dat2;
mae[1024][0] = 1;
A[1024] = 1;
rep(n, N) {
rep(k, 1024) if (A[k]) {
auto tmp1 = tugi[k];
int a = A[k];
rep(j, 1025) if (A[j]) {
auto tmp2 = mae[j];
if (j == k) {
rep(i, 1024) {
tmp1[i ^ k] += tmp2[i] * (a - 1);
}
}
else {
rep(i, 1024) {
tmp1[i ^ k] += tmp2[i] * a;
}
}
}
}
rep(i, 1025) rep(j, 1025) mae[i][j] = 0;
swap(tugi, mae);
}
ll kotae = 0;
rep(i, 1025) rep(j, 1025) {
if (X <= j && j <= Y) {
kotae += mae[i][j];
}
}
co(kotae % 998244353);
Would you please return 0;
}
uzzy