結果

問題 No.1013 〇マス進む
ユーザー yakkiyakki
提出日時 2020-03-21 20:34:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 1,382 ms
コンパイル使用メモリ 126,972 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-06-06 02:36:51
合計ジャッジ時間 11,156 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 106 ms
15,616 KB
testcase_15 AC 177 ms
22,912 KB
testcase_16 AC 158 ms
21,248 KB
testcase_17 AC 93 ms
13,824 KB
testcase_18 AC 117 ms
16,256 KB
testcase_19 AC 68 ms
11,008 KB
testcase_20 AC 213 ms
27,392 KB
testcase_21 AC 86 ms
12,928 KB
testcase_22 AC 121 ms
16,896 KB
testcase_23 AC 39 ms
7,680 KB
testcase_24 AC 217 ms
28,160 KB
testcase_25 AC 217 ms
27,648 KB
testcase_26 AC 40 ms
7,680 KB
testcase_27 AC 79 ms
12,416 KB
testcase_28 AC 40 ms
7,680 KB
testcase_29 AC 206 ms
26,880 KB
testcase_30 AC 74 ms
11,392 KB
testcase_31 AC 137 ms
18,944 KB
testcase_32 AC 99 ms
14,976 KB
testcase_33 AC 108 ms
15,104 KB
testcase_34 AC 179 ms
21,760 KB
testcase_35 AC 183 ms
20,736 KB
testcase_36 AC 14 ms
5,376 KB
testcase_37 AC 13 ms
5,376 KB
testcase_38 AC 203 ms
23,808 KB
testcase_39 AC 67 ms
9,856 KB
testcase_40 AC 203 ms
21,632 KB
testcase_41 AC 47 ms
7,808 KB
testcase_42 AC 110 ms
14,336 KB
testcase_43 AC 70 ms
10,368 KB
testcase_44 AC 114 ms
15,104 KB
testcase_45 AC 102 ms
13,568 KB
testcase_46 AC 51 ms
8,192 KB
testcase_47 AC 106 ms
14,336 KB
testcase_48 AC 125 ms
16,384 KB
testcase_49 AC 197 ms
21,632 KB
testcase_50 AC 153 ms
18,944 KB
testcase_51 AC 140 ms
17,280 KB
testcase_52 AC 29 ms
6,016 KB
testcase_53 AC 40 ms
7,168 KB
testcase_54 AC 166 ms
20,608 KB
testcase_55 AC 55 ms
8,448 KB
testcase_56 AC 228 ms
25,344 KB
testcase_57 AC 166 ms
18,304 KB
testcase_58 AC 278 ms
28,672 KB
testcase_59 AC 263 ms
28,672 KB
testcase_60 AC 255 ms
28,672 KB
testcase_61 AC 222 ms
28,672 KB
testcase_62 AC 217 ms
28,672 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
#include<cstdio>
#include<cstdlib>
#include<unordered_map>
#include<unordered_set>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592
#define PI acos(-1.0);

const double EPS = 1e-10;

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;


int main(){
    int N,K; cin >> N >> K;
    vector<int> p(N);
    rep(i,N) cin >> p[i],p[i]--;
    vector<vector<ll>> next(31,vector<ll>(N));
    rep(i,N){
        next[0][i] = p[i]+1;
    }
    rep(i,30){
        rep(j,N){
            next[i+1][j] = next[i][j]+next[i][(j+next[i][j])%N];
        }
    }

    rep(i,N){
        ll ans = i; 
        for(int j = 30; j >= 0; j--){
            if(1<<j&K){
                ans += next[j][ans%N];
            }
        }
        cout << ans+1 << endl;
    }

}

0