結果

問題 No.416 旅行会社
ユーザー 37zigen37zigen
提出日時 2016-08-24 19:08:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,608 bytes
コンパイル時間 4,224 ms
コンパイル使用メモリ 80,700 KB
実行使用メモリ 137,772 KB
最終ジャッジ日時 2024-11-08 02:07:34
合計ジャッジ時間 39,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,867 ms
103,620 KB
testcase_01 AC 133 ms
41,364 KB
testcase_02 AC 126 ms
40,976 KB
testcase_03 AC 138 ms
41,588 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,770 ms
101,632 KB
testcase_11 AC 1,732 ms
101,272 KB
testcase_12 AC 1,767 ms
101,288 KB
testcase_13 AC 1,782 ms
101,060 KB
testcase_14 AC 2,952 ms
137,772 KB
testcase_15 AC 2,841 ms
133,088 KB
testcase_16 AC 2,807 ms
124,612 KB
testcase_17 AC 2,907 ms
124,524 KB
testcase_18 AC 2,781 ms
130,856 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Q416 {
	public static void main(String[] args) {
		new Q416().solver();
	}

	@SuppressWarnings("unchecked")
	void solver() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();// the number of islands
		int M = sc.nextInt();// the number of bridges
		int Q = sc.nextInt();// the number of events
		ArrayList<Edge>[] g = new ArrayList[N];
		for (int i = 0; i < N; i++) {
			g[i] = new ArrayList<>();
		}
		ArrayList<Integer>[] ref = new ArrayList[N];
		for (int i = 0; i < N; i++) {
			ref[i] = new ArrayList<>();
		}
		int[] A = new int[M];
		int[] B = new int[M];
		for (int i = 0; i < M; i++) {
			A[i] = sc.nextInt() - 1;
			B[i] = sc.nextInt() - 1;
		}
		int[] C = new int[Q];
		int[] D = new int[Q];
		for (int i = 0; i < Q; i++) {
			C[i] = sc.nextInt() - 1;
			D[i] = sc.nextInt() - 1;
			ref[C[i]].add(D[i]);
			ref[D[i]].add(C[i]);
			g[C[i]].add(new Edge(C[i], D[i], i + 1));
			g[D[i]].add(new Edge(D[i], C[i], i + 1));
		}
		for (int i = 0; i < M; i++) {
			if (ref[A[i]].contains(B[i]))
				continue;
			g[A[i]].add(new Edge(A[i], B[i], 0));
			g[B[i]].add(new Edge(B[i], A[i], 0));
		}

		ArrayDeque<Integer> que = new ArrayDeque<>();
		ArrayDeque<Integer>[] pending = new ArrayDeque[Q + 1];
		for (int i = 0; i < Q + 1; i++)
			pending[i] = new ArrayDeque<>();
		que.add(0);
		int[] d = new int[N];
		boolean[] checked = new boolean[N];
		while (!que.isEmpty()) {
			int v = que.poll();
			checked[v] = true;
			for (Edge e : g[v]) {
				if (checked[e.dst])
					continue;
				if (e.event_time == 0) {
					que.add(e.dst);
				} else {
					pending[e.event_time].add(e.dst);
				}
			}
		}
		for (int i = Q; i >= 1; i--) {
			while (!pending[i].isEmpty()) {
				que.add(pending[i].poll());
				while (!que.isEmpty()) {
					int v = que.poll();
					if (checked[v])
						continue;
					d[v] = i;
					checked[v] = true;
					for (Edge e : g[v]) {
						if (checked[e.dst])
							continue;
						if (e.event_time >= i || e.event_time == 0) {
							que.add(e.dst);
						} else {
							pending[e.event_time].add(e.dst);
						}
					}
				}
			}
		}
		for (int i = 1; i < N; i++) {
			if (d[i] == 0) {
				System.out.println(-1);
			} else {
				System.out.println(d[i]);
			}
		}
	}

	void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}

	class Edge {
		int src;
		int dst;
		int event_time;

		Edge(int src, int dst, int event_time) {
			this.src = src;
			this.dst = dst;
			this.event_time = event_time;
		}
	}
}
0