結果

問題 No.1013 〇マス進む
ユーザー f_stshf_stsh
提出日時 2020-09-22 14:51:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 173,164 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-06-26 03:54:45
合計ジャッジ時間 8,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 47 ms
15,232 KB
testcase_15 AC 79 ms
22,656 KB
testcase_16 AC 69 ms
20,992 KB
testcase_17 AC 41 ms
13,824 KB
testcase_18 AC 53 ms
16,000 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 95 ms
27,008 KB
testcase_21 AC 38 ms
12,800 KB
testcase_22 AC 55 ms
16,512 KB
testcase_23 AC 18 ms
7,680 KB
testcase_24 AC 95 ms
27,776 KB
testcase_25 AC 96 ms
27,136 KB
testcase_26 AC 20 ms
7,552 KB
testcase_27 AC 35 ms
12,288 KB
testcase_28 AC 19 ms
7,552 KB
testcase_29 AC 91 ms
26,496 KB
testcase_30 AC 35 ms
11,264 KB
testcase_31 AC 61 ms
18,688 KB
testcase_32 AC 44 ms
14,720 KB
testcase_33 AC 51 ms
14,720 KB
testcase_34 AC 86 ms
21,504 KB
testcase_35 AC 92 ms
20,608 KB
testcase_36 AC 8 ms
6,944 KB
testcase_37 AC 7 ms
6,940 KB
testcase_38 AC 93 ms
23,424 KB
testcase_39 AC 35 ms
9,728 KB
testcase_40 AC 101 ms
21,376 KB
testcase_41 AC 25 ms
7,808 KB
testcase_42 AC 55 ms
14,208 KB
testcase_43 AC 35 ms
10,240 KB
testcase_44 AC 56 ms
14,848 KB
testcase_45 AC 52 ms
13,440 KB
testcase_46 AC 27 ms
8,064 KB
testcase_47 AC 51 ms
14,208 KB
testcase_48 AC 60 ms
16,128 KB
testcase_49 AC 102 ms
21,248 KB
testcase_50 AC 74 ms
18,688 KB
testcase_51 AC 68 ms
17,024 KB
testcase_52 AC 16 ms
6,940 KB
testcase_53 AC 21 ms
7,168 KB
testcase_54 AC 80 ms
20,352 KB
testcase_55 AC 30 ms
8,320 KB
testcase_56 AC 118 ms
25,088 KB
testcase_57 AC 84 ms
18,048 KB
testcase_58 AC 141 ms
28,288 KB
testcase_59 AC 131 ms
28,288 KB
testcase_60 AC 124 ms
28,288 KB
testcase_61 AC 96 ms
28,288 KB
testcase_62 AC 92 ms
28,288 KB
testcase_63 AC 2 ms
6,940 KB
testcase_64 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
/* typedef */
typedef long long ll;
typedef pair<int, int> pii;
/* constant */
const int INF = 1 << 30;
const ll LINF = 1LL << 61;
const int NIL = -1;
const int MAX = 10000;
const int MOD = 1000000007;
const double pi = 3.141592653589;
/* global variables */
/* function */
void solve_dubling() {
    int n, k;
    cin >> n >> k;
    int MAXD = log2(1e+9 + 5);
    // init
    vector<ll> a(n + 1);
    vector<vector<ll>> sum(MAXD + 1, vector<ll>(n + 1, 0));
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        sum[0][i] = a[i];
    }
    // build
    for (int d = 0; d < MAXD; d++) {
        for (int st = 0; st < n; st++) {
            sum[d + 1][st] = sum[d][st] + sum[d][(st + sum[d][st]) % n];
        }
    }
    // query
    for (int st = 0; st < n; st++) {
        ll ret = st;
        for (int d = MAXD; d >= 0; d--) {
            int b = 1 << d;
            if (k & b) {
                ret += sum[d][ret % n];
            }
        }
        cout << ret + 1 << '\n';
    }

}
/* main */
int main(){
    solve_dubling();
}
0