結果

問題 No.1382 Travel in Mitaru city
ユーザー tentententen
提出日時 2021-02-08 11:26:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 1,997 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 78,756 KB
実行使用メモリ 72,152 KB
最終ジャッジ日時 2024-07-05 07:47:49
合計ジャッジ時間 34,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,708 KB
testcase_01 AC 79 ms
36,508 KB
testcase_02 AC 65 ms
36,508 KB
testcase_03 AC 49 ms
36,640 KB
testcase_04 AC 49 ms
36,632 KB
testcase_05 AC 50 ms
37,092 KB
testcase_06 AC 337 ms
51,812 KB
testcase_07 AC 312 ms
50,276 KB
testcase_08 AC 229 ms
46,920 KB
testcase_09 AC 372 ms
52,940 KB
testcase_10 AC 350 ms
51,696 KB
testcase_11 AC 499 ms
56,976 KB
testcase_12 AC 533 ms
57,128 KB
testcase_13 AC 545 ms
57,064 KB
testcase_14 AC 502 ms
56,468 KB
testcase_15 AC 478 ms
56,420 KB
testcase_16 AC 743 ms
70,312 KB
testcase_17 AC 858 ms
69,896 KB
testcase_18 AC 704 ms
70,568 KB
testcase_19 AC 731 ms
71,964 KB
testcase_20 AC 755 ms
70,532 KB
testcase_21 AC 790 ms
72,040 KB
testcase_22 AC 757 ms
70,480 KB
testcase_23 AC 753 ms
69,556 KB
testcase_24 AC 878 ms
70,364 KB
testcase_25 AC 772 ms
72,152 KB
testcase_26 AC 749 ms
69,824 KB
testcase_27 AC 747 ms
70,640 KB
testcase_28 AC 720 ms
69,520 KB
testcase_29 AC 682 ms
71,376 KB
testcase_30 AC 683 ms
71,144 KB
testcase_31 AC 532 ms
60,120 KB
testcase_32 AC 618 ms
69,872 KB
testcase_33 AC 579 ms
68,588 KB
testcase_34 AC 388 ms
56,672 KB
testcase_35 AC 354 ms
55,008 KB
testcase_36 AC 447 ms
60,048 KB
testcase_37 AC 181 ms
46,880 KB
testcase_38 AC 495 ms
69,144 KB
testcase_39 AC 245 ms
49,448 KB
testcase_40 AC 406 ms
56,128 KB
testcase_41 AC 430 ms
59,736 KB
testcase_42 AC 518 ms
69,544 KB
testcase_43 AC 432 ms
60,028 KB
testcase_44 AC 297 ms
52,480 KB
testcase_45 AC 416 ms
59,360 KB
testcase_46 AC 297 ms
50,920 KB
testcase_47 AC 626 ms
68,000 KB
testcase_48 AC 497 ms
56,156 KB
testcase_49 AC 670 ms
70,588 KB
testcase_50 AC 393 ms
55,612 KB
testcase_51 AC 601 ms
61,792 KB
testcase_52 AC 570 ms
69,972 KB
testcase_53 AC 229 ms
48,816 KB
testcase_54 AC 338 ms
54,736 KB
testcase_55 AC 595 ms
63,796 KB
testcase_56 AC 293 ms
51,336 KB
testcase_57 AC 427 ms
56,416 KB
testcase_58 AC 162 ms
45,076 KB
testcase_59 AC 274 ms
51,392 KB
testcase_60 AC 577 ms
61,656 KB
testcase_61 AC 124 ms
40,808 KB
testcase_62 AC 49 ms
36,772 KB
testcase_63 AC 182 ms
45,836 KB
testcase_64 AC 134 ms
41,716 KB
testcase_65 AC 67 ms
38,320 KB
testcase_66 AC 122 ms
40,276 KB
testcase_67 AC 136 ms
40,740 KB
testcase_68 AC 148 ms
43,276 KB
testcase_69 AC 122 ms
40,264 KB
testcase_70 AC 141 ms
43,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 4);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        int s = Integer.parseInt(first[2]) - 1;
        int t = Integer.parseInt(first[3]) - 1;
        String[] second = br.readLine().split(" ", n);
        Town[] towns = new Town[n];
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            towns[i] = new Town(i, Integer.parseInt(second[i]));
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            String[] line = br.readLine().split(" ", 2);
            int a = Integer.parseInt(line[0]) - 1;
            int b = Integer.parseInt(line[1]) - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        PriorityQueue<Town> queue = new PriorityQueue<>();
        queue.add(towns[s]);
        boolean[] visited = new boolean[n];
        visited[s] = true;
        int score = Integer.MAX_VALUE;
        int count = 0;
        while (queue.size() > 0) {
            Town y = queue.poll();
            if (score > y.value) {
                score = y.value;
                count++;
            }
            for (int x : graph.get(y.idx)) {
                if (!visited[x]) {
                    queue.add(towns[x]);
                    visited[x] = true;
                }
            }
        }
        System.out.println(count - 1);
    }
    
    static class Town implements Comparable<Town> {
        int idx;
        int value;
        
        public Town(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Town another) {
            return another.value - value;
        }
    }
}
0