結果

問題 No.1013 〇マス進む
ユーザー koi_kotyakoi_kotya
提出日時 2020-03-20 22:33:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 172,848 KB
実行使用メモリ 29,528 KB
最終ジャッジ日時 2024-12-15 06:52:24
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 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 2 ms
6,820 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 47 ms
15,872 KB
testcase_15 AC 76 ms
23,552 KB
testcase_16 AC 69 ms
21,888 KB
testcase_17 AC 41 ms
14,208 KB
testcase_18 AC 51 ms
16,656 KB
testcase_19 AC 31 ms
11,264 KB
testcase_20 AC 92 ms
28,160 KB
testcase_21 AC 38 ms
13,312 KB
testcase_22 AC 53 ms
17,184 KB
testcase_23 AC 17 ms
7,808 KB
testcase_24 AC 95 ms
29,000 KB
testcase_25 AC 138 ms
28,416 KB
testcase_26 AC 18 ms
7,808 KB
testcase_27 AC 35 ms
12,768 KB
testcase_28 AC 18 ms
7,808 KB
testcase_29 AC 89 ms
27,648 KB
testcase_30 AC 33 ms
11,720 KB
testcase_31 AC 60 ms
19,584 KB
testcase_32 AC 44 ms
15,232 KB
testcase_33 AC 48 ms
15,232 KB
testcase_34 AC 77 ms
22,400 KB
testcase_35 AC 75 ms
21,340 KB
testcase_36 AC 7 ms
6,816 KB
testcase_37 AC 6 ms
6,820 KB
testcase_38 AC 85 ms
24,448 KB
testcase_39 AC 30 ms
9,984 KB
testcase_40 AC 81 ms
22,272 KB
testcase_41 AC 22 ms
7,936 KB
testcase_42 AC 49 ms
14,720 KB
testcase_43 AC 31 ms
10,624 KB
testcase_44 AC 50 ms
15,364 KB
testcase_45 AC 45 ms
13,952 KB
testcase_46 AC 24 ms
8,448 KB
testcase_47 AC 47 ms
14,720 KB
testcase_48 AC 54 ms
16,792 KB
testcase_49 AC 82 ms
22,272 KB
testcase_50 AC 67 ms
19,456 KB
testcase_51 AC 60 ms
17,704 KB
testcase_52 AC 13 ms
6,816 KB
testcase_53 AC 18 ms
7,552 KB
testcase_54 AC 72 ms
21,336 KB
testcase_55 AC 24 ms
8,576 KB
testcase_56 AC 98 ms
25,984 KB
testcase_57 AC 67 ms
18,816 KB
testcase_58 AC 111 ms
29,528 KB
testcase_59 AC 111 ms
29,520 KB
testcase_60 AC 107 ms
29,524 KB
testcase_61 AC 94 ms
29,524 KB
testcase_62 AC 91 ms
29,520 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair<int,int> P;

#define p_ary(ary,a,b) do { cout << "["; for (int count = (a);count < (b);++count) cout << ary[count] << ((b)-1 == count ? "" : ", "); cout << "]\n"; } while(0)
#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)

template<typename T1,typename T2>ostream& operator<<(ostream& os,const pair<T1,T2>& a) {os << "(" << a.first << ", " << a.second << ")";return os;}

const char newl = '\n';

int main() {
    int n,k;
    cin >> n >> k;
    vector<int> p(n);
    vector<vector<ll>> a(32,vector<ll>(n));
    for (int i = 0;i < n;++i) cin >> p[i];
    // for (int i = 0;i < n;++i) a[0][i] = i;
    for (int i = 0;i < n;++i) a[1][i] = p[i];
    for (int i = 1;i < 31;++i) for (int j = 0;j < n;++j) {
        a[i+1][j] = a[i][j]+a[i][(j+a[i][j])%n];
    }
    vector<ll> ans(n);
    for (int i = 0;i < n;++i) ans[i] = i;
    for (int i = 1;i < 32;++i) {
        if (k&1) for (int j = 0;j < n;++j) ans[j] = ans[j]+a[i][ans[j]%n];
        k /= 2;
    }
    for (int i = 0;i < n;++i) cout << ans[i]+1 << newl;
}
0