結果
| 問題 |
No.357 品物の並び替え (Middle)
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2021-12-03 12:53:47 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 |
ソースコード
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();
}
}
tenten