結果

問題 No.1013 〇マス進む
ユーザー 0w10w1
提出日時 2020-11-13 10:17:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 208,956 KB
実行使用メモリ 40,036 KB
最終ジャッジ日時 2024-07-22 19:52:42
合計ジャッジ時間 9,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 30 ms
20,964 KB
testcase_15 AC 54 ms
31,840 KB
testcase_16 AC 46 ms
29,412 KB
testcase_17 AC 26 ms
18,532 KB
testcase_18 AC 34 ms
21,988 KB
testcase_19 AC 19 ms
14,592 KB
testcase_20 AC 66 ms
38,112 KB
testcase_21 AC 23 ms
17,280 KB
testcase_22 AC 35 ms
22,624 KB
testcase_23 AC 12 ms
9,600 KB
testcase_24 AC 67 ms
39,268 KB
testcase_25 AC 63 ms
38,504 KB
testcase_26 AC 13 ms
9,600 KB
testcase_27 AC 22 ms
16,640 KB
testcase_28 AC 13 ms
9,728 KB
testcase_29 AC 63 ms
37,480 KB
testcase_30 AC 21 ms
15,232 KB
testcase_31 AC 40 ms
26,080 KB
testcase_32 AC 28 ms
20,196 KB
testcase_33 AC 30 ms
20,064 KB
testcase_34 AC 57 ms
30,052 KB
testcase_35 AC 68 ms
28,520 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 68 ms
32,996 KB
testcase_39 AC 20 ms
12,800 KB
testcase_40 AC 83 ms
29,800 KB
testcase_41 AC 14 ms
9,856 KB
testcase_42 AC 32 ms
19,432 KB
testcase_43 AC 21 ms
13,568 KB
testcase_44 AC 35 ms
20,324 KB
testcase_45 AC 31 ms
18,148 KB
testcase_46 AC 16 ms
10,496 KB
testcase_47 AC 31 ms
19,304 KB
testcase_48 AC 37 ms
22,120 KB
testcase_49 AC 75 ms
29,928 KB
testcase_50 AC 48 ms
26,084 KB
testcase_51 AC 47 ms
23,524 KB
testcase_52 AC 10 ms
7,296 KB
testcase_53 AC 12 ms
9,088 KB
testcase_54 AC 49 ms
28,388 KB
testcase_55 AC 17 ms
10,752 KB
testcase_56 AC 74 ms
35,092 KB
testcase_57 AC 62 ms
25,056 KB
testcase_58 AC 111 ms
40,036 KB
testcase_59 AC 88 ms
39,908 KB
testcase_60 AC 89 ms
40,036 KB
testcase_61 AC 65 ms
40,036 KB
testcase_62 AC 63 ms
39,908 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;

int main() {
  ios::sync_with_stdio(false);

  int N, K; {
    cin >> N >> K;
  }

  vector<int> P(N); {
    for (int i = 0; i < N; ++i) cin >> P[i];
  }

  vector<int> rp(N + 1); {
    for (int i = 0; i < N; ++i) rp[P[i]] = i + 1;
  }

  vector<vector<int>> pf(30, vector<int>(N + 1));
  vector<vector<int64_t>> pp(30, vector<int64_t>(N + 1)); {
    for (int i = 0; i < N; ++i) pf[0][P[i]] = i + P[i] >= N;
    for (int i = 0; i < N; ++i) pp[0][P[i]] = P[(i + P[i]) % N];
    for (int i = 0; i < 29; ++i) {
      for (int u = 1; u <= N; ++u) {
        pf[i + 1][u] = pf[i][u] + pf[i][pp[i][u]];
        pp[i + 1][u] = pp[i][pp[i][u]];
      }
    }
  }

  for (int p : P) {
    int64_t c = 0;
    int r = p;
    for (int i = 29, k = K; k; --i) if (k >= 1 << i) {
      k -= 1 << i;
      c += (int64_t) N * pf[i][r];
      r = pp[i][r];
    }
    cout << (c + rp[r]) << "\n";
  }
}

0