結果

問題 No.1382 Travel in Mitaru city
ユーザー ks2mks2m
提出日時 2021-02-07 21:12:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,711 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 78,888 KB
実行使用メモリ 167,792 KB
最終ジャッジ日時 2024-07-04 14:27:14
合計ジャッジ時間 37,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,920 KB
testcase_01 AC 50 ms
37,328 KB
testcase_02 AC 49 ms
36,952 KB
testcase_03 AC 49 ms
36,880 KB
testcase_04 AC 49 ms
37,040 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 687 ms
69,404 KB
testcase_30 AC 540 ms
59,728 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 642 ms
72,900 KB
testcase_47 AC 1,448 ms
126,544 KB
testcase_48 WA -
testcase_49 AC 1,968 ms
167,792 KB
testcase_50 AC 1,741 ms
152,704 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 146 ms
41,084 KB
testcase_62 AC 51 ms
37,100 KB
testcase_63 AC 221 ms
47,220 KB
testcase_64 AC 154 ms
42,176 KB
testcase_65 AC 74 ms
38,384 KB
testcase_66 AC 138 ms
40,768 KB
testcase_67 AC 136 ms
41,328 KB
testcase_68 AC 169 ms
43,896 KB
testcase_69 AC 133 ms
40,744 KB
testcase_70 AC 163 ms
43,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int s = Integer.parseInt(sa[2]) - 1;
		int t = Integer.parseInt(sa[3]) - 1;
		sa = br.readLine().split(" ");
		int[] p = new int[n];
		for (int i = 0; i < n; i++) {
			p[i] = Integer.parseInt(sa[i]);
		}
		List<List<Integer>> list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			list.get(a).add(b);
			list.get(b).add(a);
		}
		br.close();

		int[] d = new int[list.size()];
		PriorityQueue<Node> que = new PriorityQueue<Node>();
		Node first = new Node(s, 0, p[s]);
		que.add(first);

		while (!que.isEmpty()) {
			Node cur = que.poll();
			if (cur.d < d[cur.v]) {
				continue;
			}
			for (int next : list.get(cur.v)) {
				int alt = d[cur.v];
				if (cur.x > p[next]) {
					alt++;
				}
				if (alt > d[next]) {
					d[next] = alt;
					que.add(new Node(next, alt, Math.min(cur.x, p[next])));
				}
			}
		}
		System.out.println(d[t]);
	}

	static class Node implements Comparable<Node> {
		int v, d, x;

		public Node(int v, int d, int x) {
			this.v = v;
			this.d = d;
			this.x = x;
		}

		public int compareTo(Node o) {
			if (d != o.d) {
				return o.d - d;
			}
			return o.x - x;
		}
	}
}
0