結果
問題 | No.510 二次漸化式 |
ユーザー | xxxxxxxxxxxxxxxxxxxx |
提出日時 | 2017-04-28 23:47:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,123 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 170,136 KB |
実行使用メモリ | 13,600 KB |
最終ジャッジ日時 | 2024-09-13 18:43:43 |
合計ジャッジ時間 | 24,865 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,340 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 60 ms
6,940 KB |
testcase_03 | AC | 61 ms
6,944 KB |
testcase_04 | AC | 61 ms
6,944 KB |
testcase_05 | AC | 59 ms
6,940 KB |
testcase_06 | AC | 385 ms
6,944 KB |
testcase_07 | AC | 385 ms
6,940 KB |
testcase_08 | AC | 384 ms
6,940 KB |
testcase_09 | AC | 390 ms
6,944 KB |
testcase_10 | AC | 24 ms
6,940 KB |
testcase_11 | AC | 23 ms
6,944 KB |
testcase_12 | AC | 24 ms
6,940 KB |
testcase_13 | AC | 23 ms
6,944 KB |
testcase_14 | AC | 23 ms
6,944 KB |
testcase_15 | AC | 24 ms
6,940 KB |
testcase_16 | AC | 2,393 ms
6,944 KB |
testcase_17 | AC | 2,294 ms
6,940 KB |
testcase_18 | AC | 2,332 ms
6,940 KB |
testcase_19 | AC | 2,310 ms
6,940 KB |
testcase_20 | AC | 2,346 ms
6,940 KB |
testcase_21 | AC | 2,341 ms
6,944 KB |
testcase_22 | AC | 2,384 ms
6,940 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long MOD = 1000000000 + 7; int main() { int n, q; cin >> n >> q; vector<long>x(n); vector<long>y(n); vector<long>a(n + 1); vector<long>b(n + 1); a[0] = 1; b[0] = 1; for (int i = 0; i < n; ++i) { a[i + 1] = (x[i] * ((b[i] * b[i]) % MOD) % MOD) + a[i]; b[i + 1] = y[i] * b[i] + 1; a[i + 1] %= MOD; b[i + 1] %= MOD; } for (int t = 0; t < q; ++t) { char c; cin >> c; switch (c) { case 'x': { int idx, val; cin >> idx >> val; x[idx] = val; for (int i = idx; i < n; ++i) { a[i + 1] = (x[i] * ((b[i] * b[i]) % MOD) % MOD) + a[i]; a[i + 1] %= MOD; } } break; case 'y': { int idx, val; cin >> idx >> val; y[idx] = val; for (int i = idx; i < n; ++i) { a[i + 1] = (x[i] * ((b[i] * b[i]) % MOD) % MOD) + a[i]; b[i + 1] = y[i] * b[i] + 1; a[i + 1] %= MOD; b[i + 1] %= MOD; } } break; case 'a': { int idx; cin >> idx; cout << a[idx] << endl; } } } return 0; }