結果

問題 No.1013 〇マス進む
ユーザー kibunakibuna
提出日時 2020-03-20 22:19:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 171,544 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-05-08 22:31:37
合計ジャッジ時間 13,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 124 ms
18,176 KB
testcase_15 AC 218 ms
27,520 KB
testcase_16 AC 197 ms
25,216 KB
testcase_17 AC 84 ms
16,256 KB
testcase_18 AC 113 ms
19,200 KB
testcase_19 AC 52 ms
12,672 KB
testcase_20 AC 282 ms
33,024 KB
testcase_21 AC 66 ms
15,232 KB
testcase_22 AC 134 ms
19,712 KB
testcase_23 AC 24 ms
8,704 KB
testcase_24 AC 295 ms
33,920 KB
testcase_25 AC 302 ms
33,152 KB
testcase_26 AC 28 ms
8,704 KB
testcase_27 AC 67 ms
14,592 KB
testcase_28 AC 26 ms
8,576 KB
testcase_29 AC 320 ms
32,256 KB
testcase_30 AC 73 ms
13,312 KB
testcase_31 AC 174 ms
22,400 KB
testcase_32 AC 95 ms
17,408 KB
testcase_33 AC 110 ms
17,536 KB
testcase_34 AC 256 ms
26,112 KB
testcase_35 AC 212 ms
24,704 KB
testcase_36 AC 8 ms
5,376 KB
testcase_37 AC 8 ms
5,376 KB
testcase_38 AC 261 ms
28,416 KB
testcase_39 AC 59 ms
11,264 KB
testcase_40 AC 251 ms
25,984 KB
testcase_41 AC 34 ms
8,576 KB
testcase_42 AC 105 ms
16,896 KB
testcase_43 AC 57 ms
12,032 KB
testcase_44 AC 117 ms
17,536 KB
testcase_45 AC 93 ms
15,872 KB
testcase_46 AC 39 ms
9,216 KB
testcase_47 AC 104 ms
16,768 KB
testcase_48 AC 131 ms
19,328 KB
testcase_49 AC 253 ms
25,856 KB
testcase_50 AC 183 ms
22,400 KB
testcase_51 AC 152 ms
20,480 KB
testcase_52 AC 20 ms
6,656 KB
testcase_53 AC 29 ms
8,064 KB
testcase_54 AC 182 ms
24,704 KB
testcase_55 AC 40 ms
9,344 KB
testcase_56 AC 290 ms
30,464 KB
testcase_57 AC 190 ms
21,632 KB
testcase_58 AC 415 ms
34,432 KB
testcase_59 AC 385 ms
34,304 KB
testcase_60 AC 303 ms
34,432 KB
testcase_61 AC 303 ms
34,560 KB
testcase_62 AC 257 ms
34,432 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint     = long long;
const lint inf = 1LL << 60;
const lint mod = 1000000007;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    lint n, k;
    cin >> n >> k;
    vector<lint> p(n);
    for (int i = 0; i < n; ++i) {
        cin >> p[i];
    }
    vector<vector<lint>> dbl(n, vector<lint>(35, 0));
    for (int i = 0; i < n; ++i) {
        dbl[i][0] = p[i];
    }
    for (int i = 1; i < 35; ++i) {
        for (int j = 0; j < n; ++j) {
            dbl[j][i] = dbl[j][i - 1] + dbl[(j + dbl[j][i - 1]) % n][i - 1];
        }
    }
    for (int i = 0; i < n; ++i) {
        lint curr = i;
        for (int j = 0; j < 35; ++j) {
            if (1LL << j & k) {
                curr += dbl[curr % n][j];
            }
        }
        cout << curr + 1 << "\n";
    }
    return 0;
}
0