結果
問題 | No.510 二次漸化式 |
ユーザー | pekempey |
提出日時 | 2017-04-30 18:20:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 46 ms / 3,000 ms |
コード長 | 2,373 bytes |
コンパイル時間 | 767 ms |
コンパイル使用メモリ | 76,048 KB |
実行使用メモリ | 20,652 KB |
最終ジャッジ日時 | 2024-09-13 23:53:16 |
合計ジャッジ時間 | 2,978 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 16 ms
6,940 KB |
testcase_03 | AC | 16 ms
6,944 KB |
testcase_04 | AC | 16 ms
6,944 KB |
testcase_05 | AC | 16 ms
6,940 KB |
testcase_06 | AC | 23 ms
6,940 KB |
testcase_07 | AC | 23 ms
6,940 KB |
testcase_08 | AC | 22 ms
6,944 KB |
testcase_09 | AC | 23 ms
6,940 KB |
testcase_10 | AC | 10 ms
6,940 KB |
testcase_11 | AC | 10 ms
6,940 KB |
testcase_12 | AC | 10 ms
6,944 KB |
testcase_13 | AC | 10 ms
6,940 KB |
testcase_14 | AC | 10 ms
6,940 KB |
testcase_15 | AC | 10 ms
6,944 KB |
testcase_16 | AC | 30 ms
20,584 KB |
testcase_17 | AC | 28 ms
20,580 KB |
testcase_18 | AC | 28 ms
20,632 KB |
testcase_19 | AC | 29 ms
20,500 KB |
testcase_20 | AC | 30 ms
20,496 KB |
testcase_21 | AC | 29 ms
20,596 KB |
testcase_22 | AC | 29 ms
20,652 KB |
testcase_23 | AC | 41 ms
20,564 KB |
testcase_24 | AC | 43 ms
20,592 KB |
testcase_25 | AC | 41 ms
20,648 KB |
testcase_26 | AC | 40 ms
20,504 KB |
testcase_27 | AC | 41 ms
20,528 KB |
testcase_28 | AC | 41 ms
20,580 KB |
testcase_29 | AC | 41 ms
20,472 KB |
testcase_30 | AC | 41 ms
20,500 KB |
testcase_31 | AC | 45 ms
20,496 KB |
testcase_32 | AC | 45 ms
20,496 KB |
testcase_33 | AC | 46 ms
20,600 KB |
testcase_34 | AC | 33 ms
20,652 KB |
testcase_35 | AC | 29 ms
20,560 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <array> #include <vector> const int mod = 1e9 + 7; struct modint { int n; modint(int n = 0) : n(n) {} }; modint operator+(modint a, modint b) { return modint((a.n += b.n) >= mod ? a.n - mod : a.n); } modint operator-(modint a, modint b) { return modint((a.n -= b.n) < 0 ? a.n + mod : a.n); } modint operator*(modint a, modint b) { return modint(1LL * a.n * b.n % mod); } modint &operator+=(modint &a, modint b) { return a = a + b; } modint &operator-=(modint &a, modint b) { return a = a - b; } modint &operator*=(modint &a, modint b) { return a = a * b; } using V = std::array<modint, 4>; using M = std::array<V, 4>; M operator*(const M &a, const M &b) { long long c[4][4]; for (int i = 0; i < 3; i++) { for (int j = 1; j < 4; j++) { c[i][j] = 0; } } for (int i = 0; i < 3; i++) { for (int k = 0; k < 4; k++) { for (int j = 1; j < 4; j++) { c[i][j] += 1LL * a[i][k].n * b[k][j].n; } } } M ret = {}; for (int i = 0; i < 3; i++) { for (int j = 1; j < 4; j++) { ret[i][j] = c[i][j] % mod; } } ret[0][0] = 1; ret[3][3] = 1; return ret; } M getmat(modint x, modint y) { return M{ V{1, 0, x, 0}, V{0, y, 0, 1}, V{0, 2 * y, y * y, 1}, V{0, 0, 0, 1}, }; } int main() { int n, q; std::cin >> n >> q; std::vector<int> xs(n); std::vector<int> ys(n); int N = 1; while (N < n) { N *= 2; } std::vector<M> seg(N * 2); for (int i = 0; i < N * 2; i++) { seg[i] = getmat(0, 0); } for (int i = N - 1; i >= 1; i--) { seg[i] = seg[i * 2 + 1] * seg[i * 2]; } auto setval = [&](int k, M v) { k += N; seg[k] = v; while (k > 1) { k /= 2; seg[k] = seg[k * 2 + 1] * seg[k * 2]; } }; auto getval = [&](int k) { if (k == N) { return seg[1]; } k += N; M ret = {}; for (int i = 0; i < 4; i++) { ret[i][i] = 1; } while (k > 1) { if (k & 1) { ret = ret * seg[--k]; } k /= k & -k; } return ret; }; while (q--) { char c; scanf(" %c", &c); if (c == 'x') { int i, v; scanf("%d %d", &i, &v); xs[i] = v; setval(i, getmat(xs[i], ys[i])); } else if (c == 'y') { int i, v; scanf("%d %d", &i, &v); ys[i] = v; setval(i, getmat(xs[i], ys[i])); } else { int i; scanf("%d", &i); auto m = getval(i); printf("%d\n", (m[0][0] + m[0][1] + m[0][2] + m[0][3]).n); } } }