結果

問題 No.510 二次漸化式
ユーザー Ut.kUt.k
提出日時 2017-04-29 00:01:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,177 ms / 3,000 ms
コード長 795 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 61,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 18:44:44
合計ジャッジ時間 14,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 633 ms
6,940 KB
testcase_03 AC 1,010 ms
6,944 KB
testcase_04 AC 1,108 ms
6,940 KB
testcase_05 AC 842 ms
6,940 KB
testcase_06 AC 282 ms
6,940 KB
testcase_07 AC 278 ms
6,944 KB
testcase_08 AC 271 ms
6,944 KB
testcase_09 AC 272 ms
6,940 KB
testcase_10 AC 25 ms
6,940 KB
testcase_11 AC 25 ms
6,940 KB
testcase_12 AC 25 ms
6,940 KB
testcase_13 AC 25 ms
6,944 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 AC 25 ms
6,940 KB
testcase_16 AC 228 ms
6,944 KB
testcase_17 AC 220 ms
6,944 KB
testcase_18 AC 219 ms
6,940 KB
testcase_19 AC 214 ms
6,944 KB
testcase_20 AC 222 ms
6,944 KB
testcase_21 AC 216 ms
6,940 KB
testcase_22 AC 215 ms
6,944 KB
testcase_23 AC 573 ms
6,940 KB
testcase_24 AC 648 ms
6,940 KB
testcase_25 AC 563 ms
6,940 KB
testcase_26 AC 562 ms
6,940 KB
testcase_27 AC 557 ms
6,944 KB
testcase_28 AC 564 ms
6,940 KB
testcase_29 AC 562 ms
6,940 KB
testcase_30 AC 564 ms
6,940 KB
testcase_31 AC 16 ms
6,940 KB
testcase_32 AC 15 ms
6,940 KB
testcase_33 AC 15 ms
6,940 KB
testcase_34 AC 604 ms
6,940 KB
testcase_35 AC 1,177 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

vector<int> x;
vector<int> y;

long mod(long l) {
  return l % 1000000007;
}

long b(int i) {
  if (i == 0 || y[i - 1] == 0) {
    return 1;
  }
  return mod(mod(y[i - 1]) * b(i - 1) + 1);
}

long a(int i) {
  if (i == 0) {
    return 1;
  }
  if (x[i - 1] == 0) {
    return a(i - 1);
  }
  long bb = mod(b(i - 1));
  return mod(mod(x[i - 1]) * mod(bb * bb) + a(i - 1));
}

int main() {
  int n, q;
  cin >> n >> q;
  x.resize(n);
  fill(x.begin(), x.end(), 0);
  y.resize(n);
  fill(y.begin(), y.end(), 0);

  for (int i = 0; i < q; i++) {
    char c;
    int j;
    cin >> c >> j;
    if (c == 'x') {
      cin >> x[j];
    } else if (c == 'y') {
      cin >> y[j];
    } else {
      cout << a(j) << endl;
    }
  }

  return 0;
}
0