結果

問題 No.1013 〇マス進む
ユーザー bond_cmprogbond_cmprog
提出日時 2020-03-20 23:30:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 173,492 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-12-15 18:53:04
合計ジャッジ時間 10,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 90 ms
16,256 KB
testcase_15 AC 152 ms
24,192 KB
testcase_16 AC 146 ms
22,272 KB
testcase_17 AC 82 ms
14,464 KB
testcase_18 AC 100 ms
16,896 KB
testcase_19 AC 61 ms
11,520 KB
testcase_20 AC 192 ms
28,800 KB
testcase_21 AC 75 ms
13,568 KB
testcase_22 AC 106 ms
17,408 KB
testcase_23 AC 34 ms
7,808 KB
testcase_24 AC 192 ms
29,568 KB
testcase_25 AC 184 ms
29,056 KB
testcase_26 AC 35 ms
7,936 KB
testcase_27 AC 66 ms
12,928 KB
testcase_28 AC 33 ms
7,936 KB
testcase_29 AC 175 ms
28,288 KB
testcase_30 AC 64 ms
11,776 KB
testcase_31 AC 117 ms
19,968 KB
testcase_32 AC 86 ms
15,488 KB
testcase_33 AC 93 ms
15,488 KB
testcase_34 AC 161 ms
22,784 KB
testcase_35 AC 165 ms
21,760 KB
testcase_36 AC 11 ms
6,820 KB
testcase_37 AC 10 ms
6,820 KB
testcase_38 AC 175 ms
25,088 KB
testcase_39 AC 58 ms
10,112 KB
testcase_40 AC 185 ms
22,656 KB
testcase_41 AC 42 ms
8,064 KB
testcase_42 AC 95 ms
14,976 KB
testcase_43 AC 60 ms
10,752 KB
testcase_44 AC 98 ms
15,616 KB
testcase_45 AC 87 ms
14,208 KB
testcase_46 AC 43 ms
8,448 KB
testcase_47 AC 89 ms
14,976 KB
testcase_48 AC 115 ms
17,152 KB
testcase_49 AC 187 ms
22,656 KB
testcase_50 AC 131 ms
19,968 KB
testcase_51 AC 128 ms
18,176 KB
testcase_52 AC 25 ms
6,816 KB
testcase_53 AC 34 ms
7,424 KB
testcase_54 AC 138 ms
21,632 KB
testcase_55 AC 46 ms
8,704 KB
testcase_56 AC 200 ms
26,752 KB
testcase_57 AC 141 ms
19,072 KB
testcase_58 AC 248 ms
30,208 KB
testcase_59 AC 237 ms
30,208 KB
testcase_60 AC 213 ms
30,208 KB
testcase_61 AC 187 ms
30,208 KB
testcase_62 AC 182 ms
30,208 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for(int i = 0;i < n;i++)
#define ll long long
using namespace std;
//typedef vector<unsigned int>vec;
//typedef vector<ll>vec;
//typedef vector<vec> mat;
typedef pair<int, int> P;
typedef pair<ll,ll> LP;
const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1};
const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1};
const int INF = 1000000000;
const ll LINF = 1000000000000000000;//1e18
const ll  MOD = 1000000007;
const double PI = acos(-1.0);
const double EPS = 1e-10;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
//template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;};


int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N, K;
    cin >> N >> K;
    vector<int> P(N);
    REP(i,N){
        cin >> P[i];
    }
    vector<vector<ll>> to(33, vector<ll>(N));
    REP(i,N) to[0][i] = P[i];
    REP(i,32) REP(j,N) to[i+1][j] = to[i][j] + to[i][(j+to[i][j])%N];

    REP(i,N){
        ll cur = i;
        REP(j,32){
            if((K >> j) & 1){
                cur += to[j][cur%N];
                //cout << i << " " << to[j][cur%N] << endl;
            }
        }
        cout << cur + 1 << endl;
    }
}
0