結果

問題 No.1013 〇マス進む
ユーザー micheeeeell1001micheeeeell1001
提出日時 2020-03-20 23:23:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 2,405 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 174,136 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-12-15 16:47:52
合計ジャッジ時間 11,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 10 ms
6,816 KB
testcase_14 AC 108 ms
42,788 KB
testcase_15 AC 187 ms
67,112 KB
testcase_16 AC 164 ms
61,672 KB
testcase_17 AC 100 ms
37,680 KB
testcase_18 AC 119 ms
45,468 KB
testcase_19 AC 71 ms
28,544 KB
testcase_20 AC 226 ms
81,364 KB
testcase_21 AC 88 ms
35,004 KB
testcase_22 AC 125 ms
47,080 KB
testcase_23 AC 38 ms
17,536 KB
testcase_24 AC 230 ms
84,172 KB
testcase_25 AC 234 ms
82,300 KB
testcase_26 AC 40 ms
17,536 KB
testcase_27 AC 81 ms
33,172 KB
testcase_28 AC 41 ms
17,664 KB
testcase_29 AC 215 ms
79,748 KB
testcase_30 AC 74 ms
29,824 KB
testcase_31 AC 145 ms
54,148 KB
testcase_32 AC 103 ms
41,296 KB
testcase_33 AC 113 ms
41,168 KB
testcase_34 AC 184 ms
63,416 KB
testcase_35 AC 187 ms
60,056 KB
testcase_36 AC 14 ms
7,424 KB
testcase_37 AC 12 ms
7,168 KB
testcase_38 AC 205 ms
69,668 KB
testcase_39 AC 66 ms
24,704 KB
testcase_40 AC 202 ms
63,076 KB
testcase_41 AC 47 ms
18,048 KB
testcase_42 AC 112 ms
39,556 KB
testcase_43 AC 69 ms
26,460 KB
testcase_44 AC 117 ms
41,640 KB
testcase_45 AC 104 ms
36,752 KB
testcase_46 AC 52 ms
19,328 KB
testcase_47 AC 107 ms
39,424 KB
testcase_48 AC 133 ms
45,936 KB
testcase_49 AC 202 ms
62,948 KB
testcase_50 AC 159 ms
54,148 KB
testcase_51 AC 142 ms
48,700 KB
testcase_52 AC 29 ms
12,288 KB
testcase_53 AC 40 ms
16,384 KB
testcase_54 AC 170 ms
59,712 KB
testcase_55 AC 53 ms
20,076 KB
testcase_56 AC 236 ms
74,820 KB
testcase_57 AC 162 ms
52,060 KB
testcase_58 AC 276 ms
85,656 KB
testcase_59 AC 264 ms
85,664 KB
testcase_60 AC 258 ms
85,656 KB
testcase_61 AC 236 ms
85,660 KB
testcase_62 AC 223 ms
85,660 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 1 ms
6,816 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