結果
問題 | No.1172 Add Recursive Sequence |
ユーザー | opt |
提出日時 | 2020-08-10 23:45:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 2,207 ms |
コンパイル使用メモリ | 204,772 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 21:46:42 |
合計ジャッジ時間 | 10,091 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 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 | 2 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 8 ms
6,816 KB |
testcase_11 | AC | 7 ms
6,816 KB |
testcase_12 | AC | 9 ms
6,820 KB |
testcase_13 | AC | 8 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep2(i, m, n) for(int i=int(m); i<int(n); ++i) #define rep(i, n) rep2(i, 0, n) using ll = long long; using Vll = vector<ll>; struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_; const int MOD = int(1e9) + 7; int main() { int k, n, m; cin >> k >> n >> m; Vll a(k+n), c(k+1); c[0] = - 1; rep(i, k) cin >> a[i]; rep(i, k) cin >> c[i+1]; rep2(i, k, n) rep2(j, 1, k+1) (a[i] += c[j] * a[i-j]) %= MOD; Vll y(n); rep(_, m) { int l, r; cin >> l >> r; rep2(i, l, min(l+k, n)) rep(j, i-l+1) y[i] += c[j] * a[i-l-j]; rep2(i, r, min(r+k, n)) rep(j, i-r+1) y[i] -= c[j] * a[i-l-j]; } Vll x(n); rep(i, n) { x[i] = - y[i]; rep2(j, 1, min(i, k)+1) x[i] += c[j] * x[i-j]; x[i] = (x[i] % MOD + MOD) % MOD; cout << x[i] << '\n'; } return 0; }