結果

問題 No.807 umg tours
ユーザー kusomushikusomushi
提出日時 2019-07-10 02:44:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,413 ms / 4,000 ms
コード長 5,551 bytes
コンパイル時間 2,697 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 75,440 KB
最終ジャッジ日時 2024-11-23 19:33:27
合計ジャッジ時間 21,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
38,660 KB
testcase_01 AC 102 ms
38,608 KB
testcase_02 AC 111 ms
38,776 KB
testcase_03 AC 116 ms
39,232 KB
testcase_04 AC 97 ms
38,920 KB
testcase_05 AC 107 ms
39,176 KB
testcase_06 AC 113 ms
39,336 KB
testcase_07 AC 109 ms
39,012 KB
testcase_08 AC 83 ms
38,064 KB
testcase_09 AC 89 ms
38,556 KB
testcase_10 AC 89 ms
38,604 KB
testcase_11 AC 899 ms
58,308 KB
testcase_12 AC 1,136 ms
60,676 KB
testcase_13 AC 1,050 ms
65,572 KB
testcase_14 AC 690 ms
54,260 KB
testcase_15 AC 606 ms
52,672 KB
testcase_16 AC 1,154 ms
67,472 KB
testcase_17 AC 1,400 ms
75,440 KB
testcase_18 AC 1,413 ms
73,672 KB
testcase_19 AC 1,346 ms
69,136 KB
testcase_20 AC 962 ms
62,328 KB
testcase_21 AC 949 ms
63,664 KB
testcase_22 AC 547 ms
53,560 KB
testcase_23 AC 495 ms
52,668 KB
testcase_24 AC 1,012 ms
66,808 KB
testcase_25 AC 1,403 ms
74,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.Function;

public class Main {

    static int N, M;
    static Edge[] E;

    public static void main(String[] args) {
        FastScanner sc = new FastScanner(System.in);
        N = sc.nextInt();
        M = sc.nextInt();
        E = new Edge[M];
        for (int i = 0; i < M; i++) {
            E[i] = new Edge(sc.nextInt()-1, sc.nextInt()-1, sc.nextInt());
        }

        writeLines(solve());
    }

    static class Edge {
        int a, b, c;

        public Edge(int a, int b, int c) {
            this.a = a;
            this.b = b;
            this.c = c;
        }
    }

    static long[] solve() {
        Edge[][] G = adjB(N, E);

        long[][] dist = new long[N][2];
        for (long[] row : dist) {
            Arrays.fill(row, Long.MAX_VALUE/2);
        }
        dist[0][0] = 0;
        PriorityQueue<State> q = new PriorityQueue<>(Comparator.<State>comparingLong(s -> s.d).thenComparingInt(s -> s.used));
        q.add(new State(0, 0, 0L));
        while( !q.isEmpty() ) {
            State s = q.poll();
            if( dist[s.a][s.used] != s.d ) continue;

            for (Edge e : G[s.a]) {
                int b = e.a == s.a ? e.b : e.a;
                if( dist[b][s.used] > dist[s.a][s.used] + e.c ) {
                    dist[b][s.used] = dist[s.a][s.used] + e.c;
                    q.add( new State(b, s.used, dist[b][s.used]) );
                }
                if( s.used == 0 && dist[b][1] > dist[s.a][0] ) {
                    dist[b][1] = dist[s.a][0];
                    q.add( new State(b, 1, dist[b][1]) );
                }
            }
        }

        long[] ans = new long[N];
        for (int i = 1; i < N; i++) {
            ans[i] = dist[i][0] + dist[i][1];
        }
        return ans;
    }

    static Edge[][] adjB(int n, Edge[] E) {
        Edge[][] adj = new Edge[n][];
        int[] cnt = new int[n];
        for (Edge e : E) {
            cnt[e.a]++;
            cnt[e.b]++;
        }
        for (int i = 0; i < n; i++) {
            adj[i] = new Edge[cnt[i]];
        }
        for (Edge e : E) {
            adj[e.a][--cnt[e.a]] = e;
            adj[e.b][--cnt[e.b]] = e;
        }
        return adj;
    }

    static class State {
        int a, used;
        long d;

        public State(int a, int used, long d) {
            this.a = a;
            this.used = used;
            this.d = d;
        }
    }

    @SuppressWarnings("unused")
    static class FastScanner {
        private BufferedReader reader;
        private StringTokenizer tokenizer;

        FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken("\n");
        }

        long nextLong() {
            return Long.parseLong(next());
        }

        int nextInt() {
            return Integer.parseInt(next());
        }

        int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        int[] nextIntArray(int n, int delta) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt() + delta;
            return a;
        }

        long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        }
    }

    static <A> void writeLines(A[] as, Function<A, String> f) {
        PrintWriter pw = new PrintWriter(System.out);
        for (A a : as) {
            pw.println(f.apply(a));
        }
        pw.flush();
    }

    static void writeLines(int[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (int a : as) pw.println(a);
        pw.flush();
    }

    static void writeLines(long[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (long a : as) pw.println(a);
        pw.flush();
    }

    static int max(int... as) {
        int max = Integer.MIN_VALUE;
        for (int a : as) max = Math.max(a, max);
        return max;
    }

    static int min(int... as) {
        int min = Integer.MAX_VALUE;
        for (int a : as) min = Math.min(a, min);
        return min;
    }

    static void debug(Object... args) {
        StringJoiner j = new StringJoiner(" ");
        for (Object arg : args) {
            if (arg instanceof int[]) j.add(Arrays.toString((int[]) arg));
            else if (arg instanceof long[]) j.add(Arrays.toString((long[]) arg));
            else if (arg instanceof double[]) j.add(Arrays.toString((double[]) arg));
            else if (arg instanceof Object[]) j.add(Arrays.toString((Object[]) arg));
            else j.add(arg.toString());
        }
        System.err.println(j.toString());
    }
}
0