NarrowRectangles

AtCoder
IDarc070_c
Time2000ms
Memory256MB
Difficulty
AtCoDeer the deer found $N$ rectangle lying on the table, each with height $1$. If we consider the surface of the desk as a two-dimensional plane, the $i$\-th rectangle $i(1≤i≤N)$ covers the vertical range of $[i-1,i]$ and the horizontal range of $[l_i,r_i]$, as shown in the following figure: ![image](https://atcoder.jp/img/arc070/46b7dc61fc2016c9b45f10db46c6fce9.png) AtCoDeer will move these rectangles horizontally so that all the rectangles are connected. For each rectangle, the cost to move it horizontally by a distance of $x$, is $x$. Find the minimum cost to achieve connectivity. It can be proved that this value is always an integer under the constraints of the problem. ## Constraints * All input values are integers. * $1≤N≤10^5$ * $1≤l_i<r_i≤10^9$ ## Input The input is given from Standard Input in the following format: $N$ $l_1$ $r_1$ $l_2$ $r_2$ : $l_N$ $r_N$ ## Partial Score * $300$ points will be awarded for passing the test set satisfying $1≤N≤400$ and $1≤l_i<r_i≤400$. [samples]
Samples
Input #1
3
1 3
5 7
1 3
Output #1
2

The second rectangle should be moved to the left by a distance of $2$.
Input #2
3
2 5
4 6
1 4
Output #2
0

The rectangles are already connected, and thus no move is needed.
Input #3
5
999999999 1000000000
1 2
314 315
500000 500001
999999999 1000000000
Output #3
1999999680
Input #4
5
123456 789012
123 456
12 345678901
123456 789012
1 23
Output #4
246433
Input #5
1
1 400
Output #5
0
API Response (JSON)
{
  "problem": {
    "name": "NarrowRectangles",
    "description": {
      "content": "AtCoDeer the deer found $N$ rectangle lying on the table, each with height $1$. If we consider the surface of the desk as a two-dimensional plane, the $i$\\-th rectangle $i(1≤i≤N)$ covers the vertical ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc070_c"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "AtCoDeer the deer found $N$ rectangle lying on the table, each with height $1$. If we consider the surface of the desk as a two-dimensional plane, the $i$\\-th rectangle $i(1≤i≤N)$ covers the vertical ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments