結果

問題 No.1013 〇マス進む
ユーザー beetbeet
提出日時 2020-03-20 21:55:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 202,104 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-05-08 21:52:01
合計ジャッジ時間 9,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 3 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 68 ms
18,688 KB
testcase_15 AC 119 ms
28,032 KB
testcase_16 AC 103 ms
25,984 KB
testcase_17 AC 60 ms
16,544 KB
testcase_18 AC 77 ms
19,840 KB
testcase_19 AC 45 ms
13,184 KB
testcase_20 AC 143 ms
33,664 KB
testcase_21 AC 55 ms
15,532 KB
testcase_22 AC 81 ms
20,224 KB
testcase_23 AC 25 ms
8,960 KB
testcase_24 AC 142 ms
34,688 KB
testcase_25 AC 140 ms
33,920 KB
testcase_26 AC 27 ms
8,960 KB
testcase_27 AC 50 ms
15,008 KB
testcase_28 AC 26 ms
9,088 KB
testcase_29 AC 135 ms
33,024 KB
testcase_30 AC 50 ms
13,612 KB
testcase_31 AC 90 ms
23,040 KB
testcase_32 AC 64 ms
18,048 KB
testcase_33 AC 72 ms
18,048 KB
testcase_34 AC 121 ms
26,624 KB
testcase_35 AC 125 ms
25,344 KB
testcase_36 AC 10 ms
5,376 KB
testcase_37 AC 9 ms
5,376 KB
testcase_38 AC 133 ms
29,056 KB
testcase_39 AC 46 ms
11,648 KB
testcase_40 AC 142 ms
26,624 KB
testcase_41 AC 33 ms
9,080 KB
testcase_42 AC 75 ms
17,408 KB
testcase_43 AC 47 ms
12,332 KB
testcase_44 AC 75 ms
18,176 KB
testcase_45 AC 67 ms
16,256 KB
testcase_46 AC 36 ms
9,728 KB
testcase_47 AC 71 ms
17,280 KB
testcase_48 AC 83 ms
19,968 KB
testcase_49 AC 143 ms
26,624 KB
testcase_50 AC 104 ms
22,912 KB
testcase_51 AC 92 ms
20,864 KB
testcase_52 AC 20 ms
6,912 KB
testcase_53 AC 28 ms
8,576 KB
testcase_54 AC 110 ms
25,344 KB
testcase_55 AC 38 ms
9,856 KB
testcase_56 AC 160 ms
31,232 KB
testcase_57 AC 117 ms
22,144 KB
testcase_58 AC 211 ms
35,328 KB
testcase_59 AC 188 ms
35,328 KB
testcase_60 AC 169 ms
35,200 KB
testcase_61 AC 140 ms
35,200 KB
testcase_62 AC 135 ms
35,328 KB
testcase_63 AC 3 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';

//INSERT ABOVE HERE

const Int LOG = 40;
const Int MAX = 1e5+10;
Int dp[LOG][MAX];

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

  Int n,x;
  cin>>n>>x;

  vector<Int> ps(n);
  for(Int i=0;i<n;i++) cin>>ps[i];

  for(Int i=0;i<n;i++)
    dp[0][i]=ps[i];

  for(Int k=0;k+1<LOG;k++)
    for(Int i=0;i<n;i++)
      dp[k+1][i]=dp[k][i]+dp[k][(i+dp[k][i%n])%n];

  for(Int i=0;i<n;i++){
    Int p=i;
    for(Int k=0;k<LOG;k++)
      if((x>>k)&1) p+=dp[k][p%n];
    cout<<p+1<<newl;
  }
  return 0;
}
0