結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | htensai |
提出日時 | 2020-01-30 12:50:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 158 ms / 5,000 ms |
コード長 | 1,647 bytes |
コンパイル時間 | 2,170 ms |
コンパイル使用メモリ | 79,012 KB |
実行使用メモリ | 44,012 KB |
最終ジャッジ日時 | 2024-09-16 03:29:56 |
合計ジャッジ時間 | 4,418 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
36,980 KB |
testcase_01 | AC | 51 ms
36,820 KB |
testcase_02 | AC | 52 ms
36,552 KB |
testcase_03 | AC | 52 ms
36,660 KB |
testcase_04 | AC | 56 ms
37,080 KB |
testcase_05 | AC | 54 ms
36,892 KB |
testcase_06 | AC | 52 ms
36,560 KB |
testcase_07 | AC | 51 ms
36,820 KB |
testcase_08 | AC | 63 ms
37,148 KB |
testcase_09 | AC | 99 ms
41,004 KB |
testcase_10 | AC | 82 ms
38,960 KB |
testcase_11 | AC | 75 ms
37,788 KB |
testcase_12 | AC | 158 ms
44,012 KB |
testcase_13 | AC | 121 ms
41,620 KB |
testcase_14 | AC | 104 ms
42,036 KB |
testcase_15 | AC | 63 ms
37,192 KB |
testcase_16 | AC | 91 ms
38,880 KB |
testcase_17 | AC | 85 ms
38,908 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static HashMap<Integer, Integer>[] maps; static int n; static int[] dp; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); n = Integer.parseInt(first[0]); int m = Integer.parseInt(first[1]); maps = new HashMap[n]; for (int i = 0; i < n; i++) { maps[i] = new HashMap<>(); } for (int i = 0; i < m; i++) { String[] line = br.readLine().split(" ", 3); int a = Integer.parseInt(line[0]); int b = Integer.parseInt(line[1]); int score = Integer.parseInt(line[2]); maps[b].put(a, score); } dp = new int[1 << n]; Arrays.fill(dp, -1); System.out.println(dfw((1 << n) - 1)); } static int dfw(int key) { if (key == 0) { return 0; } if (dp[key] != -1) { return dp[key]; } int max = 0; for (int i = 0; i < n; i++) { if (((1 << i) & key) == 0) { continue; } int score = 0; for (Map.Entry<Integer, Integer> entry : maps[i].entrySet()) { int x = entry.getKey(); if (((1 << x) & key) != 0) { score += entry.getValue(); } } score += dfw(key ^ (1 << i)); max = Math.max(max, score); } dp[key] = max; return max; } }