CF575F.Bulbo

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Bananistan is a beautiful banana republic. Beautiful women in beautiful dresses. Beautiful statues of beautiful warlords. Beautiful stars in beautiful nights.

In Bananistan people play this crazy game – Bulbo. There’s an array of bulbs and player at the position, which represents one of the bulbs. The distance between two neighboring bulbs is 1. Before each turn player can change his position with cost posnewposold|pos_{new}-pos_{old}| . After that, a contiguous set of bulbs lights-up and player pays the cost that’s equal to the distance to the closest shining bulb. Then, all bulbs go dark again. The goal is to minimize your summed cost. I tell you, Bananistanians are spending their nights playing with bulbs.

Banana day is approaching, and you are hired to play the most beautiful Bulbo game ever. A huge array of bulbs is installed, and you know your initial position and all the light-ups in advance. You need to play the ideal game and impress Bananistanians, and their families.

输入格式

The first line contains number of turns nn and initial position xx . Next nn lines contain two numbers lstartl_{start} and lendl_{end} , which represent that all bulbs from interval [lstart,lend][l_{start},l_{end}] are shining this turn.

  • 1<=n<=50001<=n<=5000
  • 1<=x<=1091<=x<=10^{9}
  • 1<=lstart<=lend<=1091<=l_{start}<=l_{end}<=10^{9}

输出格式

Output should contain a single number which represents the best result (minimum cost) that could be obtained by playing this Bulbo game.

输入输出样例

  • 输入#1

    5 4
    2 7
    9 16
    8 10
    9 17
    1 6
    

    输出#1

    8
    

说明/提示

Before 1. turn move to position 5

Before 2. turn move to position 9

Before 5. turn move to position 8

首页