結果

問題 No.1013 〇マス進む
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-10-13 04:09:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 866 bytes
コンパイル時間 5,229 ms
コンパイル使用メモリ 310,208 KB
実行使用メモリ 28,112 KB
最終ジャッジ日時 2024-09-15 01:45:35
合計ジャッジ時間 11,591 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 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 5 ms
5,376 KB
testcase_14 AC 34 ms
15,052 KB
testcase_15 AC 56 ms
22,476 KB
testcase_16 AC 50 ms
20,812 KB
testcase_17 AC 30 ms
13,440 KB
testcase_18 AC 37 ms
15,948 KB
testcase_19 AC 22 ms
10,624 KB
testcase_20 AC 67 ms
26,576 KB
testcase_21 AC 27 ms
12,800 KB
testcase_22 AC 38 ms
16,332 KB
testcase_23 AC 13 ms
7,424 KB
testcase_24 AC 69 ms
27,344 KB
testcase_25 AC 66 ms
26,956 KB
testcase_26 AC 14 ms
7,552 KB
testcase_27 AC 26 ms
12,288 KB
testcase_28 AC 14 ms
7,552 KB
testcase_29 AC 65 ms
26,188 KB
testcase_30 AC 24 ms
11,136 KB
testcase_31 AC 44 ms
18,508 KB
testcase_32 AC 32 ms
14,668 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 71 ms
27,980 KB
testcase_62 AC 68 ms
27,852 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<int>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<int>(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;
    int 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