結果

問題 No.1013 〇マス進む
ユーザー tsutajtsutaj
提出日時 2020-03-20 21:59:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,731 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-05-08 21:58:10
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 27 ms
11,120 KB
testcase_15 AC 47 ms
15,892 KB
testcase_16 AC 42 ms
14,720 KB
testcase_17 AC 24 ms
10,368 KB
testcase_18 AC 29 ms
11,776 KB
testcase_19 AC 18 ms
8,576 KB
testcase_20 AC 64 ms
18,560 KB
testcase_21 AC 22 ms
9,728 KB
testcase_22 AC 33 ms
12,032 KB
testcase_23 AC 10 ms
6,272 KB
testcase_24 AC 60 ms
19,072 KB
testcase_25 AC 60 ms
18,688 KB
testcase_26 AC 11 ms
6,272 KB
testcase_27 AC 19 ms
9,344 KB
testcase_28 AC 10 ms
6,400 KB
testcase_29 AC 58 ms
18,304 KB
testcase_30 AC 18 ms
8,704 KB
testcase_31 AC 36 ms
13,296 KB
testcase_32 AC 25 ms
10,880 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 64 ms
19,328 KB
testcase_62 AC 59 ms
19,328 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG // for STL debug (optional)
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <cfloat>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <fstream>
#include <functional>
#include <bitset>
using namespace std;
using ll = long long int;
using int64 = long long int;
 
template<typename T> void chmax(T &a, T b) {a = max(a, b);}
template<typename T> void chmin(T &a, T b) {a = min(a, b);}
template<typename T> void chadd(T &a, T b) {a = a + b;}
 
int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};
const int INF = 1LL << 29;
const ll LONGINF = 1LL << 60;
const ll MOD = 1000000007LL;

const int LOG = 20;
int nxt1[100010][LOG], nxt2[100010][LOG];

int main() {
    ll N, K; scanf("%lld%lld", &N, &K);
    vector<int> P(N);
    for(int i=0; i<N; i++) scanf("%d", &P[i]);

    for(int i=0; i<N; i++) {
        int j = i + P[i];
        int k = (j >= N);
        if(k) j -= N;
        nxt1[i][0] = j, nxt2[i][0] = k;
    }

    for(int k=1; k<LOG; k++) {
        for(int i=0; i<N; i++) {
            nxt1[i][k] = nxt1[ nxt1[i][k-1] ][k-1];
            nxt2[i][k] = nxt2[i][k-1] + nxt2[ nxt1[i][k-1] ][k-1];
        }
    }

    for(int i=0; i<N; i++) {
        ll rem = K, c1 = i, c2 = 0;
        for(int k=LOG-1; k>=0; k--) {
            if(rem >> k & 1) {
                c2 += nxt2[c1][k];
                c1 = nxt1[c1][k];
            }
        }
        printf("%lld\n", c2 * N + c1 + 1);
    }
    return 0;
}
0