結果
| 問題 |
No.90 品物の並び替え
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-07-28 18:56:04 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 285 ms / 5,000 ms |
| コード長 | 1,922 bytes |
| コンパイル時間 | 2,410 ms |
| コンパイル使用メモリ | 79,356 KB |
| 実行使用メモリ | 45,704 KB |
| 最終ジャッジ日時 | 2024-07-18 09:33:20 |
| 合計ジャッジ時間 | 3,993 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
import java.io.*;
import java.util.*;
public class Main {
static ArrayList<HashMap<Integer, Integer>> scores = new ArrayList<>();
static int max = 0;
static int n;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
n = sc.nextInt();
int m = sc.nextInt();
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();
scores.get(b).put(a, sc.nextInt());
}
check(0, new boolean[n], 0);
System.out.println(max);
}
static void check(int idx, boolean[] used, int value) {
if (idx >= n) {
max = Math.max(max, value);
return;
}
for (int i = 0; i < n; i++) {
if (used[i]) {
continue;
}
used[i] = true;
int tmp = 0;
for (int x : scores.get(i).keySet()) {
if (used[x]) {
tmp += scores.get(i).get(x);
}
}
check(idx + 1, used, value + tmp);
used[i] = false;
}
}
}
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 {
while (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten