結果

問題 No.1013 〇マス進む
ユーザー polylogKpolylogK
提出日時 2020-03-20 22:01:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 174,832 KB
実行使用メモリ 42,196 KB
最終ジャッジ日時 2024-05-08 22:03:02
合計ジャッジ時間 7,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 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 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 32 ms
22,016 KB
testcase_15 AC 54 ms
33,404 KB
testcase_16 AC 47 ms
30,948 KB
testcase_17 AC 27 ms
19,440 KB
testcase_18 AC 34 ms
23,040 KB
testcase_19 AC 20 ms
15,104 KB
testcase_20 AC 65 ms
40,000 KB
testcase_21 AC 25 ms
18,280 KB
testcase_22 AC 36 ms
23,808 KB
testcase_23 AC 12 ms
10,112 KB
testcase_24 AC 65 ms
41,292 KB
testcase_25 AC 63 ms
40,516 KB
testcase_26 AC 13 ms
10,112 KB
testcase_27 AC 24 ms
17,280 KB
testcase_28 AC 13 ms
10,112 KB
testcase_29 AC 65 ms
39,224 KB
testcase_30 AC 23 ms
15,872 KB
testcase_31 AC 44 ms
27,204 KB
testcase_32 AC 31 ms
20,992 KB
testcase_33 AC 35 ms
21,120 KB
testcase_34 AC 59 ms
31,728 KB
testcase_35 AC 64 ms
30,172 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 64 ms
34,440 KB
testcase_39 AC 22 ms
13,440 KB
testcase_40 AC 74 ms
31,460 KB
testcase_41 AC 15 ms
10,240 KB
testcase_42 AC 34 ms
20,216 KB
testcase_43 AC 23 ms
14,336 KB
testcase_44 AC 36 ms
21,248 KB
testcase_45 AC 31 ms
19,052 KB
testcase_46 AC 16 ms
10,752 KB
testcase_47 AC 33 ms
20,212 KB
testcase_48 AC 39 ms
23,424 KB
testcase_49 AC 69 ms
31,464 KB
testcase_50 AC 49 ms
27,200 KB
testcase_51 AC 45 ms
24,616 KB
testcase_52 AC 10 ms
7,552 KB
testcase_53 AC 13 ms
9,472 KB
testcase_54 AC 50 ms
29,784 KB
testcase_55 AC 18 ms
11,264 KB
testcase_56 AC 72 ms
37,024 KB
testcase_57 AC 59 ms
26,292 KB
testcase_58 AC 101 ms
42,196 KB
testcase_59 AC 85 ms
42,064 KB
testcase_60 AC 88 ms
42,196 KB
testcase_61 AC 69 ms
42,196 KB
testcase_62 AC 69 ms
42,068 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::literals::string_literals;
using i64 = std::int_fast64_t;
using std::cout;
using std::cerr;
using std::endl;
using std::cin;

template<typename T>
std::vector<T> make_v(size_t a){return std::vector<T>(a);}

template<typename T,typename... Ts>
auto make_v(size_t a,Ts... ts){
  return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...));
}

int main() {
	int n, k; scanf("%d%d", &n, &k); std::vector<int> p(n);
	for(int i = 0; i < n; i++) scanf("%d", &p[i]);

	auto dp = make_v<int>(32, n);
	auto ep = make_v<i64>(32, n);
	for(int i = 0; i < n; i++) dp[0][i] = (i + p[i]) % n;
	for(int i = 0; i < n; i++) ep[0][i] = p[i];
	for(int i = 0; i < 31; i++) {
		for(int j = 0; j < n; j++) {
			dp[i + 1][j] = dp[i][dp[i][j]];
			ep[i + 1][j] = ep[i][j] + ep[i][dp[i][j]];
		}
	}

	for(int i = 0; i < n; i++) {
		i64 ans = i + 1;
		int now = i;
		for(int j = 31; j >= 0; j--) {
			if(!(k >> j & 1)) continue;
			ans += ep[j][now];
			now = dp[j][now];
		}

		printf("%lld\n", ans);
	}
	return 0;
}
0