結果

問題 No.1013 〇マス進む
ユーザー MisterMister
提出日時 2020-05-02 02:12:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,104 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 40,936 KB
最終ジャッジ日時 2024-06-07 16:18:13
合計ジャッジ時間 9,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 83 ms
21,220 KB
testcase_15 AC 145 ms
32,356 KB
testcase_16 AC 123 ms
30,052 KB
testcase_17 AC 74 ms
19,044 KB
testcase_18 AC 90 ms
22,372 KB
testcase_19 AC 55 ms
14,720 KB
testcase_20 AC 169 ms
38,884 KB
testcase_21 AC 67 ms
17,536 KB
testcase_22 AC 94 ms
23,272 KB
testcase_23 AC 31 ms
9,728 KB
testcase_24 AC 176 ms
40,036 KB
testcase_25 AC 173 ms
39,268 KB
testcase_26 AC 32 ms
9,600 KB
testcase_27 AC 65 ms
16,768 KB
testcase_28 AC 32 ms
9,856 KB
testcase_29 AC 160 ms
38,120 KB
testcase_30 AC 56 ms
15,360 KB
testcase_31 AC 108 ms
26,592 KB
testcase_32 AC 77 ms
20,448 KB
testcase_33 AC 83 ms
20,452 KB
testcase_34 AC 144 ms
30,700 KB
testcase_35 AC 141 ms
29,284 KB
testcase_36 AC 11 ms
6,940 KB
testcase_37 AC 9 ms
6,940 KB
testcase_38 AC 152 ms
33,636 KB
testcase_39 AC 49 ms
12,928 KB
testcase_40 AC 154 ms
30,440 KB
testcase_41 AC 34 ms
9,984 KB
testcase_42 AC 83 ms
19,688 KB
testcase_43 AC 52 ms
13,824 KB
testcase_44 AC 86 ms
20,704 KB
testcase_45 AC 73 ms
18,528 KB
testcase_46 AC 37 ms
10,624 KB
testcase_47 AC 79 ms
19,808 KB
testcase_48 AC 96 ms
22,628 KB
testcase_49 AC 152 ms
30,440 KB
testcase_50 AC 116 ms
26,468 KB
testcase_51 AC 106 ms
24,040 KB
testcase_52 AC 21 ms
7,296 KB
testcase_53 AC 30 ms
9,216 KB
testcase_54 AC 120 ms
28,896 KB
testcase_55 AC 39 ms
10,880 KB
testcase_56 AC 170 ms
35,940 KB
testcase_57 AC 133 ms
25,448 KB
testcase_58 AC 204 ms
40,804 KB
testcase_59 AC 193 ms
40,808 KB
testcase_60 AC 195 ms
40,932 KB
testcase_61 AC 172 ms
40,936 KB
testcase_62 AC 168 ms
40,936 KB
testcase_63 AC 2 ms
6,944 KB
testcase_64 AC 2 ms
6,944 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