結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | tenten |
提出日時 | 2023-05-02 12:35:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 155 ms / 5,000 ms |
コード長 | 2,409 bytes |
コンパイル時間 | 3,659 ms |
コンパイル使用メモリ | 85,708 KB |
実行使用メモリ | 45,932 KB |
最終ジャッジ日時 | 2024-11-21 03:42:07 |
合計ジャッジ時間 | 5,055 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
37,244 KB |
testcase_01 | AC | 52 ms
38,656 KB |
testcase_02 | AC | 54 ms
38,784 KB |
testcase_03 | AC | 56 ms
38,364 KB |
testcase_04 | AC | 58 ms
38,500 KB |
testcase_05 | AC | 56 ms
38,656 KB |
testcase_06 | AC | 54 ms
38,568 KB |
testcase_07 | AC | 53 ms
38,596 KB |
testcase_08 | AC | 79 ms
39,408 KB |
testcase_09 | AC | 118 ms
42,436 KB |
testcase_10 | AC | 102 ms
40,480 KB |
testcase_11 | AC | 88 ms
40,020 KB |
testcase_12 | AC | 155 ms
45,932 KB |
testcase_13 | AC | 130 ms
43,392 KB |
testcase_14 | AC | 123 ms
42,792 KB |
testcase_15 | AC | 76 ms
39,568 KB |
testcase_16 | AC | 112 ms
41,080 KB |
testcase_17 | AC | 102 ms
40,644 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); ArrayList<HashMap<Integer, Integer>> points = new ArrayList<>(); for (int i = 0; i < n; i++) { points.add(new HashMap<>()); } for (int i = 0; i < m; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); points.get(b).put(a, c); } int[] ans = new int[1 << n]; for (int i = 0; i < (1 << n); i++) { for (int j = 0; j < n; j++) { if ((i & (1 << j)) == 0) { int add = 0; for (int x : points.get(j).keySet()) { if ((i & (1 << x)) > 0) { add += points.get(j).get(x); } } ans[i | (1 << j)] = Math.max(ans[i | (1 << j)], ans[i] + add); } } } System.out.println(ans[(1 << n) - 1]); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }