結果

問題 No.1013 〇マス進む
ユーザー micheeeeell1001micheeeeell1001
提出日時 2020-03-20 23:23:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 2,405 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 171,676 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-05-09 06:22:53
合計ジャッジ時間 12,918 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 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 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 11 ms
6,528 KB
testcase_14 AC 128 ms
42,792 KB
testcase_15 AC 216 ms
67,116 KB
testcase_16 AC 191 ms
61,672 KB
testcase_17 AC 111 ms
37,680 KB
testcase_18 AC 140 ms
45,468 KB
testcase_19 AC 81 ms
28,540 KB
testcase_20 AC 268 ms
81,364 KB
testcase_21 AC 102 ms
34,916 KB
testcase_22 AC 146 ms
46,968 KB
testcase_23 AC 45 ms
17,536 KB
testcase_24 AC 267 ms
84,040 KB
testcase_25 AC 263 ms
82,300 KB
testcase_26 AC 47 ms
17,536 KB
testcase_27 AC 94 ms
33,176 KB
testcase_28 AC 46 ms
17,664 KB
testcase_29 AC 258 ms
79,880 KB
testcase_30 AC 88 ms
29,944 KB
testcase_31 AC 166 ms
54,144 KB
testcase_32 AC 120 ms
41,172 KB
testcase_33 AC 131 ms
41,172 KB
testcase_34 AC 216 ms
63,416 KB
testcase_35 AC 218 ms
60,056 KB
testcase_36 AC 16 ms
7,424 KB
testcase_37 AC 15 ms
7,168 KB
testcase_38 AC 238 ms
69,792 KB
testcase_39 AC 78 ms
24,704 KB
testcase_40 AC 236 ms
63,076 KB
testcase_41 AC 55 ms
18,048 KB
testcase_42 AC 131 ms
39,556 KB
testcase_43 AC 83 ms
26,456 KB
testcase_44 AC 135 ms
41,516 KB
testcase_45 AC 118 ms
36,892 KB
testcase_46 AC 59 ms
19,328 KB
testcase_47 AC 126 ms
39,428 KB
testcase_48 AC 151 ms
45,936 KB
testcase_49 AC 229 ms
62,948 KB
testcase_50 AC 185 ms
54,092 KB
testcase_51 AC 167 ms
48,704 KB
testcase_52 AC 33 ms
12,288 KB
testcase_53 AC 47 ms
16,384 KB
testcase_54 AC 200 ms
59,716 KB
testcase_55 AC 64 ms
20,076 KB
testcase_56 AC 275 ms
74,900 KB
testcase_57 AC 194 ms
52,060 KB
testcase_58 AC 320 ms
85,664 KB
testcase_59 AC 309 ms
85,660 KB
testcase_60 AC 302 ms
85,660 KB
testcase_61 AC 273 ms
85,664 KB
testcase_62 AC 261 ms
85,644 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<iostream>
#include<cstdio>
#include<vector>
#include<string>
#include<algorithm>
#include<map>
using namespace std;
#define rep(i,x) for(ll i = 0; i < (ll)(x); i++)
#define rrep(i,x) for(ll i = (ll)(x)-1;0 <= i; i--)
#define reps(i,x) for(ll i = 1; i < (ll)(x)+1; i++)
#define rreps(i,x) for(ll i = (ll)(x); 1 <= i; i--)
#define debug(x) cerr << #x << ": " << (x) << "\n";
#define all(x) (x).begin(), (x).end()
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll,ll> Pll;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef vector<vector<vector<ll>>> vvvl;
const ll INF = numeric_limits<ll>::max()/4;
const int n_max = 50;

void print() {
    cout << endl;
}

template <class Head, class... Tail>
void print(Head&& head, Tail&&... tail) {
    cout << head;
    if (sizeof...(tail) != 0) cout << ' ';
    print(forward<Tail>(tail)...);
}

template <class T>
void print(vector<T> &vec) {
    for (auto& a : vec) {
        cout << a;
        if (&a != &vec.back()) cout << ' ';
    }
    cout << endl;
}

template <class T>
void print(vector<vector<T>> &df) {
    for (auto& vec : df) {
        print(vec);
    }
}

template<class T, class U>
void print(pair<T,U> &p){
    print(p.first, p.second);
}


int main(){
    ll n,k; cin >> n >> k;
    vector<ll> p(n), p_rev(n+1);
    rep(i,n) {
        cin >> p[i];
        p_rev[p[i]] = i;
    }
    // print(p_rev);
    vector<vector<ll>> dp(n_max+1, vector<ll>(n)), dp2(n_max+1, vector<ll>(n));
    rep(i,n)dp[0][i] = p[i];

    // print(dp[0]);
    rep(j,n){
        dp[1][j] = dp[0][(p_rev[dp[0][j]] + dp[0][j]) % n];
        dp2[1][j] = p[j];
    }
    // print(dp[1]);
    reps(i,n_max-1){
        rep(j,n){
            dp[i+1][j] = dp[i][p_rev[dp[i][j]]];
            dp2[i+1][j] = dp2[i][j] + dp2[i][p_rev[dp[i][j]]];
            // print(i,j,p_rev[dp[i][j]], dp[i][j]);
        }
        // print(dp[i+1]);
        // print(dp2[i+1]);
        // print();
    }
    // debug("test");
    rep(i,n){
        ll pos = p[i];
        ll temp = k;
        ll ans = 0;
        rreps(j,n_max){
            if(temp >= pow(2,j-1)){
                ans += dp2[j][p_rev[pos]];
                pos = dp[j][p_rev[pos]];
                temp -= pow(2,j-1);
                // print(i,j,pos,ans);
            }
            // debug(pos);
        }

        cout << ans + i+1 << "\n";
    }
}
0