結果

問題 No.807 umg tours
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-16 17:18:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,006 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 93,300 KB
実行使用メモリ 167,680 KB
最終ジャッジ日時 2024-09-17 05:36:06
合計ジャッジ時間 53,865 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
54,696 KB
testcase_01 AC 201 ms
54,912 KB
testcase_02 AC 233 ms
54,772 KB
testcase_03 AC 214 ms
54,872 KB
testcase_04 AC 199 ms
54,852 KB
testcase_05 AC 202 ms
54,760 KB
testcase_06 AC 205 ms
55,136 KB
testcase_07 AC 200 ms
54,888 KB
testcase_08 AC 153 ms
54,224 KB
testcase_09 AC 159 ms
54,164 KB
testcase_10 AC 176 ms
54,440 KB
testcase_11 AC 3,106 ms
131,412 KB
testcase_12 AC 3,070 ms
120,828 KB
testcase_13 AC 3,658 ms
146,924 KB
testcase_14 AC 2,380 ms
101,324 KB
testcase_15 AC 1,920 ms
104,548 KB
testcase_16 AC 3,545 ms
147,308 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 3,971 ms
166,176 KB
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = Integer.parseInt(stdin.next());
        int m = Integer.parseInt(stdin.next());
        
        Map<Integer, Map<Integer, Integer>> costs = new HashMap<>();
        for (int i = 0; i < m; i++) {
            int a = Integer.parseInt(stdin.next()) - 1;
            int b = Integer.parseInt(stdin.next()) - 1;
            int c = Integer.parseInt(stdin.next());
            
            costs.computeIfAbsent(a, unused -> new HashMap<>()).put(b, c);
            costs.computeIfAbsent(b, unused -> new HashMap<>()).put(a, c);
        }
        
        int[] d1 = new int[n];
        PriorityQueue<Integer> q1 = new PriorityQueue<>(Comparator.comparing(i -> d1[i]));
        
        Arrays.fill(d1, Integer.MAX_VALUE);
        d1[0] = 0;
        q1.add(0);
        
        while (!q1.isEmpty()) {
            int u = q1.poll();
            for (int v : costs.getOrDefault(u, Collections.emptyMap()).keySet()) {
                if (d1[u] + costs.get(u).get(v) < d1[v]) {
                    d1[v] = d1[u] + costs.get(u).get(v);
                    q1.add(v);
                }
            }
        }
        
        
        int[] d2 = new int[n * 2];
        PriorityQueue<Integer> q2 = new PriorityQueue<>(Comparator.comparing(i -> d2[i]));
        
        Arrays.fill(d2, Integer.MAX_VALUE);
        d2[n * 0 + 0] = 0;
        d2[n * 1 + 0] = 0;
        q2.add(n * 0 + 0);
        q2.add(n * 1 + 0);
        
        while (!q2.isEmpty()) {
            int u = q2.poll();
            int x = u % n;
            boolean skipped = (u / n == 1);
            if (skipped) {
                for (int y : costs.getOrDefault(x, Collections.emptyMap()).keySet()) {
                    int v = n * 1 + y;
                    if (d2[u] + costs.get(x).get(y) < d2[v]) {
                        d2[v] = d2[u] + costs.get(x).get(y);
                        q2.add(v);
                    }
                }
            } else {
                for (int y : costs.getOrDefault(x, Collections.emptyMap()).keySet()) {
                    int v = n * 0 + y;
                    if (d2[u] + costs.get(x).get(y) < d2[v]) {
                        d2[v] = d2[u] + costs.get(x).get(y);
                        q2.add(v);
                    }
                }
                
                for (int y : costs.getOrDefault(x, Collections.emptyMap()).keySet()) {
                    int v = n * 1 + y;
                    if (d2[u] < d2[v]) {
                        d2[v] = d2[u];
                        q2.add(v);
                    }
                }
            }
        }
        
        for (int i = 0; i < n; i++) {
            System.out.println(d1[i] + d2[n * 1 + i]);
        }
    }
}
0