Shik and Game

AtCoder
IDagc007_d
Time2000ms
Memory256MB
Difficulty
#nck { width: 30px; height: auto; }Imagine a game played on a line. Initially, the player is located at position $0$ with $N$ candies in his possession, and the exit is at position $E$. There are also $N$ bears in the game. The $i$\-th bear is located at $x_i$. The maximum moving speed of the player is $1$ while the bears do not move at all. When the player gives a candy to a bear, it will provide a coin after $T$ units of time. More specifically, if the $i$\-th bear is given a candy at time $t$, it will put a coin at its position at time $t+T$. The purpose of this game is to give candies to all the bears, pick up all the coins, and go to the exit. Note that the player can only give a candy to a bear if the player is at the exact same position of the bear. Also, each bear will only produce a coin once. If the player visits the position of a coin after or at the exact same time that the coin is put down, the player can pick up the coin. Coins do not disappear until collected by the player. Shik is an expert of this game. He can give candies to bears and pick up coins instantly. You are given the configuration of the game. Please calculate the minimum time Shik needs to collect all the coins and go to the exit. ## Constraints * $1 \leq N \leq 100,000$ * $1 \leq T, E \leq 10^9$ * $0 < x_i < E$ * $x_i < x_{i+1}$ for $1 \leq i < N$ * All input values are integers. ## Input The input is given from Standard Input in the following format: $N$ $E$ $T$ $x_1$ $x_2$ $...$ $x_N$ ## Partial Scores * In test cases worth $600$ points, $N \leq 2,000$. [samples]
Samples
Input #1
3 9 1
1 3 8
Output #1
12

The optimal strategy is to wait for the coin after treating each bear. The total time spent on waiting is $3$ and moving is $9$. So the answer is $3 + 9 = 12$.
Input #2
3 9 3
1 3 8
Output #2
16
Input #3
2 1000000000 1000000000
1 999999999
Output #3
2999999996
API Response (JSON)
{
  "problem": {
    "name": "Shik and Game",
    "description": {
      "content": "#nck { width: 30px; height: auto; }Imagine a game played on a line. Initially, the player is located at position $0$ with $N$ candies in his possession, and the exit is at position $E$. There are also",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "agc007_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "#nck { width: 30px; height: auto; }Imagine a game played on a line. Initially, the player is located at position $0$ with $N$ candies in his possession, and the exit is at position $E$. There are also...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments