結果

問題 No.416 旅行会社
ユーザー 37zigen37zigen
提出日時 2016-08-24 19:16:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,889 ms / 4,000 ms
コード長 2,620 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 80,628 KB
実行使用メモリ 132,672 KB
最終ジャッジ日時 2024-05-08 14:53:35
合計ジャッジ時間 36,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,861 ms
103,200 KB
testcase_01 AC 119 ms
41,216 KB
testcase_02 AC 122 ms
41,432 KB
testcase_03 AC 125 ms
41,512 KB
testcase_04 AC 132 ms
41,636 KB
testcase_05 AC 138 ms
41,492 KB
testcase_06 AC 170 ms
41,964 KB
testcase_07 AC 226 ms
44,268 KB
testcase_08 AC 296 ms
48,460 KB
testcase_09 AC 539 ms
50,904 KB
testcase_10 AC 1,765 ms
99,896 KB
testcase_11 AC 1,648 ms
99,436 KB
testcase_12 AC 1,663 ms
100,412 KB
testcase_13 AC 1,849 ms
102,552 KB
testcase_14 AC 2,474 ms
130,040 KB
testcase_15 AC 2,629 ms
131,108 KB
testcase_16 AC 2,858 ms
132,672 KB
testcase_17 AC 2,713 ms
131,380 KB
testcase_18 AC 2,603 ms
130,656 KB
testcase_19 AC 2,889 ms
106,808 KB
testcase_20 AC 2,371 ms
109,544 KB
権限があれば一括ダウンロードができます

ソースコード

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], Q + 1));
			g[B[i]].add(new Edge(B[i], A[i], Q + 1));
		}

		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();
			d[v] = Q + 1;
			checked[v] = true;
			for (Edge e : g[v]) {
				if (checked[e.dst])
					continue;
				if (e.event_time == Q + 1) {
					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) {
							que.add(e.dst);
						} else {
							pending[e.event_time].add(e.dst);
						}
					}
				}
			}
		}
		for (int i = 1; i < N; i++) {
			if (d[i] == Q + 1) {
				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