結果

問題 No.614 壊れたキャンパス
ユーザー GrenacheGrenache
提出日時 2018-01-07 11:52:10
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 6,175 bytes
コンパイル時間 7,021 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 136,408 KB
最終ジャッジ日時 2023-08-24 23:23:13
合計ジャッジ時間 21,189 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,744 KB
testcase_01 AC 44 ms
49,720 KB
testcase_02 AC 44 ms
49,764 KB
testcase_03 AC 43 ms
49,368 KB
testcase_04 AC 45 ms
49,824 KB
testcase_05 AC 45 ms
49,604 KB
testcase_06 AC 44 ms
49,744 KB
testcase_07 AC 44 ms
49,584 KB
testcase_08 AC 968 ms
77,220 KB
testcase_09 TLE -
testcase_10 AC 1,112 ms
89,416 KB
testcase_11 AC 1,161 ms
80,472 KB
testcase_12 AC 1,016 ms
75,120 KB
testcase_13 AC 1,035 ms
73,716 KB
testcase_14 AC 1,001 ms
78,800 KB
testcase_15 AC 961 ms
84,548 KB
testcase_16 AC 1,006 ms
82,932 KB
testcase_17 AC 850 ms
102,688 KB
testcase_18 AC 1,020 ms
104,748 KB
testcase_19 AC 1,464 ms
122,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder614 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int m = sc.nextInt();
		@SuppressWarnings("unused")
		int k = sc.nextInt();
		int s = sc.nextInt();
		int t = sc.nextInt();

		int[] a = new int[m];
		int[] b = new int[m];
		int[] c = new int[m];
		List<List<Integer>> edges = new ArrayList<>(n - 1);
		for (int i = 0; i < n - 1; i++) {
			edges.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			a[i] = sc.nextInt() - 1;
			b[i] = sc.nextInt();
			c[i] = sc.nextInt();

			edges.get(a[i]).add(i);
		}

		final long INF = Long.MAX_VALUE / 4;
		Map<Integer, Long> pre = new TreeMap<>();
		pre.put(s, 0L);
		for (int i = 0; i < n - 1; i++) {
			Map<Integer, Long> tm = new TreeMap<>();
			tm.putAll(pre);
			for (int e : edges.get(i)) {
				if (!tm.containsKey(b[e])) {
					tm.put(b[e], INF);
				}
			}

			List<Integer> list = new ArrayList<>(tm.keySet());
			Collections.sort(list);

//			/*
			for (int j = 1, size = list.size(); j < size; j++) {
				int p = list.get(j - 1);
				int e = list.get(j);

				tm.put(e, Math.min(tm.get(p) + e - p, tm.get(e)));
			}
			for (int j = list.size() - 2; j >= 0; j--) {
				int ne = list.get(j + 1);
				int e = list.get(j);

				tm.put(e, Math.min(tm.get(ne) + ne - e, tm.get(e)));
			}
//			*/

			/*
			for (int j = 0, size = list.size(); j < size; j++) {
				int e = list.get(j);
				for (int j2 = 0; j2 < size; j2++) {
					int e2 = list.get(j2);

					if (j != j2) {
						tm.put(e, Math.min(tm.get(e2) + Math.abs(e2 - e), tm.get(e)));
					}
				}
			}
//			*/

			pre.clear();
			for (int e : edges.get(i)) {
				if (pre.containsKey(c[e])) {
					pre.put(c[e], Math.min(tm.get(b[e]), pre.get(c[e])));
				} else {
					pre.put(c[e], tm.get(b[e]));
				}
			}
//			*/

			/*
			tm = new TreeMap<>();
			for (int e : edges.get(i)) {
				long min = INF;
				for (Entry<Integer, Long> e2 : pre.entrySet()) {
					min = Math.min(min, Math.abs(e2.getKey() - b[e]) + e2.getValue());
				}
				if (tm.containsKey(c[e])) {
					tm.put(c[e], Math.min(min, tm.get(c[e])));
				} else {
					tm.put(c[e], min);
				}
			}
			pre = tm;
//			*/
		}

		long ans = INF;
		for (Entry<Integer, Long> e : pre.entrySet()) {
			ans = Math.min(ans, Math.abs(e.getKey() - t) + e.getValue());
		}

		if (ans == INF) {
			pr.println(-1);
		} else {
			pr.println(ans);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		private boolean isPrintable(int ch) {
			return ch >= '!' && ch <= '~';
		}

		private boolean isCRLF(int ch) {
			return ch == '\n' || ch == '\r' || ch == -1;
		}

		private int nextPrintable() {
			try {
				int ch;
				while (!isPrintable(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}

				return ch;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		String next() {
			try {
				int ch = nextPrintable();
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (isPrintable(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		int nextInt() {
			try {
				// parseInt from Integer.parseInt()
				boolean negative = false;
				int res = 0;
				int limit = -Integer.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Integer.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				int multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		long nextLong() {
			try {
				// parseLong from Long.parseLong()
				boolean negative = false;
				long res = 0;
				long limit = -Long.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Long.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				long multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		float nextFloat() {
			return Float.parseFloat(next());
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		String nextLine() {
			try {
				int ch;
				while (isCRLF(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (!isCRLF(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new NoSuchElementException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0