結果
問題 | No.107 モンスター |
ユーザー | htensai |
提出日時 | 2020-01-28 17:52:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 215 ms / 5,000 ms |
コード長 | 1,796 bytes |
コンパイル時間 | 2,499 ms |
コンパイル使用メモリ | 77,816 KB |
実行使用メモリ | 118,156 KB |
最終ジャッジ日時 | 2024-09-15 16:19:25 |
合計ジャッジ時間 | 6,027 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,884 KB |
testcase_01 | AC | 52 ms
36,696 KB |
testcase_02 | AC | 52 ms
36,892 KB |
testcase_03 | AC | 53 ms
37,256 KB |
testcase_04 | AC | 52 ms
36,972 KB |
testcase_05 | AC | 51 ms
36,908 KB |
testcase_06 | AC | 53 ms
37,060 KB |
testcase_07 | AC | 52 ms
37,108 KB |
testcase_08 | AC | 52 ms
36,816 KB |
testcase_09 | AC | 53 ms
37,180 KB |
testcase_10 | AC | 53 ms
37,000 KB |
testcase_11 | AC | 52 ms
36,896 KB |
testcase_12 | AC | 53 ms
36,892 KB |
testcase_13 | AC | 99 ms
47,484 KB |
testcase_14 | AC | 155 ms
75,296 KB |
testcase_15 | AC | 155 ms
75,444 KB |
testcase_16 | AC | 55 ms
37,112 KB |
testcase_17 | AC | 82 ms
40,804 KB |
testcase_18 | AC | 169 ms
80,204 KB |
testcase_19 | AC | 169 ms
80,176 KB |
testcase_20 | AC | 118 ms
55,288 KB |
testcase_21 | AC | 111 ms
55,292 KB |
testcase_22 | AC | 120 ms
50,860 KB |
testcase_23 | AC | 215 ms
118,156 KB |
testcase_24 | AC | 172 ms
74,436 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static int n; static int[][][] dp; static int[] monsters; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); n = Integer.parseInt(br.readLine()); monsters = new int[n]; String[] line = br.readLine().split(" ", n); int m = 0; for (int i = 0; i < n; i++) { monsters[i] = Integer.parseInt(line[i]); if (monsters[i] < 0) { m++; } } dp = new int[n + 1][m + 1][(int)(Math.pow(2, n))]; for (int i = 0; i <= n; i++) { for (int j = 0; j <= m; j++) { Arrays.fill(dp[i][j], -1); } } dp[0][0][0] = 100; System.out.println(dfw(n, m, (int)(Math.pow(2, n)) - 1)); } static int dfw(int idx, int count, int key) { if (idx < 0) { return 0; } if (dp[idx][count][key] != -1) { return dp[idx][count][key]; } int max = 0; for (int i = 0; i < n; i++) { int x = (int)(Math.pow(2, i)); if ((x & key) == 0) { continue; } if (monsters[i] < 0) { int tmp = dfw(idx - 1, count - 1, key ^ x); if (tmp != 0) { max = Math.max(max, Math.max(0, tmp + monsters[i])); } } else { int tmp = dfw(idx - 1, count, key ^ x); if (tmp != 0) { max = Math.max(max, Math.min(100 * (count + 1), tmp + monsters[i])); } } } dp[idx][count][key] = max; return max; } }