結果

問題 No.1172 Add Recursive Sequence
ユーザー SSRSSSRS
提出日時 2020-08-14 21:59:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 741 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 185,356 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-10-10 15:12:39
合計ジャッジ時間 10,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 54 ms
5,248 KB
testcase_11 AC 53 ms
5,248 KB
testcase_12 AC 125 ms
5,248 KB
testcase_13 AC 102 ms
5,248 KB
testcase_14 AC 1,439 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 1,507 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<long long> x(N, 0);
  for (int i = 0; i < M; i++){
    int l, r;
    cin >> l >> r;
    for (int j = l; j < r; j++){
      x[j] += a[j - l];
    }
  }
  for (int i = 0; i < N; i++){
    cout << x[i] % MOD << endl;
  }
}
0