結果

問題 No.1013 〇マス進む
ユーザー DAyamaCTFDAyamaCTF
提出日時 2020-03-23 14:41:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 1,513 ms
コンパイル使用メモリ 162,036 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-06-07 20:43:18
合計ジャッジ時間 11,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 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 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 97 ms
26,752 KB
testcase_15 AC 160 ms
41,344 KB
testcase_16 AC 135 ms
38,016 KB
testcase_17 AC 86 ms
23,808 KB
testcase_18 AC 105 ms
28,544 KB
testcase_19 AC 61 ms
18,216 KB
testcase_20 AC 182 ms
49,792 KB
testcase_21 AC 75 ms
22,064 KB
testcase_22 AC 110 ms
29,440 KB
testcase_23 AC 35 ms
11,904 KB
testcase_24 AC 188 ms
51,584 KB
testcase_25 AC 192 ms
50,432 KB
testcase_26 AC 38 ms
11,772 KB
testcase_27 AC 74 ms
21,120 KB
testcase_28 AC 39 ms
11,776 KB
testcase_29 AC 178 ms
48,896 KB
testcase_30 AC 71 ms
19,200 KB
testcase_31 AC 130 ms
33,536 KB
testcase_32 AC 94 ms
25,728 KB
testcase_33 AC 102 ms
25,728 KB
testcase_34 AC 148 ms
39,168 KB
testcase_35 AC 155 ms
37,248 KB
testcase_36 AC 12 ms
5,888 KB
testcase_37 AC 11 ms
5,760 KB
testcase_38 AC 161 ms
42,880 KB
testcase_39 AC 58 ms
16,000 KB
testcase_40 AC 167 ms
39,040 KB
testcase_41 AC 42 ms
12,032 KB
testcase_42 AC 90 ms
24,960 KB
testcase_43 AC 62 ms
17,064 KB
testcase_44 AC 100 ms
26,112 KB
testcase_45 AC 79 ms
23,180 KB
testcase_46 AC 45 ms
12,800 KB
testcase_47 AC 89 ms
24,704 KB
testcase_48 AC 109 ms
28,672 KB
testcase_49 AC 167 ms
38,784 KB
testcase_50 AC 138 ms
33,664 KB
testcase_51 AC 114 ms
30,336 KB
testcase_52 AC 25 ms
8,960 KB
testcase_53 AC 36 ms
11,264 KB
testcase_54 AC 181 ms
36,992 KB
testcase_55 AC 51 ms
13,312 KB
testcase_56 AC 227 ms
46,208 KB
testcase_57 AC 137 ms
32,256 KB
testcase_58 AC 251 ms
52,308 KB
testcase_59 AC 234 ms
52,480 KB
testcase_60 AC 262 ms
52,352 KB
testcase_61 AC 196 ms
52,300 KB
testcase_62 AC 164 ms
52,336 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;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;

#define fi first
#define se second
#define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++)
#define rep(i,n) repl(i,0,n)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define mmax(x,y) (x>y?x:y)
#define mmin(x,y) (x<y?x:y)
#define maxch(x,y) x=mmax(x,y)
#define minch(x,y) x=mmin(x,y)
#define uni(x) x.erase(unique(all(x)),x.end())
#define exist(x,y) (find(all(x),y)!=x.end())
#define bcnt __builtin_popcountll

#define INF 1e16
#define mod 1000000007

P operator*(const P& a,const P& b){
	return P(a.fi+b.fi,b.se);
}

ll N,K;
vector<ll> A;
P f[31][100010];

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  cin>>N>>K;
  A.resize(N);
  rep(i,N)cin>>A[i];
  rep(i,N){
  	if(i+A[i]>=N) f[0][i]=P(1,(i+A[i])%N);
  	else f[0][i]=P(0,(i+A[i])%N);
  }

  rep(k,30){
  	rep(i,N){
  		f[k+1][i]=f[k][i]*f[k][f[k][i].se];
  	}
  }

  K--;
  rep(i,N){
  	P res=f[0][i];
  	rep(k,30){
  		if((K>>k)&1){
  			res=res*f[k][res.se];
  		}
  	}
  	cout<<res.fi*N+res.se+1<<endl;
  }

  return 0;
}
0