結果
| 問題 |
No.357 品物の並び替え (Middle)
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-05-02 12:35:09 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 155 ms / 5,000 ms |
| コード長 | 2,409 bytes |
| コンパイル時間 | 3,659 ms |
| コンパイル使用メモリ | 85,708 KB |
| 実行使用メモリ | 45,932 KB |
| 最終ジャッジ日時 | 2024-11-21 03:42:07 |
| 合計ジャッジ時間 | 5,055 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 |
ソースコード
import java.io.*;
import java.util.*;
import java.util.stream.*;
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[] ans = new int[1 << n];
for (int i = 0; i < (1 << n); i++) {
for (int j = 0; j < n; j++) {
if ((i & (1 << j)) == 0) {
int add = 0;
for (int x : points.get(j).keySet()) {
if ((i & (1 << x)) > 0) {
add += points.get(j).get(x);
}
}
ans[i | (1 << j)] = Math.max(ans[i | (1 << j)], ans[i] + add);
}
}
}
System.out.println(ans[(1 << n) - 1]);
}
}
class Utilities {
static String arrayToLineString(Object[] arr) {
return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
}
static String arrayToLineString(int[] arr) {
return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
}
}
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 int[] nextIntArray() throws Exception {
return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
}
public String next() throws Exception {
while (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten