CF339B.Xenia and Ringroad

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Xenia lives in a city that has nn houses built along the main ringroad. The ringroad houses are numbered 1 through nn in the clockwise order. The ringroad traffic is one way and also is clockwise.

Xenia has recently moved into the ringroad house number 1. As a result, she's got mm things to do. In order to complete the ii -th task, she needs to be in the house number aia_{i} and complete all tasks with numbers less than ii . Initially, Xenia is in the house number 1, find the minimum time she needs to complete all her tasks if moving from a house to a neighboring one along the ringroad takes one unit of time.

输入格式

The first line contains two integers nn and mm (2<=n<=105,1<=m<=105)(2<=n<=10^{5},1<=m<=10^{5}) . The second line contains mm integers a1,a2,...,ama_{1},a_{2},...,a_{m} (1<=ai<=n)(1<=a_{i}<=n) . Note that Xenia can have multiple consecutive tasks in one house.

输出格式

Print a single integer — the time Xenia needs to complete all tasks.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    4 3
    3 2 3
    

    输出#1

    6
    
  • 输入#2

    4 3
    2 3 3
    

    输出#2

    2
    

说明/提示

In the first test example the sequence of Xenia's moves along the ringroad looks as follows: 12341231→2→3→4→1→2→3 . This is optimal sequence. So, she needs 6 time units.

首页