結果
問題 | No.614 壊れたキャンパス |
ユーザー | 37zigen |
提出日時 | 2020-04-08 16:54:00 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,290 bytes |
コンパイル時間 | 2,752 ms |
コンパイル使用メモリ | 83,192 KB |
実行使用メモリ | 141,736 KB |
最終ジャッジ日時 | 2024-07-18 15:48:20 |
合計ジャッジ時間 | 7,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
51,260 KB |
testcase_01 | AC | 65 ms
37,680 KB |
testcase_02 | AC | 65 ms
37,648 KB |
testcase_03 | AC | 65 ms
37,796 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 68 ms
37,712 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 1,220 ms
112,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 840 ms
141,736 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.Comparator; import java.util.HashSet; import java.util.NoSuchElementException; import java.util.Set; public class Main { public static void main(String[] args) { new Main().run(); } void updown(long[] dist, int[] level) { int N=dist.length; for (int i=1;i<N;++i) { dist[i]=Math.min(dist[i], dist[i-1]+level[i]-level[i-1]); } for (int i=N-2;i>=0;--i) { dist[i]=Math.min(dist[i], dist[i+1]+level[i+1]-level[i]); } } void run() { FastScanner sc=new FastScanner(); int N=sc.nextInt(); int M=sc.nextInt(); int K=sc.nextInt()-1; int S=sc.nextInt()-1; int T=sc.nextInt()-1; int[][] es=new int[N][3]; int[][] level=new int[N][]; long[][] dist=new long[N][]; long INF=Long.MAX_VALUE/3; for (int i=0;i<M;++i) { es[i][0]=sc.nextInt();// a => a+1 es[i][1]=sc.nextInt(); es[i][2]=sc.nextInt(); --es[i][0]; --es[i][1]; --es[i][2]; } Arrays.sort(es, Comparator.comparing((int[] v)->v[0]).thenComparing(v->v[0])); Set<Integer>[] set=new HashSet[N]; for (int i=0;i<N;++i) set[i]=new HashSet<>(); for (int i=0;i<M;++i) { set[es[i][0]].add(es[i][1]); set[es[i][0]+1].add(es[i][2]); } set[0].add(S); set[N-1].add(T); for (int i=0;i<N;++i) { level[i]=new int[set[i].size()]; dist[i]=new long[set[i].size()]; Arrays.fill(dist[i], INF); } for (int i=0;i<N;++i) { int p=0; for (int v:set[i]) { level[i][p++]=v; } Arrays.sort(level[i]); } dist[0][Arrays.binarySearch(level[0], S)]=0; for (int i=0;i<M;++i) { updown(dist[es[i][0]],level[es[i][0]]); int j=i; while (j+1<M && es[i][0]==es[j+1][0]) ++j; for (int k=i;k<=j;++k) { int from=Arrays.binarySearch(level[es[k][0]], es[k][1]); int to=Arrays.binarySearch(level[es[k][0]+1], es[k][2]); dist[es[k][0]+1][to]=Math.min(dist[es[k][0]+1][to], dist[es[k][0]][from]); } i=j; } updown(dist[N-1],level[N-1]); int goal=Arrays.binarySearch(level[N-1], T); System.out.println(dist[N-1][goal]==INF?-1:dist[N-1][goal]); } void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));} } class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { long nl = nextLong(); if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException(); return (int) nl; } public double nextDouble() { return Double.parseDouble(next());} }