結果
問題 | No.695 square1001 and Permutation 4 |
ユーザー | ei1333333 |
提出日時 | 2018-06-08 22:54:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 2,828 ms |
コンパイル使用メモリ | 208,888 KB |
実行使用メモリ | 410,508 KB |
最終ジャッジ日時 | 2024-07-22 19:16:53 |
合計ジャッジ時間 | 35,548 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 301 ms
6,028 KB |
testcase_02 | AC | 477 ms
5,376 KB |
testcase_03 | AC | 197 ms
5,376 KB |
testcase_04 | AC | 1,464 ms
5,376 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 2,861 ms
5,376 KB |
testcase_07 | AC | 2,938 ms
5,376 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | AC | 579 ms
5,376 KB |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 5,945 ms
47,352 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int64 = long long; int N, M, X[5]; unordered_map< int, int64 > dp; const int64 mod = 100000000000000007; int main() { cin >> N >> M; for(int i = 0; i < M; i++) cin >> X[i]; dp[0] = 1; for(int k = 0; k < N; k++) { if(dp.count(k)) { for(int i = 0; i < M; i++) { if(k + X[i] < N) { dp[k + X[i]] += dp[k]; if(dp[k + X[i]] >= mod) dp[k + X[i]] -= mod; } } if(k == N - 1) { cout << dp[N - 1] << endl; return 0; } dp.erase(k); } if(k == N - 1) { cout << dp[N - 1] << endl; return 0; } } }