結果

問題 No.1839 Concatenation Matrix
ユーザー hitonanodehitonanode
提出日時 2021-12-19 17:52:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 3,500 ms
コード長 1,118 bytes
コンパイル時間 8,762 ms
コンパイル使用メモリ 262,284 KB
実行使用メモリ 9,312 KB
最終ジャッジ日時 2024-09-15 14:46:35
合計ジャッジ時間 10,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 30 ms
5,376 KB
testcase_11 AC 119 ms
9,308 KB
testcase_12 AC 118 ms
9,184 KB
testcase_13 AC 119 ms
9,308 KB
testcase_14 AC 120 ms
9,304 KB
testcase_15 AC 119 ms
9,312 KB
testcase_16 AC 83 ms
6,728 KB
testcase_17 AC 86 ms
6,744 KB
testcase_18 AC 103 ms
8,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Validator
#include "testlib.h"
#include <iostream>
#include <vector>
using namespace std;

#include <atcoder/modint>
using mint = atcoder::modint998244353;
#include <atcoder/convolution>

int main(int argc, char **argv) {
    registerValidation(argc, argv);

    int N = inf.readInt(2, 100000);
    inf.readEoln();

    vector<mint> A(N);
    for (int i = 0; i < N; ++i) {
        int x = inf.readInt(1, 9);
        if (i + 1 == N) {
            inf.readEoln();
        } else {
            inf.readSpace();
        }
        A[i] = x;
    }
    inf.readEof();

    vector<mint> ps{10};
    while (int(ps.size()) < N) {
        auto b = ps.back();
        ps.push_back(b * b);
    }

    auto rec = [&](auto &&self, int l, int r) -> vector<mint> {
        if (l + 1 == r) return {1, ps[l]};
        int c = (l + r) / 2;
        return atcoder::convolution(self(self, l, c), self(self, c, r));
    };
    auto vs = atcoder::convolution(A, rec(rec, 0, N - 1));
    vector<mint> ret(N);
    for (int i = 0; i < int(vs.size()); ++i) ret[(i + 1) % ret.size()] += vs[i];
    for (auto x : ret) cout << x.val() << '\n';
}
0