結果

問題 No.2565 はじめてのおつかい
ユーザー tentententen
提出日時 2024-07-31 15:17:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 2,431 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 79,628 KB
実行使用メモリ 77,448 KB
最終ジャッジ日時 2024-07-31 15:17:58
合計ジャッジ時間 19,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,412 KB
testcase_01 AC 49 ms
50,344 KB
testcase_02 AC 63 ms
50,484 KB
testcase_03 AC 645 ms
77,448 KB
testcase_04 AC 427 ms
73,700 KB
testcase_05 AC 51 ms
50,520 KB
testcase_06 AC 357 ms
61,268 KB
testcase_07 AC 229 ms
59,016 KB
testcase_08 AC 231 ms
59,500 KB
testcase_09 AC 321 ms
61,324 KB
testcase_10 AC 268 ms
60,060 KB
testcase_11 AC 368 ms
65,368 KB
testcase_12 AC 198 ms
58,120 KB
testcase_13 AC 256 ms
60,056 KB
testcase_14 AC 348 ms
63,364 KB
testcase_15 AC 332 ms
63,164 KB
testcase_16 AC 263 ms
64,140 KB
testcase_17 AC 155 ms
55,580 KB
testcase_18 AC 156 ms
55,680 KB
testcase_19 AC 361 ms
63,384 KB
testcase_20 AC 316 ms
63,244 KB
testcase_21 AC 294 ms
63,232 KB
testcase_22 AC 237 ms
58,880 KB
testcase_23 AC 255 ms
59,956 KB
testcase_24 AC 142 ms
54,896 KB
testcase_25 AC 339 ms
63,324 KB
testcase_26 AC 271 ms
59,748 KB
testcase_27 AC 277 ms
63,296 KB
testcase_28 AC 343 ms
63,368 KB
testcase_29 AC 358 ms
65,608 KB
testcase_30 AC 302 ms
63,408 KB
testcase_31 AC 315 ms
63,332 KB
testcase_32 AC 240 ms
59,676 KB
testcase_33 AC 304 ms
63,372 KB
testcase_34 AC 352 ms
63,468 KB
testcase_35 AC 288 ms
63,128 KB
testcase_36 AC 321 ms
65,296 KB
testcase_37 AC 243 ms
59,968 KB
testcase_38 AC 310 ms
63,220 KB
testcase_39 AC 336 ms
63,320 KB
testcase_40 AC 315 ms
65,260 KB
testcase_41 AC 350 ms
65,420 KB
testcase_42 AC 255 ms
60,160 KB
testcase_43 AC 305 ms
63,028 KB
testcase_44 AC 222 ms
59,152 KB
testcase_45 AC 181 ms
57,388 KB
testcase_46 AC 328 ms
63,304 KB
testcase_47 AC 297 ms
60,520 KB
testcase_48 AC 268 ms
60,516 KB
testcase_49 AC 201 ms
58,244 KB
testcase_50 AC 334 ms
63,192 KB
testcase_51 AC 50 ms
50,532 KB
testcase_52 AC 312 ms
63,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        List<List<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            graph.get(sc.nextInt() - 1).add(sc.nextInt() - 1);
        }
        int[] starts = new int[]{0, n - 2, n - 1};
        Deque<Path> deq = new ArrayDeque<>();
        int[][] costs = new int[3][n];
        for (int i = 0; i < 3; i++) {
            Arrays.fill(costs[i], Integer.MAX_VALUE / 3);
            deq.add(new Path(starts[i], 0));
            while (deq.size() > 0) {
                Path p = deq.poll();
                if (costs[i][p.idx] <= p.value) {
                    continue;
                }
                costs[i][p.idx] = p.value;
                for (int x : graph.get(p.idx)) {
                    deq.add(new Path(x, p.value + 1));
                }
            }
        }
        int ans = Math.min(costs[0][n - 2] + costs[1][n - 1] + costs[2][0]
            , costs[0][n - 1] + costs[2][n - 2] + costs[1][0]);
        System.out.println(ans >= Integer.MAX_VALUE / 3 ? -1 : ans);
    }
    
    static class Path {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0