結果

問題 No.357 品物の並び替え (Middle)
ユーザー GrenacheGrenache
提出日時 2016-04-02 18:54:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 1,202 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 45,396 KB
最終ジャッジ日時 2024-10-02 12:29:39
合計ジャッジ時間 7,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,320 KB
testcase_01 AC 124 ms
41,388 KB
testcase_02 AC 119 ms
40,368 KB
testcase_03 AC 138 ms
41,736 KB
testcase_04 AC 147 ms
41,612 KB
testcase_05 AC 143 ms
41,512 KB
testcase_06 AC 131 ms
41,504 KB
testcase_07 AC 115 ms
40,140 KB
testcase_08 AC 145 ms
41,552 KB
testcase_09 AC 167 ms
43,288 KB
testcase_10 AC 175 ms
42,304 KB
testcase_11 AC 143 ms
41,700 KB
testcase_12 AC 205 ms
45,396 KB
testcase_13 AC 174 ms
43,436 KB
testcase_14 AC 170 ms
43,492 KB
testcase_15 AC 137 ms
41,664 KB
testcase_16 AC 182 ms
42,248 KB
testcase_17 AC 178 ms
42,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder357 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int m = sc.nextInt();

        List<List<Pair>> prev = new ArrayList<>();
        for (int i = 0; i < n; i++) {
        	prev.add(new ArrayList<>());
        }

        for (int i = 0; i < m; i++) {
        	int item1 = sc.nextInt();
        	int item2 = sc.nextInt();
        	int score = sc.nextInt();
        	prev.get(item2).add(new Pair(item1, score));

        }

        int[] dp = new int[0x1 << n];
        for (int i = 0; i < 0x1 << n; i++) {
        	for (int j = 0; j < n; j++) {
        		if ((i & 0x1 << j) != 0) {
        			continue;
        		}

        		int sum = 0;
        		for (Pair e : prev.get(j)) {
        			if ((i & 0x1 << e.a) != 0) {
        				sum += e.b;
        			}
        		}

        		dp[i | 0x1 << j] = Math.max(dp[i | 0x1 << j], dp[i] + sum);
        	}
        }

        System.out.println(dp[(0x1 << n) - 1]);

        sc.close();
    }

    private static class Pair {
    	int a;
    	int b;

    	Pair(int a, int b) {
    		this.a = a;
    		this.b = b;
    	}
    }
}
0