結果
問題 | No.914 Omiyage |
ユーザー | tsushima |
提出日時 | 2019-10-25 22:38:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,606 bytes |
コンパイル時間 | 2,394 ms |
コンパイル使用メモリ | 114,088 KB |
実行使用メモリ | 27,276 KB |
最終ジャッジ日時 | 2024-09-13 04:57:30 |
合計ジャッジ時間 | 2,224 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 29 ms
25,096 KB |
testcase_03 | WA | - |
testcase_04 | AC | 30 ms
27,148 KB |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | AC | 28 ms
25,132 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 29 ms
25,140 KB |
testcase_19 | AC | 28 ms
24,844 KB |
testcase_20 | AC | 28 ms
24,972 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; namespace Algorithm { class Program { static int N, M, K; static int[][] A; static void Main(string[] args) { var l = Console.ReadLine().Split().Select(int.Parse).ToArray(); N = l[0]; M = l[1]; K = l[2]; A = new int[N][]; for (var i = 0; i < N; i++) A[i] = Console.ReadLine().Split().Select(int.Parse).ToArray(); var sumList = new List<int>(); for (var i = 0; i < M; i++) { var sum = 0; for (var j = 0; j < N; j++) { sum += A[j][i]; } sumList.Add(sum); } var targetIndex = -1; for (var i = sumList.Count - 1; i >= 0; i--) { if (sumList[i] <= K) targetIndex = i; } if (targetIndex == -1) { Console.WriteLine(-1); return; } M = targetIndex; var ans = Dfs(0, 0); Console.WriteLine(ans == 0 ? -1 : K - ans); } static int Dfs(int n, int total) { if (n == N) { if (total <= K) return total; else return -1; } var max = 0; for (var i = M; i < M + 2; i++) { max = Math.Max(max, Dfs(n + 1, total + A[n][i])); } return max; } } }