結果

問題 No.1013 〇マス進む
ユーザー 👑 NachiaNachia
提出日時 2020-12-11 00:39:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 206,580 KB
実行使用メモリ 5,704 KB
最終ジャッジ日時 2024-09-19 20:59:04
合計ジャッジ時間 10,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 3 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 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 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 7 ms
5,376 KB
testcase_14 AC 76 ms
5,376 KB
testcase_15 AC 123 ms
5,376 KB
testcase_16 AC 112 ms
5,376 KB
testcase_17 AC 68 ms
5,376 KB
testcase_18 AC 79 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 AC 150 ms
5,524 KB
testcase_21 AC 61 ms
5,376 KB
testcase_22 AC 86 ms
5,376 KB
testcase_23 AC 27 ms
5,376 KB
testcase_24 AC 153 ms
5,704 KB
testcase_25 AC 148 ms
5,504 KB
testcase_26 AC 29 ms
5,376 KB
testcase_27 AC 59 ms
5,376 KB
testcase_28 AC 30 ms
5,376 KB
testcase_29 AC 147 ms
5,376 KB
testcase_30 AC 52 ms
5,376 KB
testcase_31 AC 97 ms
5,376 KB
testcase_32 AC 74 ms
5,376 KB
testcase_33 AC 80 ms
5,376 KB
testcase_34 AC 119 ms
5,376 KB
testcase_35 AC 113 ms
5,376 KB
testcase_36 AC 10 ms
5,376 KB
testcase_37 AC 9 ms
5,376 KB
testcase_38 AC 131 ms
5,376 KB
testcase_39 AC 45 ms
5,376 KB
testcase_40 AC 122 ms
5,376 KB
testcase_41 AC 30 ms
5,376 KB
testcase_42 AC 73 ms
5,376 KB
testcase_43 AC 47 ms
5,376 KB
testcase_44 AC 77 ms
5,376 KB
testcase_45 AC 72 ms
5,376 KB
testcase_46 AC 34 ms
5,376 KB
testcase_47 AC 69 ms
5,376 KB
testcase_48 AC 83 ms
5,376 KB
testcase_49 AC 120 ms
5,376 KB
testcase_50 AC 100 ms
5,376 KB
testcase_51 AC 88 ms
5,376 KB
testcase_52 AC 19 ms
5,376 KB
testcase_53 AC 28 ms
5,376 KB
testcase_54 AC 114 ms
5,376 KB
testcase_55 AC 35 ms
5,376 KB
testcase_56 AC 140 ms
5,400 KB
testcase_57 AC 95 ms
5,376 KB
testcase_58 AC 174 ms
5,608 KB
testcase_59 AC 170 ms
5,608 KB
testcase_60 AC 170 ms
5,608 KB
testcase_61 AC 154 ms
5,608 KB
testcase_62 AC 158 ms
5,608 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;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0;i<(n);i++)

int N,K;

struct F{
  struct Node{ int i,cy; };
  vector<Node> V;
  F(){ V.resize(N); rep(i,N) V[i]={i,0}; }
  F operator*(const F& r)const{ F res; rep(i,N){ res.V[i].i=r.V[V[i].i].i; res.V[i].cy=V[i].cy+r.V[V[i].i].cy; } return res; }
  F pow(int i){ if(i==0) return F(); F res=pow(i/2); res=res*res; if(i%2==1) res=res* *this; return res; }
};

int main(){
  cin>>N>>K;
  F G;
  for(auto& q: G.V){ int a; cin>>a; q.i+=a; if(q.i>=N){ q.i-=N; q.cy++; } }
  G=G.pow(K);
  for(auto& q: G.V) cout<<(LL(q.cy)*N+q.i+1)<<endl;
  return 0;
}
0