結果
問題 | No.1172 Add Recursive Sequence |
ユーザー | もりを |
提出日時 | 2020-08-14 23:05:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 884 bytes |
コンパイル時間 | 3,147 ms |
コンパイル使用メモリ | 217,872 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 16:31:14 |
合計ジャッジ時間 | 15,050 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 32 ms
5,248 KB |
testcase_11 | AC | 29 ms
5,248 KB |
testcase_12 | AC | 108 ms
5,248 KB |
testcase_13 | AC | 95 ms
5,248 KB |
testcase_14 | AC | 1,239 ms
5,248 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,282 ms
5,248 KB |
testcase_17 | TLE | - |
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx") #include <bits/stdc++.h> using namespace std; using ll = long long; using ui128 = __uint128_t; constexpr int MOD = (int)1e9 + 7; constexpr int MX = 100000; constexpr int MX_K = 200; int K, N, M, L, R; int A[MX + 1], C[MX_K + 1]; ll res[MX + 1]; ui128 tmp; int main() { scanf("%d%d%d", &K, &N, &M); for (int i = 0; i < K; ++i) scanf("%d", A + i); for (int i = 0; i < K; ++i) scanf("%d", C + i); for (int i = K; i < N; ++i) { tmp = 0; for (int j = 0; j < K; ++j) tmp += ll(C[j]) * A[i - 1 - j]; A[i] = tmp % MOD; } for (int i = 0; i < M; ++i) { scanf("%d%d", &L, &R); for (int j = L; j < R; ++j) res[j] += A[j - L]; } for (int i = 0; i < N; ++i) printf("%d\n", res[i] % MOD); }