結果

問題 No.1013 〇マス進む
ユーザー hiroaki0615hiroaki0615
提出日時 2020-03-21 11:20:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,181 ms / 2,000 ms
コード長 1,301 bytes
コンパイル時間 936 ms
コンパイル使用メモリ 86,464 KB
実行使用メモリ 33,388 KB
最終ジャッジ日時 2024-06-01 06:02:18
合計ジャッジ時間 27,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 20 ms
6,944 KB
testcase_14 AC 319 ms
17,572 KB
testcase_15 AC 641 ms
26,516 KB
testcase_16 AC 537 ms
24,444 KB
testcase_17 AC 274 ms
15,712 KB
testcase_18 AC 378 ms
18,604 KB
testcase_19 AC 191 ms
12,380 KB
testcase_20 AC 834 ms
31,832 KB
testcase_21 AC 244 ms
14,716 KB
testcase_22 AC 389 ms
19,240 KB
testcase_23 AC 94 ms
8,448 KB
testcase_24 AC 844 ms
32,612 KB
testcase_25 AC 822 ms
32,096 KB
testcase_26 AC 105 ms
8,320 KB
testcase_27 AC 215 ms
14,064 KB
testcase_28 AC 98 ms
8,448 KB
testcase_29 AC 774 ms
31,308 KB
testcase_30 AC 222 ms
12,896 KB
testcase_31 AC 461 ms
21,716 KB
testcase_32 AC 289 ms
16,916 KB
testcase_33 AC 355 ms
17,044 KB
testcase_34 AC 700 ms
25,092 KB
testcase_35 AC 703 ms
23,924 KB
testcase_36 AC 32 ms
6,940 KB
testcase_37 AC 27 ms
6,940 KB
testcase_38 AC 776 ms
27,552 KB
testcase_39 AC 216 ms
11,080 KB
testcase_40 AC 781 ms
25,088 KB
testcase_41 AC 137 ms
8,576 KB
testcase_42 AC 362 ms
16,528 KB
testcase_43 AC 214 ms
11,724 KB
testcase_44 AC 343 ms
17,180 KB
testcase_45 AC 294 ms
15,488 KB
testcase_46 AC 153 ms
9,088 KB
testcase_47 AC 339 ms
16,400 KB
testcase_48 AC 407 ms
18,604 KB
testcase_49 AC 785 ms
24,960 KB
testcase_50 AC 551 ms
21,716 KB
testcase_51 AC 480 ms
19,896 KB
testcase_52 AC 77 ms
6,940 KB
testcase_53 AC 107 ms
8,064 KB
testcase_54 AC 546 ms
23,788 KB
testcase_55 AC 171 ms
9,216 KB
testcase_56 AC 935 ms
29,372 KB
testcase_57 AC 586 ms
20,940 KB
testcase_58 AC 1,181 ms
33,388 KB
testcase_59 AC 1,122 ms
33,260 KB
testcase_60 AC 996 ms
33,384 KB
testcase_61 AC 804 ms
33,388 KB
testcase_62 AC 738 ms
33,264 KB
testcase_63 AC 2 ms
6,940 KB
testcase_64 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<map>
#define rep(i, start, end) for (int i = (int)start; i < (int)end; ++i)
#define rrep(i, start, end) for (int i = (int)start - 1; i >= (int)end; --i)
#define all(x) (x).begin(), (x).end()
using namespace std;
using ll = long long;
template<typename T> inline bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return 0;}
template<typename T> inline bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return 0;}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, K;
    cin >> N >> K;
    vector<int> P(N);
    for (auto& p : P) {
        cin >> p;
        --p;
    }
    map<int, int> pos;
    vector<vector<ll>> doubling(32, vector<ll>(N));
    rep(i, 0, N) {
        doubling[0][P[i]] = P[i] + 1;
        pos[P[i]] = i;
    }
    rep(i, 1, 32) rep(p, 0, N) {
        int next_p = P[(pos[p] + doubling[i - 1][p]) % N];
        doubling[i][p] = doubling[i - 1][p] + doubling[i - 1][next_p];
    }
    rep(i, 0, N) {
        int now = P[i];
        ll ans = pos[P[i]] + 1;
        rep(j, 0, 32) {
            if ((K >> j) & 1) {
                ans += doubling[j][now];
                now = P[(pos[now] + doubling[j][now]) % N];
            }
        }
        cout << ans << endl;
    }
    return 0;
}
0