結果

問題 No.2565 はじめてのおつかい
ユーザー InTheBloomInTheBloom
提出日時 2023-12-02 15:49:52
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 4,225 ms
コンパイル使用メモリ 174,604 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-26 19:22:25
合計ジャッジ時間 9,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 166 ms
12,928 KB
testcase_04 AC 139 ms
13,056 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 89 ms
11,368 KB
testcase_07 AC 44 ms
6,016 KB
testcase_08 AC 46 ms
6,144 KB
testcase_09 AC 81 ms
11,264 KB
testcase_10 AC 55 ms
7,936 KB
testcase_11 AC 123 ms
12,128 KB
testcase_12 AC 32 ms
5,376 KB
testcase_13 AC 54 ms
7,808 KB
testcase_14 AC 89 ms
11,740 KB
testcase_15 AC 96 ms
11,548 KB
testcase_16 AC 82 ms
12,800 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 23 ms
5,376 KB
testcase_19 AC 110 ms
12,008 KB
testcase_20 AC 97 ms
11,904 KB
testcase_21 AC 88 ms
11,796 KB
testcase_22 AC 49 ms
7,680 KB
testcase_23 AC 62 ms
9,728 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 105 ms
12,032 KB
testcase_26 AC 60 ms
9,600 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 109 ms
11,904 KB
testcase_29 AC 124 ms
12,288 KB
testcase_30 AC 94 ms
12,160 KB
testcase_31 AC 103 ms
11,904 KB
testcase_32 AC 57 ms
8,832 KB
testcase_33 AC 95 ms
12,160 KB
testcase_34 AC 105 ms
11,776 KB
testcase_35 AC 91 ms
12,544 KB
testcase_36 AC 108 ms
12,160 KB
testcase_37 AC 59 ms
9,216 KB
testcase_38 AC 100 ms
11,740 KB
testcase_39 AC 86 ms
11,492 KB
testcase_40 AC 113 ms
12,288 KB
testcase_41 AC 118 ms
12,544 KB
testcase_42 AC 62 ms
9,088 KB
testcase_43 AC 88 ms
11,692 KB
testcase_44 AC 48 ms
6,528 KB
testcase_45 AC 23 ms
5,376 KB
testcase_46 AC 102 ms
11,612 KB
testcase_47 AC 67 ms
10,676 KB
testcase_48 AC 56 ms
7,296 KB
testcase_49 AC 30 ms
5,376 KB
testcase_50 AC 83 ms
11,136 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 58 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, M; readln.read(N, M);
    int[][] graph = new int[][](N, 0);
    foreach (i; 0..M) {
        int u, v; readln.read(u, v);
        u--, v--;
        graph[u] ~= v;
    }

    solve(N, M, graph);
}

void solve (int N, int M, int[][] graph) {
    /* 最適ルートは 1 -> N-1 -> N -> 1 or 1 -> N -> N-1 -> 1のどちらか。これを全部BFSで調べる */
    int[] visited = new int[](N);
    DList!int Q;
    void BFS (int begin) {
        visited[] = int.max;
        visited[begin] = 0;
        Q.insertBack(begin);

        while (!Q.empty) {
            auto head = Q.front; Q.removeFront;
            foreach (to; graph[head]) {
                if (visited[to] == int.max) {
                    visited[to] = visited[head] + 1;
                    Q.insertBack(to);
                }
            }
        }

    }

    int ans = int.max;
    { // 1 -> N-1 -> N -> 1
        long candi = 0;
        BFS(0);
        candi += visited[N-2];
        BFS(N-2);
        candi += visited[N-1];
        BFS(N-1);
        candi += visited[0];

        if (candi < int.max) ans = min(ans, cast(int) candi);
    }
    { // 1 -> N -> N-1 -> 1
        long candi = 0;
        BFS(0);
        candi += visited[N-1];
        BFS(N-1);
        candi += visited[N-2];
        BFS(N-2);
        candi += visited[0];

        if (candi < int.max) ans = min(ans, cast(int) candi);
    }

    if (ans == int.max) {
        writeln(-1);
    }
    else {
        writeln(ans);
    }
}

void read (T...) (string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0