結果

問題 No.357 品物の並び替え (Middle)
ユーザー tentententen
提出日時 2021-11-11 14:04:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,970 bytes
コンパイル時間 2,740 ms
コンパイル使用メモリ 78,508 KB
実行使用メモリ 44,144 KB
最終ジャッジ日時 2024-05-02 07:33:19
合計ジャッジ時間 4,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,036 KB
testcase_01 AC 45 ms
36,916 KB
testcase_02 AC 50 ms
37,224 KB
testcase_03 AC 49 ms
37,044 KB
testcase_04 AC 51 ms
36,944 KB
testcase_05 AC 49 ms
36,680 KB
testcase_06 AC 47 ms
37,012 KB
testcase_07 AC 45 ms
37,268 KB
testcase_08 AC 59 ms
37,360 KB
testcase_09 AC 107 ms
40,628 KB
testcase_10 AC 93 ms
39,664 KB
testcase_11 AC 80 ms
38,072 KB
testcase_12 AC 131 ms
44,144 KB
testcase_13 AC 132 ms
41,548 KB
testcase_14 AC 115 ms
40,744 KB
testcase_15 AC 60 ms
37,368 KB
testcase_16 AC 100 ms
39,720 KB
testcase_17 AC 88 ms
39,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<HashMap<Integer, Integer>> list = new ArrayList<>();
        int m = sc.nextInt();
        for (int i = 0; i < n; i++) {
            list.add(new HashMap<>());
        }
        for (int i = 0; i < m; i++) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            int score = sc.nextInt();
            list.get(right).put(left, score);
        }
        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 prev = (i ^ (1 << j));
                int tmp = 0;
                for (int x : list.get(j).keySet()) {
                    if ((prev & (1 << x)) != 0) {
                        tmp += list.get(j).get(x);
                    }
                }
                dp[i] = Math.max(dp[i], dp[prev] + tmp);
            }
        }
        System.out.println(dp[(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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0