A. New Year Transportation 1000 / 水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. New Year Transportation 1000 / 水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/500/A
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int n,m; cin>>n>>m;
int startx=1;
bool flag=0;
for(int i=1;i<=n-1;i++)
{
int a; cin>>a;
if(startx==i) startx+=a;
if(startx==m) flag=1;
}
if(flag) puts("YES");
else puts("NO");
return 0;
}
以上是关于A. New Year Transportation 1000 / 水题的主要内容,如果未能解决你的问题,请参考以下文章
Good Bye 2018 A. New Year and the Christmas Ornament
Codeforces 1106C Lunar New Year and Number DivisionLunar |数学
Codeforces Round #166 (Div. 2)暴力A. Beautiful Year