結果
問題 | No.2994 べき内積 |
ユーザー | t98slider |
提出日時 | 2024-12-21 05:06:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,362 bytes |
コンパイル時間 | 6,137 ms |
コンパイル使用メモリ | 272,044 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 05:07:01 |
合計ジャッジ時間 | 8,550 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 4 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 5 ms
6,820 KB |
testcase_10 | AC | 12 ms
6,820 KB |
testcase_11 | AC | 11 ms
6,820 KB |
testcase_12 | AC | 12 ms
6,820 KB |
testcase_13 | AC | 12 ms
6,816 KB |
testcase_14 | AC | 11 ms
6,820 KB |
testcase_15 | AC | 12 ms
6,820 KB |
testcase_16 | AC | 12 ms
6,820 KB |
testcase_17 | AC | 11 ms
6,820 KB |
testcase_18 | AC | 12 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using mint = atcoder::modint998244353; using mint2 = atcoder::static_modint<1009>; int main(){ ios::sync_with_stdio(false); cin.tie(0); int m, n; cin >> m >> n; m++, n++; vector<int> K(m), A(n); for(auto &&v : K) cin >> v; for(auto &&v : A) cin >> v; vector<mint> ans(1, 1), B(n); int prd = 1, idx = 0; auto safe = [&](vector<mint> &tmp){ for(auto &&v : tmp) v = v.val() % 1009; }; auto frobenius = [&](int ex){ vector<mint> tmp(1, 1); for(int i = 0; i < n; i++) B[i] = mint::raw(A[i]); while(ex){ if(ex & 1){ (tmp = convolution(tmp, B)).resize(n); safe(tmp); } if(ex >= 2){ (B = convolution(B, B)).resize(n); safe(B); } ex /= 2; } if(prd == 1009){ tmp[1] = tmp[1009]; tmp.resize(2); } return tmp; }; while(idx < m && prd < n){ (ans = convolution(ans, frobenius(K[idx++]))).resize(n); safe(ans); prd *= 1009; } mint2 coef = mint2::raw(A[0]).pow(accumulate(K.begin() + idx, K.end(), 0)); for(int i = 0; i < n; i++){ cout << (coef * ans[i].val()).val() << (i + 1 == n ? '\n' : ' '); } }