結果
問題 | No.1172 Add Recursive Sequence |
ユーザー | ryoissy |
提出日時 | 2020-08-15 13:11:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,035 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 167,308 KB |
実行使用メモリ | 166,272 KB |
最終ジャッジ日時 | 2024-10-10 17:43:35 |
合計ジャッジ時間 | 4,745 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
6,144 KB |
testcase_08 | AC | 4 ms
6,144 KB |
testcase_09 | AC | 4 ms
6,400 KB |
testcase_10 | AC | 16 ms
31,360 KB |
testcase_11 | AC | 18 ms
33,536 KB |
testcase_12 | AC | 15 ms
30,208 KB |
testcase_13 | AC | 14 ms
28,544 KB |
testcase_14 | AC | 155 ms
166,272 KB |
testcase_15 | AC | 150 ms
165,248 KB |
testcase_16 | AC | 879 ms
166,272 KB |
testcase_17 | AC | 534 ms
165,504 KB |
ソースコード
#include <bits/stdc++.h> #define MOD 1000000007LL using namespace std; typedef long long ll; typedef pair<int,int> P; int n,k,m; ll a[200005],c[200005]; ll d[200005][205]; ll y[200005]; ll x[200005]; int main(void){ scanf("%d%d%d",&k,&n,&m); for(int i=0;i<k;i++){ scanf("%lld",&a[i]); } for(int i=1;i<=k;i++){ scanf("%lld",&c[i]); } c[0]=-1; for(int i=k;i<=n;i++){ ll sum=0; for(int j=1;j<=k;j++){ sum+=a[i-j]*c[j]%MOD; sum%=MOD; } a[i]=sum; } for(int i=0;i<n;i++){ for(int j=0;j<k;j++){ d[i][j]=c[j]*a[i-j]; if(d[i][j]<0){ d[i][j]+=MOD; } d[i][j]%=MOD; if(j>0){ d[i][j]+=d[i][j-1]; d[i][j]%=MOD; } } } for(int i=0;i<m;i++){ int l,r; scanf("%d%d",&l,&r); for(int j=l;j<min(l+k,n);j++){ y[j]+=d[j-l][j-l]; y[j]%=MOD; } for(int j=r;j<min(r+k,n);j++){ y[j]+=MOD-d[j-l][j-r]; y[j]%=MOD; } } for(int i=0;i<n;i++){ x[i]=MOD-y[i]; for(int j=1;j<min(i,k)+1;j++){ x[i]+=c[j]*x[i-j]%MOD; x[i]%=MOD; } printf("%lld\n",x[i]); } return 0; }