結果
問題 | No.914 Omiyage |
ユーザー | bal4u |
提出日時 | 2019-10-27 15:45:08 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 851 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 30,720 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 16:31:48 |
合計ジャッジ時間 | 835 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 0 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 0 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
ソースコード
// yuki 914 Omiyage // 2019.10.27 bal4u #include <stdio.h> #include <ctype.h> #include <string.h> int getchar_unlocked(void); #define gc() getchar_unlocked() int in() { // 非負整数の入力 int n = 0; int c; do c = gc(); while (isspace(c)); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } char dp[12][505]; int A[12]; int main() { int i, j, k, f, N, M, K; N = in(), M = in(), K = in(); dp[0][0] = 1; for (i = 1; i <= N; ++i) { for (j = 0; j < M; ++j) A[j] = in(); f = 0; for (k = K-1; k >= 0; --k) if (dp[i-1][k]) { for (j = M-1; j >= 0; j--) { if (k+A[j] <= K) dp[i][k+A[j]] = 1, f = 1; } } if (f == 0) { puts("-1"); return 0; } } for (i = K; i >= 0; --i) if (dp[N][i]) break; printf("%d\n", K-i); return 0; }