結果

問題 No.1013 〇マス進む
ユーザー bayashikobayashiko
提出日時 2021-02-11 16:51:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 2,312 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 218,648 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-07-18 05:28:08
合計ジャッジ時間 9,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 39 ms
34,304 KB
testcase_15 AC 70 ms
53,760 KB
testcase_16 AC 60 ms
49,280 KB
testcase_17 AC 33 ms
30,336 KB
testcase_18 AC 44 ms
36,480 KB
testcase_19 AC 25 ms
23,168 KB
testcase_20 AC 83 ms
64,896 KB
testcase_21 AC 31 ms
28,160 KB
testcase_22 AC 47 ms
37,760 KB
testcase_23 AC 15 ms
14,464 KB
testcase_24 AC 85 ms
66,816 KB
testcase_25 AC 86 ms
65,664 KB
testcase_26 AC 15 ms
14,464 KB
testcase_27 AC 29 ms
26,752 KB
testcase_28 AC 15 ms
14,464 KB
testcase_29 AC 82 ms
63,488 KB
testcase_30 AC 30 ms
24,064 KB
testcase_31 AC 56 ms
43,264 KB
testcase_32 AC 39 ms
33,152 KB
testcase_33 AC 44 ms
33,152 KB
testcase_34 AC 79 ms
50,688 KB
testcase_35 AC 85 ms
48,000 KB
testcase_36 AC 6 ms
6,940 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 88 ms
55,680 KB
testcase_39 AC 29 ms
20,096 KB
testcase_40 AC 98 ms
50,304 KB
testcase_41 AC 18 ms
14,848 KB
testcase_42 AC 46 ms
31,744 KB
testcase_43 AC 28 ms
21,376 KB
testcase_44 AC 46 ms
33,408 KB
testcase_45 AC 41 ms
29,696 KB
testcase_46 AC 20 ms
15,872 KB
testcase_47 AC 41 ms
31,744 KB
testcase_48 AC 50 ms
36,608 KB
testcase_49 AC 94 ms
50,304 KB
testcase_50 AC 64 ms
43,136 KB
testcase_51 AC 58 ms
38,912 KB
testcase_52 AC 12 ms
10,112 KB
testcase_53 AC 15 ms
13,440 KB
testcase_54 AC 64 ms
47,616 KB
testcase_55 AC 23 ms
16,512 KB
testcase_56 AC 101 ms
59,520 KB
testcase_57 AC 82 ms
41,600 KB
testcase_58 AC 138 ms
68,352 KB
testcase_59 AC 123 ms
68,352 KB
testcase_60 AC 109 ms
68,224 KB
testcase_61 AC 85 ms
68,224 KB
testcase_62 AC 82 ms
68,224 KB
testcase_63 AC 2 ms
6,940 KB
testcase_64 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;
//#include<boost/multiprecision/cpp_int.hpp>
//#include<boost/multiprecision/cpp_dec_float.hpp>
//namespace mp=boost::multiprecision;
//#define mulint mp::cpp_int
//#define mulfloat mp::cpp_dec_float_100
//#include<atcoder/all>
//using namespace atcoder;
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
#define max3(a,b,c) max(a,max(b,c))
#define min3(a,b,c) min(a,min(b,c))
#define INF (1<<30)
#define LINF (lint)(1LL<<56)
#define endl "\n"
#define rep(i,n) for(lint (i)=0;(i)<(n);(i)++)
#define reprev(i,n) for(lint (i)=(n-1);(i)>=0;(i)--)
#define flc(x) __builtin_popcountll(x)
#define pint pair<int,int>
#define pdouble pair<double,double>
#define plint pair<lint,lint>
#define fi first
#define se second
#define all(x) x.begin(),x.end()
#define vec vector<lint>
#define nep(x) next_permutation(all(x))
typedef long long lint;
typedef __int128_t llint;
int dx[8]={1,1,0,-1,-1,-1,0,1};
int dy[8]={0,1,1,1,0,-1,-1,-1};
const int MAX_N=3e5+5;
//vector<int> bucket[MAX_N/1000];
constexpr int MOD=1000000007;
//constexpr int MOD=998244353;

struct doubling{
    vector<vector<lint>> to,sum;
    doubling(vector<lint> in,int log){
        to.resize(log);
        rep(i,log) to[i].resize(in.size());
        rep(i,in.size()) to[0][i]=in[i];
        for(int i=1;i<log;i++) rep(j,in.size()) to[i][j]=to[i-1][to[i-1][j]];
        sum.resize(log);
        rep(i,log) sum[i].resize(in.size());
        rep(i,in.size()){
            sum[0][i]=(in[i]-i);
            if(sum[0][i]<=0) sum[0][i]+=to[0].size()-1;
        }
        for(int i=1;i<log;i++) rep(j,in.size()) sum[i][j]=sum[i-1][j]+sum[i-1][to[i-1][j]];
    }
    lint dest(lint now,lint k){//nowのk個先
        rep(i,to.size()){
            if(k&(1LL<<i)) now=to[i][now];
        }
        return now;
    }
    lint dsum(lint now,lint k){//Σ[i=0..k-1]
        lint res=0;
        rep(i,to.size()){
            if(k&(1LL<<i)) res+=sum[i][now],now=to[i][now];
        }
        return res;
    }
};

int main(void){
    lint N,K;
    cin >> N >> K;
    vector<lint> P(N);
    rep(i,N) cin >> P[i];
    vector<lint> A(N+1);
    rep(i,N) A[i+1]=(i+P[i])%N+1;
    doubling D(A,40);
    rep(i,N) cout << D.dsum(i+1,K)+i+1 << endl; 
}
0