test/cpv/library-checker-polynomial/multipoint_evaluation.mints-ms64.poly_nttmod-pntt.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #define AUTO_GENERATED | ||
| 2 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/multipoint_evaluation | ||
| 3 | #include "../../../src/fps/mpe/lib.hpp" | ||
| 4 | #include "../../../src/io/fastin/lib.hpp" | ||
| 5 | #include "../../../src/io/fastout/lib.hpp" | ||
| 6 | |||
| 7 | using namespace tifa_libs; | ||
| 8 | CEXP u32 MOD = 998244353; | ||
| 9 | |||
| 10 | #include "../../../src/fps/ds/ntt/lib.hpp" | ||
| 11 | #include "../../../src/math/ds/mint/ms64/lib.hpp" | ||
| 12 | |||
| 13 | using namespace tifa_libs; | ||
| 14 | using mint = mint_ms64<MOD>; | ||
| 15 | using namespace tifa_libs; | ||
| 16 | using poly = polyntt<mint>; | ||
| 17 | |||
| 18 | 11 | int main() { | |
| 19 | u32 n, m; | ||
| 20 | 11 | tifa_libs::fin_uint >> n >> m; | |
| 21 | 11 | poly a(n), p(m); | |
| 22 | 11 | tifa_libs::fin_uint >> a >> p; | |
| 23 |
2/4✓ Branch 1 taken 11 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 11 times.
✗ Branch 5 not taken.
|
11 | tifa_libs::fout << tifa_libs::mpe_fps(a, p) << '\n'; |
| 24 | 11 | return 0; | |
| 25 | 11 | } | |
| 26 |