結果

問題 No.90 品物の並び替え
ユーザー tentententen
提出日時 2022-10-13 13:10:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 1,914 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 37,548 KB
最終ジャッジ日時 2024-06-26 12:00:22
合計ジャッジ時間 3,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
36,732 KB
testcase_01 AC 60 ms
37,368 KB
testcase_02 AC 55 ms
37,000 KB
testcase_03 AC 56 ms
37,220 KB
testcase_04 AC 56 ms
37,428 KB
testcase_05 AC 59 ms
37,548 KB
testcase_06 AC 58 ms
37,256 KB
testcase_07 AC 57 ms
36,744 KB
testcase_08 AC 51 ms
37,076 KB
testcase_09 AC 66 ms
37,352 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>> scores = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            scores.add(new HashMap<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = sc.nextInt();
            scores.get(b).put(a, c);
        }
        int[] dp = 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 sum = 0;
                for (int x : scores.get(j).keySet()) {
                    if ((i & (1 << x)) == 0) {
                        continue;
                    }
                    sum += scores.get(j).get(x);
                }
                dp[i] = Math.max(dp[i], dp[i ^ (1 << j)] + sum);
            }
        }
        System.out.println(dp[(1 << n) - 1]);
    }
}
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0