結果

問題 No.1013 〇マス進む
ユーザー hiroaki0615hiroaki0615
提出日時 2020-03-21 11:20:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,042 ms / 2,000 ms
コード長 1,301 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 86,800 KB
実行使用メモリ 33,384 KB
最終ジャッジ日時 2024-12-21 09:35:44
合計ジャッジ時間 25,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 20 ms
6,816 KB
testcase_14 AC 308 ms
17,564 KB
testcase_15 AC 568 ms
26,520 KB
testcase_16 AC 491 ms
24,440 KB
testcase_17 AC 271 ms
15,744 KB
testcase_18 AC 361 ms
18,476 KB
testcase_19 AC 189 ms
12,280 KB
testcase_20 AC 721 ms
31,708 KB
testcase_21 AC 240 ms
14,588 KB
testcase_22 AC 364 ms
19,120 KB
testcase_23 AC 95 ms
8,448 KB
testcase_24 AC 701 ms
32,612 KB
testcase_25 AC 710 ms
32,092 KB
testcase_26 AC 104 ms
8,320 KB
testcase_27 AC 216 ms
14,068 KB
testcase_28 AC 101 ms
8,320 KB
testcase_29 AC 696 ms
31,184 KB
testcase_30 AC 216 ms
12,772 KB
testcase_31 AC 420 ms
21,720 KB
testcase_32 AC 287 ms
16,920 KB
testcase_33 AC 337 ms
16,920 KB
testcase_34 AC 627 ms
25,092 KB
testcase_35 AC 648 ms
24,052 KB
testcase_36 AC 32 ms
6,820 KB
testcase_37 AC 28 ms
6,820 KB
testcase_38 AC 687 ms
27,552 KB
testcase_39 AC 213 ms
10,952 KB
testcase_40 AC 708 ms
24,960 KB
testcase_41 AC 136 ms
8,448 KB
testcase_42 AC 355 ms
16,404 KB
testcase_43 AC 214 ms
11,600 KB
testcase_44 AC 335 ms
17,180 KB
testcase_45 AC 292 ms
15,360 KB
testcase_46 AC 153 ms
8,960 KB
testcase_47 AC 330 ms
16,396 KB
testcase_48 AC 393 ms
18,608 KB
testcase_49 AC 714 ms
24,964 KB
testcase_50 AC 519 ms
21,720 KB
testcase_51 AC 468 ms
19,900 KB
testcase_52 AC 79 ms
6,820 KB
testcase_53 AC 109 ms
8,064 KB
testcase_54 AC 512 ms
23,796 KB
testcase_55 AC 170 ms
9,216 KB
testcase_56 AC 839 ms
29,236 KB
testcase_57 AC 556 ms
20,940 KB
testcase_58 AC 1,042 ms
33,264 KB
testcase_59 AC 988 ms
33,264 KB
testcase_60 AC 899 ms
33,384 KB
testcase_61 AC 678 ms
33,260 KB
testcase_62 AC 605 ms
33,264 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
6,816 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