結果
問題 | No.1533 Don't be Negative! |
ユーザー | tatyam |
提出日時 | 2021-05-28 00:47:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,051 bytes |
コンパイル時間 | 3,351 ms |
コンパイル使用メモリ | 228,616 KB |
実行使用メモリ | 12,816 KB |
最終ジャッジ日時 | 2024-11-06 18:17:34 |
合計ジャッジ時間 | 26,771 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 64 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 4,290 ms
6,816 KB |
testcase_12 | AC | 3,398 ms
6,816 KB |
testcase_13 | AC | 403 ms
6,820 KB |
testcase_14 | AC | 1,480 ms
6,816 KB |
testcase_15 | AC | 3,854 ms
6,820 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2") #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; #include <atcoder/modint> using Modint = atcoder::modint998244353; int main(){ int N, M, K; cin >> N >> M >> K; const Modint s = M * 2 - 1 + (K == 0); vector<Modint> a = {1}, b = {0, 1}, a2; Modint ans = 0; for(int i = 0; i < N; i++){ a2.assign(a.size() + M * 2, 0); for(int i = 0; i < b.size() - 1; i++) a2[i] += b[i + 1]; for(int i = b.size() - 1; i < a2.size(); i++) a2[i] += b.back(); for(int i = 1; i < b.size() - 1; i++) a2.end()[-i] -= b.rbegin()[i]; for(int i = 0; i < a.size(); i++) a2[i + M + K] -= a[i]; if(K) for(int i = 0; i < a.size(); i++) a2[i + M - K] -= a[i]; swap(a, a2); b.resize(a.size() + 1); for(int i = 0; i < a.size(); i++) b[i + 1] = b[i] + a[i]; ans *= s; ans += b[M * (i + 1)] * (N - i); } cout << ans.val() << endl; }