結果
問題 | No.2489 X and Xor 2 |
ユーザー | SSRS |
提出日時 | 2023-09-29 21:47:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,006 bytes |
コンパイル時間 | 2,554 ms |
コンパイル使用メモリ | 212,176 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 16:11:12 |
合計ジャッジ時間 | 7,561 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long MOD = 998244353; const int LOG = 60; int main(){ long long N, M; cin >> N >> M; assert(N <= 100); vector<long long> POW(LOG); for (int i = 0; i < LOG; i++){ POW[i] = (long long) 1 << i; } vector<vector<long long>> S(LOG, vector<long long>(2, 0)); for (int i = 0; i < LOG; i++){ long long b = POW[i]; S[i][0] = M / (b * 2) * b + min(M % (b * 2), b); S[i][1] = M / (b * 2) * b + max(M % (b * 2) - b, (long long) 0); S[i][0] %= MOD; S[i][1] %= MOD; } vector<vector<vector<long long>>> dp(N - 1, vector<vector<long long>>(LOG, vector<long long>(2, 0))); for (int i = 0; i < LOG; i++){ for (int j = 0; j < 2; j++){ dp[0][i][j] = S[i][j] * (POW[i] % MOD) % MOD; } } for (int i = 1; i < N - 1; i++){ for (int j = 0; j < LOG; j++){ for (int k = 0; k < 2; k++){ for (int l = 0; l < LOG; l++){ for (int m = 0; m < 2; m++){ vector<vector<long long>> dp2(LOG + 1, vector<long long>(2, 0)); dp2[LOG][0] = 1; for (int x = LOG - 1; x >= 0; x--){ for (int y = 0; y < 2; y++){ for (int d = 0; d < 2; d++){ if (!(x == j && d == k) && !(x == l && d != m)){ if (!((M >> x & 1) == 0 && y == 0 && d == 1)){ int y2 = y; if ((M >> x & 1) == 1 && d == 0){ y2 = 1; } dp2[x][y2] += dp2[x + 1][y]; } } } } } long long cnt = dp2[0][1] % MOD; dp[i][l][m] += dp[i - 1][j][k] * cnt % MOD * (POW[l] % MOD); dp[i][l][m] %= MOD; } } } } } long long ans = 0; for (int i = 0; i < LOG; i++){ for (int j = 0; j < 2; j++){ ans += dp[N - 2][i][j] * S[i][j ^ 1]; ans %= MOD; } } cout << ans << endl; }