CF1384B2-Koa and the Beach (Hard Version)
CF1384B2-Koa and the Beach (Hard Version)
题目:
题目描述:
The only difference between easy and hard versions is on constraints. In this version constraints are higher. You can make hacks only if all versions of the problem are solved.
Koa the Koala is at the beach!
The beach consists (from left to right) of a shore, $ n+1 $ meters of sea and an island at $ n+1 $ meters from the shore.
She measured the depth of the sea at $ 1, 2, \dots, n $ meters from the shore and saved them in array $ d $ . $ d_i $ denotes the depth of the sea at $ i $ meters from the shore for $ 1 \le i \le n $ .
Like any beach this one has tide, the intensity of the tide is measured by parameter $ k $ and affects all depths from the beginning at time $ t=0 $ in the following way:
- For a total of $ k $ seconds, each second, tide increases all depths by $ 1 $ .
- Then, for a total of $ k $ seconds, each second, tide decreases all depths by $ 1 $ .
- This process repeats again and again (ie. depths increase for $ k $ seconds then decrease for $ k $ seconds and so on …). Formally, let’s define $ 0 $ -indexed array $ p = [0, 1, 2, \ldots, k - 2, k - 1, k, k - 1, k - 2, \ldots, 2, 1] $ of length $ 2k $ . At time $ t $ ( $ 0 \le t $ ) depth at $ i $ meters from the shore equals $ d_i + p[t \bmod 2k] $ ( $ t \bmod 2k $ denotes the remainder of the division of $ t $ by $ 2k $ ). Note that the changes occur instantaneously after each second, see the notes for better understanding.
At time $ t=0 $ Koa is standing at the shore and wants to get to the island. Suppose that at some time $ t $ ( $ 0 \le t $ ) she is at $ x $ ( $ 0 \le x \le n $ ) meters from the shore:
- In one second Koa can swim $ 1 $ meter further from the shore ( $ x $ changes to $ x+1 $ ) or not swim at all ( $ x $ stays the same), in both cases $ t $ changes to $ t+1 $ .
- As Koa is a bad swimmer, the depth of the sea at the point where she is can’t exceed $ l $ at integer points of time (or she will drown). More formally, if Koa is at $ x $ ( $ 1 \le x \le n $ ) meters from the shore at the moment $ t $ (for some integer $ t\ge 0 $ ), the depth of the sea at this point — $ d_x + p[t \bmod 2k] $ — can’t exceed $ l $ . In other words, $ d_x + p[t \bmod 2k] \le l $ must hold always.
- Once Koa reaches the island at $ n+1 $ meters from the shore, she stops and can rest. Note that while Koa swims tide doesn’t have effect on her (ie. she can’t drown while swimming). Note that Koa can choose to stay on the shore for as long as she needs and neither the shore or the island are affected by the tide (they are solid ground and she won’t drown there).
Koa wants to know whether she can go from the shore to the island. Help her!
输入格式:
The first line of the input contains one integer $ t $ ( $ 1 \le t \le 10^4 $ ) — the number of test cases. Description of the test cases follows.
The first line of each test case contains three integers $ n $ , $ k $ and $ l $ ( $ 1 \le n \le 3 \cdot 10^5; 1 \le k \le 10^9; 1 \le l \le 10^9 $ ) — the number of meters of sea Koa measured and parameters $ k $ and $ l $ .
The second line of each test case contains $ n $ integers $ d_1, d_2, \ldots, d_n $ ( $ 0 \le d_i \le 10^9 $ ) — the depths of each meter of sea Koa measured.
It is guaranteed that the sum of $ n $ over all test cases does not exceed $ 3 \cdot 10^5 $ .
输出格式:
For each test case:
Print Yes if Koa can get from the shore to the island, and No otherwise.
You may print each letter in any case (upper or lower).
样例:
样例输入 1:
|
|
样例输出 1:
|
|
思路:
实现:
|
|