結果

問題 No.510 二次漸化式
ユーザー tsutajtsutaj
提出日時 2017-08-02 13:46:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 3,000 ms
コード長 2,758 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 87,552 KB
最終ジャッジ日時 2024-10-11 05:51:12
合計ジャッジ時間 18,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
87,424 KB
testcase_01 AC 149 ms
87,296 KB
testcase_02 AC 413 ms
87,424 KB
testcase_03 AC 410 ms
87,424 KB
testcase_04 AC 407 ms
87,424 KB
testcase_05 AC 407 ms
87,424 KB
testcase_06 AC 450 ms
87,296 KB
testcase_07 AC 463 ms
87,296 KB
testcase_08 AC 459 ms
87,424 KB
testcase_09 AC 445 ms
87,424 KB
testcase_10 AC 391 ms
87,424 KB
testcase_11 AC 392 ms
87,424 KB
testcase_12 AC 395 ms
87,424 KB
testcase_13 AC 398 ms
87,424 KB
testcase_14 AC 400 ms
87,424 KB
testcase_15 AC 395 ms
87,424 KB
testcase_16 AC 345 ms
87,424 KB
testcase_17 AC 334 ms
87,552 KB
testcase_18 AC 344 ms
87,296 KB
testcase_19 AC 332 ms
87,296 KB
testcase_20 AC 331 ms
87,424 KB
testcase_21 AC 338 ms
87,424 KB
testcase_22 AC 332 ms
87,424 KB
testcase_23 AC 530 ms
87,424 KB
testcase_24 AC 520 ms
87,424 KB
testcase_25 AC 521 ms
87,424 KB
testcase_26 AC 523 ms
87,424 KB
testcase_27 AC 520 ms
87,424 KB
testcase_28 AC 520 ms
87,424 KB
testcase_29 AC 517 ms
87,296 KB
testcase_30 AC 528 ms
87,424 KB
testcase_31 AC 528 ms
87,424 KB
testcase_32 AC 518 ms
87,424 KB
testcase_33 AC 515 ms
87,424 KB
testcase_34 AC 457 ms
87,424 KB
testcase_35 AC 377 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define rep(i,a,n) for(int i=a; i<n; i++)
using namespace std;
typedef long long int ll;
#define int long long int
constexpr int MOD = 1000000007;


template <typename T>
using Matrix = vector< vector<T> >;

template <typename T>
void init_mat(Matrix<T> &A, int h, int w) {
    A.resize(h, vector<T>(w, 0));
}

template <typename T>
Matrix<T> calc_mat(Matrix<T> A, Matrix<T> B) {
    Matrix<T> C(A.size(), vector<T>(B[0].size()));
    for(int i=0; i<A.size(); i++) {
        for(int k=0; k<B.size(); k++) {
            for(int j=0; j<B[0].size(); j++) {
                // C[i][j] += A[i][k] * B[k][j]; // modなし
                C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % MOD; // modあり
            }
        }
    }
    return C;
}

template <typename T>
Matrix<T> mat_pow(Matrix<T> A, ll n) {
    Matrix<T> B(A.size(), vector<T>(A.size()));
    for(int i=0; i<A.size(); i++) B[i][i] = 1;
    while(n > 0) {
        if(n & 1) B = calc_mat(B, A);
        A = calc_mat(A, A);
        n >>= 1;
    }
    return B;
}

void printmat(int p);

static const ll S = 1 << 17;
struct SegTree {
    Matrix<ll> node[2*S], I;
    SegTree() {
        I = { {1, 0, 0, 0}, {0, 1, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1} };
        rep(i,0,2*S) {
            node[i] = { {1, 0, 0, 0}, {0, 0, 0, 1}, {0, 0, 0, 1}, {0, 0, 0, 1} };
        }
    }
    void change(int x, Matrix<ll> M) {
        int p = x + (S - 1);
        node[p] = M;
        while(p > 0) {
            int c1 = p, c2 = p + (p % 2 ? 1 : -1);
            if(c1 > c2) swap(c1, c2);
            p = (p - 1) / 2;
            node[p] = calc_mat(node[c2], node[c1]);
        }
    }
    Matrix<ll> query(int a, int b, int l=0, int r=S, int k=0) {
        if(b <= l || r <= a) return I;
        if(a <= l && r <= b) return node[k];
        int mid = (l + r) / 2;
        Matrix<ll> vl = query(a, b, l, mid, 2*k+1);
        Matrix<ll> vr = query(a, b, mid, r, 2*k+2);
        return calc_mat(vr, vl);
    }
};

int N, Q;
SegTree seg;

signed main() {
    cin >> N >> Q;
    rep(x,0,Q) {
        char q; cin >> q;
        if(q == 'x') {
            int i, v; cin >> i >> v;
            Matrix<ll> nmat = seg.node[S+i-1];
            nmat[0][2] = v;
            seg.change(i, nmat);
        }
        if(q == 'y') {
            int i, v; cin >> i >> v;
            Matrix<ll> nmat = seg.node[S+i-1];
            nmat[1][1] = v;
            nmat[2][1] = 2 * v;
            nmat[2][2] = (v * v) % MOD;
            seg.change(i, nmat);
        }
        if(q == 'a') {
            int i; cin >> i;
            Matrix<ll> qmat = seg.query(0, i);
            int ans = 0;
            rep(i,0,4) (ans += qmat[0][i]) %= MOD;
            cout << ans << endl;
        }
    }
    return 0;
}
0