結果
問題 | No.612 Move on grid |
ユーザー | りあん |
提出日時 | 2017-11-23 16:54:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 63 ms / 2,500 ms |
コード長 | 870 bytes |
コンパイル時間 | 1,796 ms |
コンパイル使用メモリ | 169,548 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 03:41:51 |
合計ジャッジ時間 | 3,183 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 14 ms
5,376 KB |
testcase_05 | AC | 63 ms
5,376 KB |
testcase_06 | AC | 60 ms
5,376 KB |
testcase_07 | AC | 13 ms
5,376 KB |
testcase_08 | AC | 60 ms
5,376 KB |
testcase_09 | AC | 33 ms
5,376 KB |
testcase_10 | AC | 24 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | AC | 35 ms
5,376 KB |
testcase_13 | AC | 14 ms
5,376 KB |
testcase_14 | AC | 45 ms
5,376 KB |
testcase_15 | AC | 9 ms
5,376 KB |
testcase_16 | AC | 52 ms
5,376 KB |
testcase_17 | AC | 10 ms
5,376 KB |
testcase_18 | AC | 43 ms
5,376 KB |
testcase_19 | AC | 18 ms
5,376 KB |
testcase_20 | AC | 26 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int M = 1000000007; int main() { int t, a, b, c, d, e; cin >> t >> a >> b >> c >> d >> e; const int m = 20020, s = 10010; vector<int> dp(m, 0); dp[s] = 1; for (int i = 0; i < t; ++i) { vector<int> nex(m, 0); for (int j = 0; j < m; ++j) { if (dp[j] > 0) { nex[j + a] = (nex[j + a] + dp[j]) % M; nex[j - a] = (nex[j - a] + dp[j]) % M; nex[j + b] = (nex[j + b] + dp[j]) % M; nex[j - b] = (nex[j - b] + dp[j]) % M; nex[j + c] = (nex[j + c] + dp[j]) % M; nex[j - c] = (nex[j - c] + dp[j]) % M; } } dp = nex; } int ans = 0; for (int i = s + d; i <= s + e; ++i) ans = (ans + dp[i]) % M; cout << ans << "\n"; return 0; }