結果
問題 | No.1480 Many Complete Graphs |
ユーザー | tenten |
提出日時 | 2021-04-28 16:26:24 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 860 ms / 2,000 ms |
コード長 | 2,620 bytes |
コンパイル時間 | 2,584 ms |
コンパイル使用メモリ | 80,088 KB |
実行使用メモリ | 99,840 KB |
最終ジャッジ日時 | 2024-07-07 14:11:28 |
合計ジャッジ時間 | 32,081 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,180 KB |
testcase_01 | AC | 51 ms
37,420 KB |
testcase_02 | AC | 53 ms
37,208 KB |
testcase_03 | AC | 53 ms
36,964 KB |
testcase_04 | AC | 53 ms
37,372 KB |
testcase_05 | AC | 53 ms
37,148 KB |
testcase_06 | AC | 55 ms
37,324 KB |
testcase_07 | AC | 54 ms
37,080 KB |
testcase_08 | AC | 56 ms
37,560 KB |
testcase_09 | AC | 86 ms
38,780 KB |
testcase_10 | AC | 102 ms
38,624 KB |
testcase_11 | AC | 64 ms
37,852 KB |
testcase_12 | AC | 83 ms
37,668 KB |
testcase_13 | AC | 252 ms
56,072 KB |
testcase_14 | AC | 179 ms
50,232 KB |
testcase_15 | AC | 389 ms
58,112 KB |
testcase_16 | AC | 262 ms
53,628 KB |
testcase_17 | AC | 262 ms
53,720 KB |
testcase_18 | AC | 166 ms
47,288 KB |
testcase_19 | AC | 286 ms
53,208 KB |
testcase_20 | AC | 373 ms
56,492 KB |
testcase_21 | AC | 271 ms
56,748 KB |
testcase_22 | AC | 176 ms
49,240 KB |
testcase_23 | AC | 414 ms
67,744 KB |
testcase_24 | AC | 559 ms
66,296 KB |
testcase_25 | AC | 839 ms
85,920 KB |
testcase_26 | AC | 730 ms
84,872 KB |
testcase_27 | AC | 592 ms
66,744 KB |
testcase_28 | AC | 589 ms
80,648 KB |
testcase_29 | AC | 598 ms
80,676 KB |
testcase_30 | AC | 558 ms
80,224 KB |
testcase_31 | AC | 565 ms
80,260 KB |
testcase_32 | AC | 582 ms
80,168 KB |
testcase_33 | AC | 578 ms
79,924 KB |
testcase_34 | AC | 558 ms
80,692 KB |
testcase_35 | AC | 533 ms
80,688 KB |
testcase_36 | AC | 537 ms
81,008 KB |
testcase_37 | AC | 556 ms
80,524 KB |
testcase_38 | AC | 559 ms
81,736 KB |
testcase_39 | AC | 563 ms
80,628 KB |
testcase_40 | AC | 571 ms
80,708 KB |
testcase_41 | AC | 553 ms
81,604 KB |
testcase_42 | AC | 593 ms
80,696 KB |
testcase_43 | AC | 556 ms
80,640 KB |
testcase_44 | AC | 561 ms
80,736 KB |
testcase_45 | AC | 607 ms
80,348 KB |
testcase_46 | AC | 539 ms
80,616 KB |
testcase_47 | AC | 689 ms
85,916 KB |
testcase_48 | AC | 860 ms
89,632 KB |
testcase_49 | AC | 713 ms
86,448 KB |
testcase_50 | AC | 500 ms
78,888 KB |
testcase_51 | AC | 704 ms
86,188 KB |
testcase_52 | AC | 823 ms
88,748 KB |
testcase_53 | AC | 840 ms
88,700 KB |
testcase_54 | AC | 744 ms
88,484 KB |
testcase_55 | AC | 804 ms
99,840 KB |
testcase_56 | AC | 827 ms
89,040 KB |
testcase_57 | AC | 476 ms
90,772 KB |
testcase_58 | AC | 523 ms
84,176 KB |
evil_aftercontest.txt | AC | 1,051 ms
127,248 KB |
ソースコード
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>> graph = new ArrayList<>(); for (int i = 0; i < n + m; i++) { graph.add(new HashMap<>()); } for (int i = 0; i < m; i++) { int k = sc.nextInt(); int c = sc.nextInt() * 2; for (int j = 0; j < k; j++) { int x = sc.nextInt() - 1; graph.get(x).put(n + i, c + x + 1); graph.get(n + i).put(x, x + 1); } } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); long[] costs = new long[n + m]; Arrays.fill(costs, Long.MAX_VALUE); while (queue.size() > 0) { Path p = queue.poll(); if (p.idx < n && p.value % 2 == 1) { p.value++; } if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; for (int x : graph.get(p.idx).keySet()) { if (costs[x] == Long.MAX_VALUE) { queue.add(new Path(x, p.value + graph.get(p.idx).get(x))); } } } if (costs[n - 1] == Long.MAX_VALUE) { System.out.println(-1); } else { System.out.println(costs[n - 1] / 2); } } static class Path implements Comparable<Path> { int idx; long value; public Path(int idx, long value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { if (value == another.value) { return 0; } else if (value < another.value) { return -1; } else { return 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 String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }