Shopping

AtCoder
IDagc022_d
Time2000ms
Memory256MB
Difficulty
Yui loves shopping. She lives in Yamaboshi City and there is a train service in the city. The city can be modelled as a very long number line. Yui's house is at coordinate $0$. There are $N$ shopping centres in the city, located at coordinates $x_{1}, x_{2}, ..., x_{N}$ respectively. There are $N + 2$ train stations, one located at coordinate $0$, one located at coordinate $L$, and one located at each shopping centre. At time $0$, the train departs from position $0$ to the positive direction. The train travels at a constant speed of $1$ unit per second. At time $L$, the train will reach the last station, the station at coordinate $L$. The train immediately moves in the opposite direction at the same speed. At time $2L$, the train will reach the station at coordinate $0$ and it immediately moves in the opposite direction again. The process repeats indefinitely. When the train arrives at a station where Yui is located, Yui can board or leave the train immediately. At time $0$, Yui is at the station at coordinate $0$. Yui wants to go shopping in all $N$ shopping centres, in any order, and return home after she finishes her shopping. She needs to shop for $t_{i}$ seconds in the shopping centre at coordinate $x_{i}$. **She must finish her shopping in one shopping centre before moving to the next shopping centre.** Yui can immediately start shopping when she reaches a station with a shopping centre and she can immediately board the train when she finishes shopping. Yui wants to spend the minimum amount of time to finish her shopping. Can you help her determine the minimum number of seconds required to complete her shopping? ## Constraints * $1 \leq N \leq 300000$ * $1 \leq L \leq 10^{9}$ * $0 < x_{1} < x_{2} < ... < x_{N} < L$ * $1 \leq t_{i} \leq 10^{9}$ * All values in the input are integers. ## Input Input is given from Standard Input in the following format: $N$ $L$ $x_{1}$ $x_{2}$ $...$ $x_{N}$ $t_{1}$ $t_{2}$ $...$ $t_{N}$ ## Partial Score * $1000$ points will be awarded for passing the testset satisfying $1 \leq N \leq 3000$. [samples]
Samples
Input #1
2 10
5 8
10 4
Output #1
40

Here's one possible way for Yui to finish her shopping :

*   Travel to the station at coordinate $8$ with the train. She arrives at coordinate $8$ at time $8$.
    
*   Shop in the shopping centre at coordinate $8$. She finishes her shopping at time $12$.
    
*   The train arrives at coordinate $8$ at time $12$. She boards the train which is currently moving in the negative direction.
    
*   She arrives at coordinate $5$ at time $15$. She finishes her shopping at time $25$.
    
*   The train arrives at coordinate $5$ at time $25$. She boards the train which is currently moving in the positive direction.
    
*   She arrives at coordinate $L = 10$ at time $30$. The train starts moving in the negative direction immediately.
    
*   She arrives at coordinate $0$ at time $40$, ending the trip.
Input #2
2 10
5 8
10 5
Output #2
60
Input #3
5 100
10 19 28 47 68
200 200 200 200 200
Output #3
1200
Input #4
8 1000000000
2018 123456 1719128 1929183 9129198 10100101 77777777 120182018
99999999 1000000000 1000000000 11291341 1 200 1 123812831
Output #4
14000000000

Beware of overflow issues.
API Response (JSON)
{
  "problem": {
    "name": "Shopping",
    "description": {
      "content": "Yui loves shopping. She lives in Yamaboshi City and there is a train service in the city. The city can be modelled as a very long number line. Yui's house is at coordinate $0$. There are $N$ shopping ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "agc022_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Yui loves shopping. She lives in Yamaboshi City and there is a train service in the city. The city can be modelled as a very long number line. Yui's house is at coordinate $0$.\nThere are $N$ shopping ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments