結果

問題 No.1013 〇マス進む
ユーザー tnakao0123tnakao0123
提出日時 2020-03-21 15:24:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 93,804 KB
実行使用メモリ 27,484 KB
最終ジャッジ日時 2024-06-02 05:16:56
合計ジャッジ時間 5,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 29 ms
14,976 KB
testcase_15 AC 54 ms
22,144 KB
testcase_16 AC 49 ms
20,480 KB
testcase_17 AC 26 ms
13,440 KB
testcase_18 AC 37 ms
15,744 KB
testcase_19 AC 21 ms
10,880 KB
testcase_20 AC 66 ms
26,240 KB
testcase_21 AC 26 ms
12,800 KB
testcase_22 AC 38 ms
16,384 KB
testcase_23 AC 11 ms
7,808 KB
testcase_24 AC 90 ms
27,008 KB
testcase_25 AC 65 ms
26,624 KB
testcase_26 AC 12 ms
7,680 KB
testcase_27 AC 21 ms
12,288 KB
testcase_28 AC 11 ms
7,680 KB
testcase_29 AC 60 ms
25,856 KB
testcase_30 AC 22 ms
11,264 KB
testcase_31 AC 40 ms
18,304 KB
testcase_32 AC 28 ms
14,592 KB
testcase_33 AC 36 ms
14,464 KB
testcase_34 AC 55 ms
20,992 KB
testcase_35 AC 56 ms
19,968 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 59 ms
22,912 KB
testcase_39 AC 21 ms
9,728 KB
testcase_40 AC 60 ms
20,992 KB
testcase_41 AC 14 ms
7,936 KB
testcase_42 AC 33 ms
14,208 KB
testcase_43 AC 20 ms
10,240 KB
testcase_44 AC 32 ms
14,720 KB
testcase_45 AC 28 ms
13,440 KB
testcase_46 AC 15 ms
8,320 KB
testcase_47 AC 30 ms
14,208 KB
testcase_48 AC 35 ms
15,872 KB
testcase_49 AC 60 ms
20,864 KB
testcase_50 AC 43 ms
18,304 KB
testcase_51 AC 38 ms
16,896 KB
testcase_52 AC 8 ms
6,144 KB
testcase_53 AC 12 ms
7,424 KB
testcase_54 AC 44 ms
19,968 KB
testcase_55 AC 16 ms
8,576 KB
testcase_56 AC 65 ms
24,448 KB
testcase_57 AC 47 ms
17,664 KB
testcase_58 AC 86 ms
27,384 KB
testcase_59 AC 90 ms
27,480 KB
testcase_60 AC 74 ms
27,392 KB
testcase_61 AC 65 ms
27,484 KB
testcase_62 AC 58 ms
27,392 KB
testcase_63 AC 3 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1013.cc:  No.1013 〇マス進む - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100000;
const int BN = 30;

/* typedef */

typedef long long ll;

/* global variables */

int ps[MAX_N], ts[MAX_N][BN], rs[MAX_N][BN];

/* subroutines */

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);

  for (int i = 0; i < n; i++) scanf("%d", ps + i);

  for (int i = 0; i < n; i++) {
    int d = i + ps[i];
    ts[i][0] = d % n;
    rs[i][0] = d / n;
  }

  for (int j = 0; j + 1 < BN; j++)
    for (int i = 0; i < n; i++) {
      ts[i][j + 1] = ts[ts[i][j]][j];
      rs[i][j + 1] = rs[i][j] + rs[ts[i][j]][j];
    }

  for (int i = 0; i < n; i++) {
    int u = i, r = 0;
    for (int j = 0, bj = 1; j < BN; j++, bj <<= 1)
      if (k & bj) {
	r += rs[u][j];
	u = ts[u][j];
      }

    printf("%lld\n", (ll)r * n + u + 1);
  }
  return 0;
}
0