結果

問題 No.1013 〇マス進む
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-10-13 04:11:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 5,395 ms
コンパイル使用メモリ 314,880 KB
実行使用メモリ 40,532 KB
最終ジャッジ日時 2024-09-15 01:47:21
合計ジャッジ時間 10,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 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 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 39 ms
21,248 KB
testcase_15 AC 64 ms
32,036 KB
testcase_16 AC 58 ms
29,664 KB
testcase_17 AC 34 ms
18,924 KB
testcase_18 AC 43 ms
22,400 KB
testcase_19 AC 26 ms
14,720 KB
testcase_20 AC 78 ms
38,724 KB
testcase_21 AC 31 ms
17,664 KB
testcase_22 AC 44 ms
23,040 KB
testcase_23 AC 14 ms
9,728 KB
testcase_24 AC 79 ms
39,648 KB
testcase_25 AC 78 ms
39,108 KB
testcase_26 AC 15 ms
9,728 KB
testcase_27 AC 30 ms
16,896 KB
testcase_28 AC 16 ms
9,856 KB
testcase_29 AC 76 ms
37,812 KB
testcase_30 AC 27 ms
15,360 KB
testcase_31 AC 50 ms
26,424 KB
testcase_32 AC 37 ms
20,476 KB
testcase_33 AC 40 ms
20,476 KB
testcase_34 AC 67 ms
30,444 KB
testcase_35 AC 75 ms
28,888 KB
testcase_36 AC 6 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 74 ms
33,288 KB
testcase_39 AC 25 ms
12,928 KB
testcase_40 AC 84 ms
30,184 KB
testcase_41 AC 17 ms
9,856 KB
testcase_42 AC 40 ms
19,580 KB
testcase_43 AC 27 ms
13,696 KB
testcase_44 AC 42 ms
20,604 KB
testcase_45 AC 37 ms
18,536 KB
testcase_46 AC 19 ms
10,624 KB
testcase_47 AC 39 ms
19,708 KB
testcase_48 AC 45 ms
22,656 KB
testcase_49 AC 81 ms
30,312 KB
testcase_50 AC 57 ms
26,304 KB
testcase_51 AC 52 ms
23,680 KB
testcase_52 AC 11 ms
7,296 KB
testcase_53 AC 15 ms
9,216 KB
testcase_54 AC 60 ms
28,636 KB
testcase_55 AC 20 ms
10,880 KB
testcase_56 AC 88 ms
35,492 KB
testcase_57 AC 67 ms
25,392 KB
testcase_58 AC 112 ms
40,532 KB
testcase_59 AC 96 ms
40,404 KB
testcase_60 AC 99 ms
40,404 KB
testcase_61 AC 80 ms
40,400 KB
testcase_62 AC 79 ms
40,532 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n,k;cin>>n>>k;
  vc<ll>v(n); rep(i,n)cin>>v[i];
  vc<int>vr(n);
  rep(i,n)vr[i]=(i+v[i])%n;
  int t=30;
  vc vx(t,vc<int>(n,0));
  vc vy(t,vc<ll>(n,0));
  vy[0]=v;
  vx[0]=vr;
  rep(i,t-1)rep(j,n)vx[i+1][j]=vx[i][vx[i][j]];
  rep(i,t-1)rep(j,n)vy[i+1][j]=vy[i][j]+vy[i][vx[i][j]];
  rep(i,n){
    int a=i;
    ll ans=i;
    for(int j=t-1;j>=0;j--)if(k>>j&1){
      ans+=vy[j][a];
      a=vx[j][a];
    }
    cout<<ans+1<<"\n";
  }
}
0