結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | tenten |
提出日時 | 2021-11-11 13:28:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,068 bytes |
コンパイル時間 | 3,206 ms |
コンパイル使用メモリ | 78,932 KB |
実行使用メモリ | 53,400 KB |
最終ジャッジ日時 | 2024-05-02 06:49:35 |
合計ジャッジ時間 | 11,225 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 217 ms
53,148 KB |
testcase_01 | AC | 55 ms
36,496 KB |
testcase_02 | AC | 110 ms
40,620 KB |
testcase_03 | AC | 115 ms
40,732 KB |
testcase_04 | AC | 256 ms
47,924 KB |
testcase_05 | AC | 219 ms
47,648 KB |
testcase_06 | AC | 88 ms
38,268 KB |
testcase_07 | AC | 56 ms
37,024 KB |
testcase_08 | AC | 447 ms
49,192 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static int n; static ArrayList<HashMap<Integer, Integer>> list = new ArrayList<>(); static int max = 0; 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++) { 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); } setMax(0, 0, new HashSet<>()); System.out.println(max); } static void setMax(int idx, int score, HashSet<Integer> used) { if (idx >= n) { max = Math.max(max, score); return; } for (int i = 0; i < n; i++) { if (used.contains(i)) { continue; } used.add(i); int tmp = 0; for (int x : list.get(i).keySet()) { if (used.contains(x)) { tmp += list.get(i).get(x); } } setMax(idx + 1, score + tmp, used); used.remove(i); } } } 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(); } }