ac-library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub habara-k/ac-library

:heavy_check_mark: test/fps_bostan_mori.test.cpp

Depends on

Code

#define PROBLEM "https://judge.yosupo.jp/problem/kth_term_of_linearly_recurrent_sequence"

#include <atcoder/fps>
#include <iostream>

using namespace atcoder;
using namespace std;

int main() {
    int d; long long k;
    cin >> d >> k;
    fps a(d), c(d+1);
    for (int i = 0; i < d; i++) { int t; cin >> t; a[i] = t; }
    for (int i = 0; i < d; i++) { int t; cin >> t; c[i+1] = -t; }
    c[0] = 1;
    a = convolution(a, c);
    a.resize(d);

    cout << bostan_mori(a, c, k).val() << endl;
}
#line 1 "test/fps_bostan_mori.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/kth_term_of_linearly_recurrent_sequence"

#include <atcoder/fps>
#include <iostream>

using namespace atcoder;
using namespace std;

int main() {
    int d; long long k;
    cin >> d >> k;
    fps a(d), c(d+1);
    for (int i = 0; i < d; i++) { int t; cin >> t; a[i] = t; }
    for (int i = 0; i < d; i++) { int t; cin >> t; c[i+1] = -t; }
    c[0] = 1;
    a = convolution(a, c);
    a.resize(d);

    cout << bostan_mori(a, c, k).val() << endl;
}
Back to top page