結果

問題 No.1013 〇マス進む
ユーザー simansiman
提出日時 2023-03-23 19:08:30
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 141,432 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-18 15:33:40
合計ジャッジ時間 14,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,376 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 127 ms
15,616 KB
testcase_15 AC 230 ms
23,296 KB
testcase_16 AC 215 ms
21,684 KB
testcase_17 AC 109 ms
14,008 KB
testcase_18 AC 139 ms
16,484 KB
testcase_19 AC 76 ms
11,200 KB
testcase_20 AC 311 ms
27,776 KB
testcase_21 AC 95 ms
13,260 KB
testcase_22 AC 152 ms
17,080 KB
testcase_23 AC 42 ms
7,716 KB
testcase_24 AC 320 ms
28,668 KB
testcase_25 AC 311 ms
28,032 KB
testcase_26 AC 43 ms
7,680 KB
testcase_27 AC 88 ms
12,800 KB
testcase_28 AC 41 ms
7,704 KB
testcase_29 AC 305 ms
27,264 KB
testcase_30 AC 84 ms
11,580 KB
testcase_31 AC 166 ms
19,200 KB
testcase_32 AC 118 ms
15,104 KB
testcase_33 AC 133 ms
15,052 KB
testcase_34 AC 223 ms
22,140 KB
testcase_35 AC 199 ms
21,084 KB
testcase_36 AC 13 ms
5,376 KB
testcase_37 AC 13 ms
5,376 KB
testcase_38 AC 243 ms
24,092 KB
testcase_39 AC 73 ms
9,984 KB
testcase_40 AC 263 ms
21,888 KB
testcase_41 AC 48 ms
7,680 KB
testcase_42 AC 124 ms
14,720 KB
testcase_43 AC 76 ms
10,624 KB
testcase_44 AC 136 ms
15,360 KB
testcase_45 AC 114 ms
13,772 KB
testcase_46 AC 54 ms
8,320 KB
testcase_47 AC 129 ms
14,608 KB
testcase_48 AC 152 ms
16,640 KB
testcase_49 AC 262 ms
22,016 KB
testcase_50 AC 188 ms
19,180 KB
testcase_51 AC 164 ms
17,588 KB
testcase_52 AC 30 ms
6,144 KB
testcase_53 AC 45 ms
7,424 KB
testcase_54 AC 208 ms
20,992 KB
testcase_55 AC 59 ms
8,576 KB
testcase_56 AC 300 ms
25,784 KB
testcase_57 AC 192 ms
18,560 KB
testcase_58 AC 357 ms
29,184 KB
testcase_59 AC 358 ms
29,108 KB
testcase_60 AC 319 ms
29,164 KB
testcase_61 AC 316 ms
29,092 KB
testcase_62 AC 290 ms
29,184 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N, K;
  cin >> N >> K;
  ll P[N];
  for (int i = 0; i < N; ++i) {
    cin >> P[i];
  }

  ll D[N][32];
  memset(D, 0, sizeof(D));

  for (int step = 0; step < 32; ++step) {
    for (int i = 0; i < N; ++i) {
      if (step == 0) {
        D[i][step] = (i + 1) + P[i];
      } else {
        int idx = (D[i][step - 1] - 1) % N;
        D[i][step] = D[i][step - 1] + (D[idx][step - 1] - idx - 1);
      }
    }
  }

  for (int i = 0; i < N; ++i) {
    int cur = i;
    ll res = i + 1;

    for (int step = 0; step < 30; ++step) {
      if (K >> step & 1) {
        res += (D[cur][step] - (cur + 1));
        cur = (D[cur][step] - 1) % N;
      }
    }

    cout << res << endl;
  }

  return 0;
}
0