結果
問題 | No.614 壊れたキャンパス |
ユーザー | Grenache |
提出日時 | 2018-01-07 11:52:10 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,894 ms / 2,000 ms |
コード長 | 6,175 bytes |
コンパイル時間 | 3,734 ms |
コンパイル使用メモリ | 85,028 KB |
実行使用メモリ | 140,336 KB |
最終ジャッジ日時 | 2024-06-02 12:24:52 |
合計ジャッジ時間 | 18,004 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
37,252 KB |
testcase_01 | AC | 49 ms
37,408 KB |
testcase_02 | AC | 49 ms
37,224 KB |
testcase_03 | AC | 50 ms
37,048 KB |
testcase_04 | AC | 50 ms
37,200 KB |
testcase_05 | AC | 48 ms
37,448 KB |
testcase_06 | AC | 49 ms
37,204 KB |
testcase_07 | AC | 49 ms
37,012 KB |
testcase_08 | AC | 831 ms
67,932 KB |
testcase_09 | AC | 1,894 ms
140,336 KB |
testcase_10 | AC | 935 ms
78,576 KB |
testcase_11 | AC | 929 ms
68,152 KB |
testcase_12 | AC | 949 ms
63,596 KB |
testcase_13 | AC | 942 ms
65,212 KB |
testcase_14 | AC | 1,015 ms
70,496 KB |
testcase_15 | AC | 922 ms
73,828 KB |
testcase_16 | AC | 850 ms
72,840 KB |
testcase_17 | AC | 815 ms
90,460 KB |
testcase_18 | AC | 941 ms
90,116 KB |
testcase_19 | AC | 1,160 ms
110,144 KB |
ソースコード
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); } } }