結果
問題 | No.1172 Add Recursive Sequence |
ユーザー | beet |
提出日時 | 2020-11-14 15:20:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,626 ms / 4,000 ms |
コード長 | 1,140 bytes |
コンパイル時間 | 3,533 ms |
コンパイル使用メモリ | 220,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 22:57:58 |
合計ジャッジ時間 | 9,477 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 17 ms
5,376 KB |
testcase_11 | AC | 15 ms
5,376 KB |
testcase_12 | AC | 48 ms
5,376 KB |
testcase_13 | AC | 46 ms
5,376 KB |
testcase_14 | AC | 551 ms
5,376 KB |
testcase_15 | AC | 1,609 ms
5,376 KB |
testcase_16 | AC | 585 ms
5,376 KB |
testcase_17 | AC | 1,626 ms
5,376 KB |
ソースコード
// verification-helper: PROBLEM https://yukicoder.me/problems/4271 #define call_from_test #ifndef call_from_test #include <bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE #pragma GCC optimize ("O3") #pragma GCC target ("avx2") // or sse4 #pragma GCC optimize("unroll-loops") //END CUT HERE #ifndef call_from_test signed main(){ return 0; } #endif #undef call_from_test #include <bits/stdc++.h> using namespace std; const int MAX = 1e5; const int MOD = 1e9+7; using uint = unsigned int; inline uint add_mod(uint a, uint b) { return (a += b) >= MOD ? a - MOD : a; } uint mul(uint x,uint y){ return 1ULL*x*y%MOD; } uint xs[MAX]={}; uint as[MAX]={}; uint cs[MAX]={}; signed main(){ cin.tie(0); ios::sync_with_stdio(0); const char newl = '\n'; int k,n,m; cin>>k>>n>>m; for(int i=0;i<k;i++) cin>>as[i]; for(int i=0;i<k;i++) cin>>cs[i]; for(int i=k;i<n;i++) for(int j=0;j<k;j++) as[i]=add_mod(as[i],mul(cs[j],as[i-(j+1)])); for(int i=0;i<m;i++){ int l,r; cin>>l>>r; for(int k=l;k<r;k++) xs[k]=add_mod(xs[k],as[k-l]); } for(int i=0;i<n;i++) cout<<xs[i]<<newl; return 0; }