結果

問題 No.1172 Add Recursive Sequence
ユーザー SSRSSSRS
提出日時 2020-08-14 22:08:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 803 bytes
コンパイル時間 3,410 ms
コンパイル使用メモリ 188,632 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 15:24:17
合計ジャッジ時間 10,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 6 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 6 ms
6,820 KB
testcase_10 AC 56 ms
6,816 KB
testcase_11 AC 53 ms
6,820 KB
testcase_12 AC 126 ms
6,820 KB
testcase_13 AC 100 ms
6,816 KB
testcase_14 AC 1,426 ms
6,816 KB
testcase_15 TLE -
testcase_16 AC 1,533 ms
6,820 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
int main(){
  int K, N, M;
  cin >> K >> N >> M;
  vector<long long> a(N);
  for (int i = 0; i < K; i++){
    cin >> a[i];
  }
  vector<long long> c(K);
  for (int i = 0; i < K; i++){
    cin >> c[i];
  }
  for (int i = K; i < N; i++){
    for (int j = 0; j < K; j++){
      a[i] += a[i - j - 1] * c[j] % MOD;
      a[i] %= MOD;
    }
  }
  vector<int> l(M), r(M);
  for (int i = 0; i < M; i++){
    cin >> l[i] >> r[i];
  }
  vector<long long> x(N, 0);
  for (int i = 0; i < M; i++){
    for (int j = l[i]; j < r[i]; j++){
      x[j] += a[j - l[i]];
    }
  }
  for (int i = 0; i < N; i++){
    cout << x[i] % MOD << endl;
  }
}
0