結果

問題 No.1013 〇マス進む
ユーザー yakkiyakki
提出日時 2020-03-21 20:34:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 126,976 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-12-23 13:26:11
合計ジャッジ時間 11,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 106 ms
15,488 KB
testcase_15 AC 180 ms
22,912 KB
testcase_16 AC 159 ms
21,248 KB
testcase_17 AC 95 ms
13,824 KB
testcase_18 AC 117 ms
16,256 KB
testcase_19 AC 70 ms
11,008 KB
testcase_20 AC 219 ms
27,392 KB
testcase_21 AC 85 ms
12,928 KB
testcase_22 AC 123 ms
16,768 KB
testcase_23 AC 38 ms
7,680 KB
testcase_24 AC 222 ms
28,288 KB
testcase_25 AC 219 ms
27,648 KB
testcase_26 AC 40 ms
7,680 KB
testcase_27 AC 80 ms
12,416 KB
testcase_28 AC 40 ms
7,680 KB
testcase_29 AC 209 ms
26,880 KB
testcase_30 AC 77 ms
11,392 KB
testcase_31 AC 138 ms
18,944 KB
testcase_32 AC 102 ms
14,976 KB
testcase_33 AC 110 ms
14,848 KB
testcase_34 AC 182 ms
21,888 KB
testcase_35 AC 190 ms
20,736 KB
testcase_36 AC 14 ms
5,248 KB
testcase_37 AC 12 ms
5,248 KB
testcase_38 AC 201 ms
23,808 KB
testcase_39 AC 69 ms
9,984 KB
testcase_40 AC 209 ms
21,632 KB
testcase_41 AC 48 ms
7,808 KB
testcase_42 AC 113 ms
14,336 KB
testcase_43 AC 72 ms
10,368 KB
testcase_44 AC 120 ms
15,104 KB
testcase_45 AC 106 ms
13,568 KB
testcase_46 AC 53 ms
8,192 KB
testcase_47 AC 107 ms
14,336 KB
testcase_48 AC 128 ms
16,384 KB
testcase_49 AC 205 ms
21,632 KB
testcase_50 AC 156 ms
18,944 KB
testcase_51 AC 141 ms
17,280 KB
testcase_52 AC 29 ms
6,016 KB
testcase_53 AC 40 ms
7,168 KB
testcase_54 AC 165 ms
20,608 KB
testcase_55 AC 55 ms
8,448 KB
testcase_56 AC 245 ms
25,472 KB
testcase_57 AC 170 ms
18,304 KB
testcase_58 AC 278 ms
28,672 KB
testcase_59 AC 267 ms
28,672 KB
testcase_60 AC 258 ms
28,672 KB
testcase_61 AC 224 ms
28,672 KB
testcase_62 AC 217 ms
28,672 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 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