結果

問題 No.357 品物の並び替え (Middle)
ユーザー tentententen
提出日時 2021-12-03 12:53:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 1,847 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 79,012 KB
実行使用メモリ 41,940 KB
最終ジャッジ日時 2024-07-05 17:15:50
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,680 KB
testcase_01 AC 42 ms
36,460 KB
testcase_02 AC 44 ms
36,492 KB
testcase_03 AC 43 ms
36,816 KB
testcase_04 AC 46 ms
36,820 KB
testcase_05 AC 45 ms
36,776 KB
testcase_06 AC 43 ms
36,716 KB
testcase_07 AC 43 ms
37,064 KB
testcase_08 AC 55 ms
37,240 KB
testcase_09 AC 104 ms
40,896 KB
testcase_10 AC 76 ms
39,180 KB
testcase_11 AC 72 ms
38,288 KB
testcase_12 AC 121 ms
41,940 KB
testcase_13 AC 123 ms
41,352 KB
testcase_14 AC 109 ms
40,848 KB
testcase_15 AC 56 ms
37,108 KB
testcase_16 AC 94 ms
39,804 KB
testcase_17 AC 87 ms
38,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

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[] total = new int[1 << n];
        for (int i = 1; i < (1 << n); i++) {
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                int tmp = 0;
                for (int x : points.get(j).keySet()) {
                    if ((i & (1 << x)) != 0) {
                        tmp += points.get(j).get(x);
                    }
                }
                total[i] = Math.max(total[i], total[i ^ (1 << j)] + tmp);
            }
        }
        System.out.println(total[(1 << n) - 1]);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0