結果
問題 | No.914 Omiyage |
ユーザー | oevl |
提出日時 | 2020-04-19 18:41:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 1,910 ms |
コンパイル使用メモリ | 206,148 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 23:53:39 |
合計ジャッジ時間 | 2,692 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1 << 30; int main() { int N, M, K; cin >> N >> M >> K; vector<vector<int>> A(N, vector<int>(M)); for(int i = 0; i < N; ++i) { for(int j = 0; j < M; ++j) cin >> A[i][j]; } vector<int> dp(K + 1, -1); dp[0] = 0; for(int i = 0; i < N; ++i) { for(int j = 0; j < M; ++j) { for(int k = K; k >= 0; --k) { if(k - A[i][j] >= 0 and dp[k - A[i][j]] == i) dp[k] = dp[k - A[i][j]] + 1; } } } int ans = INF; for(int i = 1; i <= K ; ++i) { if(dp[i] == N) ans = min(ans, K - i); } if(ans == INF) ans = -1; cout << ans << '\n'; return 0; }