結果

問題 No.1013 〇マス進む
ユーザー leaf_1415leaf_1415
提出日時 2020-03-20 22:24:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 79,056 KB
実行使用メモリ 51,072 KB
最終ジャッジ日時 2024-05-08 22:40:51
合計ジャッジ時間 9,931 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 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 3 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 8 ms
5,376 KB
testcase_14 AC 90 ms
26,240 KB
testcase_15 AC 150 ms
40,576 KB
testcase_16 AC 131 ms
37,248 KB
testcase_17 AC 77 ms
23,296 KB
testcase_18 AC 100 ms
27,904 KB
testcase_19 AC 55 ms
17,920 KB
testcase_20 AC 186 ms
48,640 KB
testcase_21 AC 69 ms
21,760 KB
testcase_22 AC 103 ms
28,672 KB
testcase_23 AC 30 ms
11,520 KB
testcase_24 AC 187 ms
50,304 KB
testcase_25 AC 188 ms
49,152 KB
testcase_26 AC 33 ms
11,520 KB
testcase_27 AC 64 ms
20,608 KB
testcase_28 AC 32 ms
11,776 KB
testcase_29 AC 177 ms
47,744 KB
testcase_30 AC 61 ms
18,944 KB
testcase_31 AC 117 ms
32,768 KB
testcase_32 AC 82 ms
25,344 KB
testcase_33 AC 85 ms
25,472 KB
testcase_34 AC 153 ms
38,272 KB
testcase_35 AC 153 ms
36,352 KB
testcase_36 AC 11 ms
5,760 KB
testcase_37 AC 10 ms
5,760 KB
testcase_38 AC 168 ms
41,856 KB
testcase_39 AC 53 ms
15,744 KB
testcase_40 AC 165 ms
38,016 KB
testcase_41 AC 35 ms
11,904 KB
testcase_42 AC 87 ms
24,192 KB
testcase_43 AC 54 ms
16,768 KB
testcase_44 AC 93 ms
25,472 KB
testcase_45 AC 76 ms
22,784 KB
testcase_46 AC 39 ms
12,672 KB
testcase_47 AC 83 ms
24,320 KB
testcase_48 AC 106 ms
28,160 KB
testcase_49 AC 168 ms
38,016 KB
testcase_50 AC 125 ms
32,768 KB
testcase_51 AC 119 ms
29,696 KB
testcase_52 AC 23 ms
8,704 KB
testcase_53 AC 32 ms
11,136 KB
testcase_54 AC 131 ms
36,224 KB
testcase_55 AC 42 ms
13,184 KB
testcase_56 AC 186 ms
44,800 KB
testcase_57 AC 138 ms
31,488 KB
testcase_58 AC 252 ms
50,944 KB
testcase_59 AC 230 ms
51,072 KB
testcase_60 AC 206 ms
51,072 KB
testcase_61 AC 190 ms
51,072 KB
testcase_62 AC 180 ms
50,944 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)

using namespace std;
typedef pair<llint, llint> P;

llint n, k;
llint p[100005];
P succ[30][100005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> k;
	for(int i = 0; i < n; i++) cin >> p[i], succ[0][i] = P((i+p[i])%n, p[i]);
	
	for(int i = 1; i < 30; i++){
		for(int j = 0; j < n; j++){
			succ[i][j] = P(succ[i-1][succ[i-1][j].first].first,
				succ[i-1][j].second + succ[i-1][succ[i-1][j].first].second);
		}
	}
	
	for(int i = 0; i < n; i++){
		llint pos = i, ans = 0;
		for(int j = 0; j < 30; j++){
			if(k & (1<<j)) ans += succ[j][pos].second,  pos = succ[j][pos].first;
		}
		cout << ans+i+1 << endl;
	}
	
	return 0;
}
0