結果

問題 No.1013 〇マス進む
ユーザー rniyarniya
提出日時 2020-03-20 22:06:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 172,972 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-05-08 22:12:06
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 5 ms
5,376 KB
testcase_14 AC 35 ms
26,496 KB
testcase_15 AC 64 ms
40,960 KB
testcase_16 AC 58 ms
37,760 KB
testcase_17 AC 31 ms
23,552 KB
testcase_18 AC 42 ms
28,160 KB
testcase_19 AC 24 ms
17,920 KB
testcase_20 AC 79 ms
49,536 KB
testcase_21 AC 28 ms
22,016 KB
testcase_22 AC 42 ms
28,928 KB
testcase_23 AC 13 ms
11,648 KB
testcase_24 AC 79 ms
51,072 KB
testcase_25 AC 75 ms
49,920 KB
testcase_26 AC 14 ms
11,520 KB
testcase_27 AC 25 ms
20,864 KB
testcase_28 AC 14 ms
11,648 KB
testcase_29 AC 73 ms
48,512 KB
testcase_30 AC 26 ms
18,816 KB
testcase_31 AC 47 ms
33,152 KB
testcase_32 AC 33 ms
25,600 KB
testcase_33 AC 37 ms
25,472 KB
testcase_34 AC 68 ms
38,912 KB
testcase_35 AC 72 ms
36,864 KB
testcase_36 AC 5 ms
5,504 KB
testcase_37 AC 5 ms
5,632 KB
testcase_38 AC 72 ms
42,496 KB
testcase_39 AC 24 ms
15,744 KB
testcase_40 AC 83 ms
38,656 KB
testcase_41 AC 16 ms
11,776 KB
testcase_42 AC 37 ms
24,576 KB
testcase_43 AC 24 ms
16,768 KB
testcase_44 AC 39 ms
25,600 KB
testcase_45 AC 34 ms
22,912 KB
testcase_46 AC 18 ms
12,544 KB
testcase_47 AC 36 ms
24,448 KB
testcase_48 AC 43 ms
28,416 KB
testcase_49 AC 83 ms
38,528 KB
testcase_50 AC 55 ms
33,280 KB
testcase_51 AC 50 ms
30,080 KB
testcase_52 AC 10 ms
8,448 KB
testcase_53 AC 14 ms
10,880 KB
testcase_54 AC 54 ms
36,608 KB
testcase_55 AC 20 ms
12,928 KB
testcase_56 AC 81 ms
45,568 KB
testcase_57 AC 69 ms
32,000 KB
testcase_58 AC 120 ms
51,968 KB
testcase_59 AC 107 ms
51,968 KB
testcase_60 AC 85 ms
51,968 KB
testcase_61 AC 71 ms
51,840 KB
testcase_62 AC 66 ms
51,840 KB
testcase_63 AC 3 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

const int MAX_LOG=30;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N,K; cin >> N >> K;
    vector<int> P(N);
    for (int i=0;i<N;++i) cin >> P[i];
    vector<vector<pair<ll,ll>>> doubling(MAX_LOG,vector<pair<ll,ll>>(N));
    for (int i=0;i<N;++i) doubling[0][i]={(i+P[i])%N,(i+P[i])/N};
    for (int j=0;j<MAX_LOG-1;++j)
        for (int i=0;i<N;++i)
            doubling[j+1][i]={doubling[j][doubling[j][i].first].first,doubling[j][i].second+doubling[j][doubling[j][i].first].second};
    for (int i=0;i<N;++i){
        ll now=i,cnt=0;
        for (int j=0;j<MAX_LOG;++j) if (K&1<<j){
            cnt+=doubling[j][now].second;
            now=doubling[j][now].first;
        }
        cout << now+1+cnt*N << '\n';
    }
}
0