結果

問題 No.1013 〇マス進む
ユーザー kappybarkappybar
提出日時 2020-07-10 16:42:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 174,200 KB
実行使用メモリ 161,996 KB
最終ジャッジ日時 2024-10-11 00:27:22
合計ジャッジ時間 13,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 12 ms
9,216 KB
testcase_14 AC 140 ms
79,232 KB
testcase_15 AC 222 ms
126,236 KB
testcase_16 AC 200 ms
115,840 KB
testcase_17 AC 120 ms
69,440 KB
testcase_18 AC 147 ms
84,480 KB
testcase_19 AC 86 ms
51,584 KB
testcase_20 AC 276 ms
153,984 KB
testcase_21 AC 114 ms
64,256 KB
testcase_22 AC 161 ms
87,424 KB
testcase_23 AC 48 ms
30,596 KB
testcase_24 AC 280 ms
159,304 KB
testcase_25 AC 281 ms
155,648 KB
testcase_26 AC 51 ms
30,468 KB
testcase_27 AC 104 ms
60,868 KB
testcase_28 AC 50 ms
30,976 KB
testcase_29 AC 270 ms
150,656 KB
testcase_30 AC 93 ms
54,400 KB
testcase_31 AC 181 ms
101,120 KB
testcase_32 AC 134 ms
75,904 KB
testcase_33 AC 135 ms
75,904 KB
testcase_34 AC 216 ms
119,296 KB
testcase_35 AC 202 ms
112,896 KB
testcase_36 AC 16 ms
11,136 KB
testcase_37 AC 14 ms
10,624 KB
testcase_38 AC 238 ms
131,200 KB
testcase_39 AC 77 ms
44,288 KB
testcase_40 AC 216 ms
118,528 KB
testcase_41 AC 52 ms
31,396 KB
testcase_42 AC 133 ms
73,088 KB
testcase_43 AC 83 ms
48,008 KB
testcase_44 AC 137 ms
76,808 KB
testcase_45 AC 118 ms
67,712 KB
testcase_46 AC 57 ms
34,084 KB
testcase_47 AC 126 ms
72,832 KB
testcase_48 AC 155 ms
85,248 KB
testcase_49 AC 211 ms
118,144 KB
testcase_50 AC 181 ms
101,248 KB
testcase_51 AC 161 ms
90,880 KB
testcase_52 AC 33 ms
20,864 KB
testcase_53 AC 46 ms
28,416 KB
testcase_54 AC 199 ms
112,040 KB
testcase_55 AC 60 ms
35,328 KB
testcase_56 AC 256 ms
141,312 KB
testcase_57 AC 176 ms
97,036 KB
testcase_58 AC 296 ms
161,992 KB
testcase_59 AC 295 ms
161,996 KB
testcase_60 AC 292 ms
161,992 KB
testcase_61 AC 284 ms
161,996 KB
testcase_62 AC 303 ms
161,996 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

int main(){
    ll n,k;
    cin >> n >> k;
    vector<ll> p(n);
    rep(i,n) cin >> p[i];
    vector<vector<pll>> db(100,vector<pll>(n));
    rep(i,n) db[0][i] = {(i+p[i])%n,(i+p[i])/n};
    for(int i=1;i<=99;i++){
        rep(j,n){
            ll a = db[i-1][j].first;
            ll b = db[i-1][j].second + db[i-1][a].second;
            a = db[i-1][a].first;
            db[i][j] = pll(a,b);
        }
    }

    vector<pll> ans(n);
    rep(i,n) ans[i] = pll(i,0);
    ll c = 0;
    while(k > 0){
        if(k&1){
            rep(i,n){
                ll a = ans[i].first;
                ll b = ans[i].second + db[c][a].second;
                a = db[c][a].first;
                ans[i] = pll(a,b);
            }
        }
        k >>= 1;
        ++c;
    }
    rep(i,n){
        ll now = ans[i].first + ans[i].second * n + 1 ; 
        cout << now << endl;
    }
    return 0;
}
0