B. Xenia and Ringroad1000 / 水题 模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Xenia and Ringroad1000 / 水题 模拟相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/339/B
#include<bits/stdc++.h>
using namespace std;
int n,m,startx=1;
long long int sum;
int main(void)
{
cin>>n>>m;
for(int i=0;i<m;i++)
{
int s; cin>>s;
if(s>=startx) sum+=s-startx;
else sum+=n-startx+s;
startx=s;
}
cout<<sum<<endl;
return 0;
}
以上是关于B. Xenia and Ringroad1000 / 水题 模拟的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 342E :Xenia and Tree
[线段树]Codeforces 339D Xenia and Bit Operations
CF339D Xenia and Bit Operations(线段树)