結果

問題 No.1013 〇マス進む
ユーザー tnakao0123tnakao0123
提出日時 2020-03-21 15:24:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 93,452 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-12-22 22:53:25
合計ジャッジ時間 7,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 34 ms
14,976 KB
testcase_15 AC 67 ms
22,016 KB
testcase_16 AC 61 ms
20,480 KB
testcase_17 AC 32 ms
13,312 KB
testcase_18 AC 38 ms
15,744 KB
testcase_19 AC 23 ms
10,752 KB
testcase_20 AC 84 ms
26,112 KB
testcase_21 AC 26 ms
12,544 KB
testcase_22 AC 40 ms
16,256 KB
testcase_23 AC 13 ms
7,808 KB
testcase_24 AC 86 ms
27,008 KB
testcase_25 AC 79 ms
26,496 KB
testcase_26 AC 15 ms
7,680 KB
testcase_27 AC 26 ms
12,032 KB
testcase_28 AC 14 ms
7,808 KB
testcase_29 AC 79 ms
25,728 KB
testcase_30 AC 25 ms
11,136 KB
testcase_31 AC 50 ms
18,304 KB
testcase_32 AC 33 ms
14,464 KB
testcase_33 AC 36 ms
14,336 KB
testcase_34 AC 71 ms
20,992 KB
testcase_35 AC 65 ms
19,840 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
testcase_38 AC 74 ms
22,656 KB
testcase_39 AC 24 ms
9,856 KB
testcase_40 AC 68 ms
20,736 KB
testcase_41 AC 15 ms
7,680 KB
testcase_42 AC 35 ms
14,208 KB
testcase_43 AC 23 ms
10,112 KB
testcase_44 AC 37 ms
14,592 KB
testcase_45 AC 30 ms
13,312 KB
testcase_46 AC 17 ms
8,064 KB
testcase_47 AC 34 ms
14,080 KB
testcase_48 AC 38 ms
15,744 KB
testcase_49 AC 66 ms
20,864 KB
testcase_50 AC 50 ms
18,176 KB
testcase_51 AC 44 ms
16,768 KB
testcase_52 AC 10 ms
6,016 KB
testcase_53 AC 13 ms
7,424 KB
testcase_54 AC 50 ms
19,840 KB
testcase_55 AC 19 ms
8,320 KB
testcase_56 AC 75 ms
24,320 KB
testcase_57 AC 57 ms
17,792 KB
testcase_58 AC 105 ms
27,392 KB
testcase_59 AC 97 ms
27,392 KB
testcase_60 AC 82 ms
27,264 KB
testcase_61 AC 74 ms
27,392 KB
testcase_62 AC 64 ms
27,264 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 3 ms
5,248 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