結果

問題 No.1868 Teleporting Cyanmond
ユーザー baLoon8128baLoon8128
提出日時 2022-03-18 19:51:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 3,819 ms
コンパイル使用メモリ 237,724 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-10-03 04:39:05
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 35 ms
8,448 KB
testcase_04 AC 25 ms
6,912 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 7 ms
5,248 KB
testcase_07 AC 18 ms
5,760 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 AC 16 ms
5,504 KB
testcase_10 AC 33 ms
7,936 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 18 ms
6,016 KB
testcase_14 AC 37 ms
8,576 KB
testcase_15 AC 25 ms
6,784 KB
testcase_16 AC 6 ms
5,248 KB
testcase_17 AC 9 ms
5,248 KB
testcase_18 AC 42 ms
9,088 KB
testcase_19 AC 39 ms
9,100 KB
testcase_20 AC 41 ms
9,216 KB
testcase_21 AC 41 ms
9,216 KB
testcase_22 AC 40 ms
9,088 KB
testcase_23 AC 40 ms
9,216 KB
testcase_24 AC 40 ms
9,216 KB
testcase_25 AC 40 ms
9,088 KB
testcase_26 AC 38 ms
9,216 KB
testcase_27 AC 39 ms
9,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:34:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   34 |         for (auto [t, c] : g[v]) {
      |                   ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

int main() {
    const int INF = 1001001001;
    int n;
    cin >> n;
    vector<vector<pii>> g(n, vector<pii>(0));
    rep(i, n - 1) g[i + 1].emplace_back(i, 0);
    rep(i, n - 1) {
        int r;
        cin >> r;
        r--;
        g[i].emplace_back(r, 1);
    }

    vi ret(n, INF);
    deque<pii> dq;
    dq.emplace_back(0, 0);
    ret[0] = 0;
    while (dq.size()) {
        int v, d;
        tie(v, d) = dq.front();
        dq.pop_front();
        if (d > ret[v]) continue;
        for (auto [t, c] : g[v]) {
            if (d + c < ret[t]) {
                ret[t] = d + c;
                if (c == 0) {
                    dq.emplace_front(t, d);
                } else {
                    dq.emplace_back(t, d + c);
                }
            }
        }
    }
    cout << ret[n - 1] << endl;
    return 0;
}
0