#include using namespace std; using ll = long long; using P = pair; #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> n; vector a(n-1); rep(i,n-1){ cin >> a[i]; a[i]--; } vector dist(n,INF); dist[0] = 0; rep(i,n-1){ for(int j=a[i];j>i;j--){ if(!chmin(dist[j], dist[i]+1)) break; } } cout << dist[n-1] << '\n'; return 0; }