結果

問題 No.510 二次漸化式
ユーザー parukiparuki
提出日時 2017-04-29 10:17:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,701 ms / 3,000 ms
コード長 2,904 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 181,852 KB
実行使用メモリ 96,660 KB
最終ジャッジ日時 2024-09-13 19:12:09
合計ジャッジ時間 38,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 181 ms
6,944 KB
testcase_03 AC 182 ms
6,940 KB
testcase_04 AC 184 ms
6,944 KB
testcase_05 AC 182 ms
6,940 KB
testcase_06 AC 384 ms
16,512 KB
testcase_07 AC 380 ms
16,352 KB
testcase_08 AC 383 ms
16,256 KB
testcase_09 AC 384 ms
16,384 KB
testcase_10 AC 79 ms
6,944 KB
testcase_11 AC 78 ms
6,940 KB
testcase_12 AC 79 ms
6,940 KB
testcase_13 AC 78 ms
6,940 KB
testcase_14 AC 77 ms
6,944 KB
testcase_15 AC 78 ms
6,944 KB
testcase_16 AC 1,488 ms
96,560 KB
testcase_17 AC 1,494 ms
96,640 KB
testcase_18 AC 1,502 ms
96,640 KB
testcase_19 AC 1,496 ms
96,548 KB
testcase_20 AC 1,484 ms
96,640 KB
testcase_21 AC 1,485 ms
96,548 KB
testcase_22 AC 1,477 ms
96,644 KB
testcase_23 AC 1,686 ms
96,512 KB
testcase_24 AC 1,693 ms
96,576 KB
testcase_25 AC 1,701 ms
96,636 KB
testcase_26 AC 1,684 ms
96,604 KB
testcase_27 AC 1,695 ms
96,552 KB
testcase_28 AC 1,680 ms
96,512 KB
testcase_29 AC 1,685 ms
96,516 KB
testcase_30 AC 1,684 ms
96,564 KB
testcase_31 AC 1,687 ms
96,660 KB
testcase_32 AC 1,683 ms
96,640 KB
testcase_33 AC 1,692 ms
96,620 KB
testcase_34 AC 1,610 ms
96,568 KB
testcase_35 AC 1,528 ms
96,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define pb push_back
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

const int MOD = (int)1e9 + 7;

vector<vector<int> > mulMatMod(const vector<vector<int> > &A, const vector<vector<int> > &B) {
    auto n = A.size(), m = A[0].size(), p = B[0].size();
    vector<vector<int> > res(n, vector<int>(p));
    for (int i = 0; i < n; ++i)for (int j = 0; j < p; ++j) for (int k = 0; k < m; ++k)
        res[i][j] = (int)((res[i][j] + (long long)A[i][k] * B[k][j]) % MOD);
    return res;
}

typedef vector<vi> mat;

template<class Value>
class SegmentTree {
    int n;
    Value init;
    vector<Value> dat;

    inline Value cal(Value a, Value b) {
        return mulMatMod(b, a);
    }

    inline Value query(int a, int b, int k, int l, int r) {
        if (r <= a || b <= l) return init;
        if (a <= l&&r <= b) return dat[k];
        else {
            Value vl, vr;
            vl = query(a, b, k << 1, l, (l + r) >> 1);
            vr = query(a, b, (k << 1) | 1, (l + r) >> 1, r);
            return cal(vl, vr);
        }
    }

public:
    SegmentTree() {}

    SegmentTree(int n_, Value init_) :n(1), init(init_) {
        for (; n<n_; n <<= 1);
        dat = vector<Value>(n << 1, init);
    }

    void update(int k, Value a) {
        k += n;
        dat[k] = a;
        while (k>1) {
            k >>= 1;
            dat[k] = cal(dat[k << 1], dat[(k << 1) | 1]);
        }
    }

    Value query(int a, int b) {
        return query(a, b, 1, 0, n);
    }
};
typedef SegmentTree<mat> SegTree;

int n, q;
mat A[100001];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);

    cin >> n >> q;
    mat E(4, vi(4));
    rep(i, 4)E[i][i] = 1;
    SegTree st(n + 1, E);

    rep(i, n) {
        A[i] = mat(4, vi(4));
        auto &B = A[i];
        B[0][0] = B[1][3] = B[2][3] = B[3][3] = 1;
        st.update(i, B);
    }
    while (q--) {
        string c; cin >> c;
        int k;
        cin >> k;
        auto &B = A[k];
        if (c == "x") {
            int v; cin >> v;
            B[0][2] = v;
            st.update(k, B);
        }
        else if (c == "y") {
            int v; cin >> v;
            B[1][1] = v;
            B[2][1] = v * 2;
            B[2][2] = (int)((ll)v*v % MOD);
            st.update(k, B);
        }
        else {
            auto C = st.query(0, k);
            ll ans = 0;
            rep(i, 4)ans += C[0][i];
            cout << ans%MOD << endl;
        }
    }
}
0