結果

問題 No.1172 Add Recursive Sequence
ユーザー 👑 NachiaNachia
提出日時 2020-10-07 16:52:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 873 ms / 4,000 ms
コード長 795 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 168,680 KB
実行使用メモリ 315,984 KB
最終ジャッジ日時 2024-07-20 03:27:30
合計ジャッジ時間 6,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 11 ms
8,832 KB
testcase_07 AC 9 ms
8,320 KB
testcase_08 AC 9 ms
8,064 KB
testcase_09 AC 9 ms
8,576 KB
testcase_10 AC 79 ms
56,576 KB
testcase_11 AC 80 ms
60,800 KB
testcase_12 AC 70 ms
54,784 KB
testcase_13 AC 65 ms
51,712 KB
testcase_14 AC 534 ms
315,980 KB
testcase_15 AC 471 ms
315,984 KB
testcase_16 AC 873 ms
315,984 KB
testcase_17 AC 658 ms
315,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

const ULL M=1000000007;

int K,N,Q;
ULL a[200],C[200];
ULL A[100001][200]={};
ULL G[100001][200]={};

int main(){
 cin>>K>>N>>Q;
 rep(i,K) cin>>a[i];
 rep(i,K) cin>>C[i]; reverse(C,C+K);

 A[0][0]=1;
 for(int i=1; i<=N; i++){
  rep(j,K-1) A[i][j+1]=A[i-1][j];
  rep(j,K) A[i][j]=(A[i][j]+A[i-1][K-1]*C[j])%M;
 }

 rep(q,Q){
  int l,r; cin>>l>>r;
  rep(i,K) G[l][i]=(G[l][i]+A[0][i])%M;
  rep(i,K) G[r][i]=(G[r][i]+M-A[r-l][i])%M;
 }

 for(int i=1; i<=N; i++){
  rep(j,K-1) G[i][j+1]=(G[i][j+1]+G[i-1][j])%M;
  rep(j,K) G[i][j]=(G[i][j]+G[i-1][K-1]*C[j])%M;
 }

 rep(i,N){
  ULL ans=0;
  rep(j,K) ans=(ans+G[i][j]*a[j])%M;
  cout<<ans<<endl;
 }

 return 0;
}
0