結果

問題 No.1013 〇マス進む
ユーザー MisterMister
提出日時 2020-05-02 02:12:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,104 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 40,932 KB
最終ジャッジ日時 2024-12-25 23:03:24
合計ジャッジ時間 10,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 8 ms
5,248 KB
testcase_14 AC 82 ms
21,224 KB
testcase_15 AC 135 ms
32,356 KB
testcase_16 AC 124 ms
29,924 KB
testcase_17 AC 72 ms
18,920 KB
testcase_18 AC 90 ms
22,372 KB
testcase_19 AC 54 ms
14,848 KB
testcase_20 AC 172 ms
38,888 KB
testcase_21 AC 72 ms
17,664 KB
testcase_22 AC 101 ms
23,140 KB
testcase_23 AC 33 ms
9,600 KB
testcase_24 AC 172 ms
40,040 KB
testcase_25 AC 176 ms
39,396 KB
testcase_26 AC 33 ms
9,728 KB
testcase_27 AC 66 ms
16,768 KB
testcase_28 AC 31 ms
9,856 KB
testcase_29 AC 171 ms
38,120 KB
testcase_30 AC 57 ms
15,360 KB
testcase_31 AC 104 ms
26,468 KB
testcase_32 AC 75 ms
20,456 KB
testcase_33 AC 84 ms
20,452 KB
testcase_34 AC 140 ms
30,696 KB
testcase_35 AC 141 ms
29,028 KB
testcase_36 AC 10 ms
5,248 KB
testcase_37 AC 10 ms
5,248 KB
testcase_38 AC 160 ms
33,512 KB
testcase_39 AC 47 ms
12,928 KB
testcase_40 AC 178 ms
30,436 KB
testcase_41 AC 39 ms
9,984 KB
testcase_42 AC 88 ms
19,556 KB
testcase_43 AC 57 ms
13,824 KB
testcase_44 AC 92 ms
20,708 KB
testcase_45 AC 74 ms
18,656 KB
testcase_46 AC 36 ms
10,624 KB
testcase_47 AC 81 ms
19,684 KB
testcase_48 AC 101 ms
22,628 KB
testcase_49 AC 151 ms
30,436 KB
testcase_50 AC 113 ms
26,472 KB
testcase_51 AC 113 ms
23,904 KB
testcase_52 AC 24 ms
7,168 KB
testcase_53 AC 29 ms
9,216 KB
testcase_54 AC 122 ms
28,900 KB
testcase_55 AC 39 ms
10,880 KB
testcase_56 AC 167 ms
35,940 KB
testcase_57 AC 132 ms
25,444 KB
testcase_58 AC 212 ms
40,692 KB
testcase_59 AC 191 ms
40,904 KB
testcase_60 AC 197 ms
40,932 KB
testcase_61 AC 168 ms
40,804 KB
testcase_62 AC 178 ms
40,800 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

template <class T>
std::vector<T> vec(int len, T elem) { return std::vector<T>(len, elem); }

using lint = long long;

void solve() {
    int n, m;
    std::cin >> n >> m;

    std::vector<int> ps(n);
    for (auto& p : ps) std::cin >> p;

    auto to = vec(31, vec(n, 0));
    auto cost = vec(31, vec(n, 0LL));
    for (int i = 0; i < n; ++i) {
        to[0][i] = (i + ps[i]) % n;
        cost[0][i] = ps[i];
    }

    for (int k = 1; k <= 30; ++k) {
        for (int i = 0; i < n; ++i) {
            to[k][i] = to[k - 1][to[k - 1][i]];
            cost[k][i] = cost[k - 1][i] + cost[k - 1][to[k - 1][i]];
        }
    }

    for (int i = 0; i < n; ++i) {
        int rem = m;
        lint ans = 0;
        int v = i;
        for (int k = 30; k >= 0; --k) {
            if (rem < (1 << k)) continue;
            ans += cost[k][v];
            v = to[k][v];
            rem -= (1 << k);
        }

        std::cout << ans + i + 1 << std::endl;
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0