結果

問題 No.1868 Teleporting Cyanmond
ユーザー keisuke6keisuke6
提出日時 2022-07-10 22:04:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 4,813 ms
コンパイル使用メモリ 265,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 12:52:43
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 184 ms
5,376 KB
testcase_04 AC 109 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 57 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 41 ms
5,376 KB
testcase_10 AC 155 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 29 ms
5,376 KB
testcase_20 AC 27 ms
5,376 KB
testcase_21 AC 29 ms
5,376 KB
testcase_22 AC 29 ms
5,376 KB
testcase_23 AC 28 ms
5,376 KB
testcase_24 AC 27 ms
5,376 KB
testcase_25 AC 27 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 27 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;

int main(){
  int N;
  cin>>N;
  vector<int> S(N-1),A(N,1e9);
  A[0] = 0;
  for(int i=0;i<N-1;i++){
    cin>>S[i];
    S[i]--;
    for(int j=i+1;j<=S[i];j++) A[j] = min(A[j],A[i]+1);
  }
  cout<<A[N-1]<<endl;
}
0