当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6709:Fishing Master

题目描述
Heard that $eom$ is a fishing MASTER, you want to acknowledge him as your mentor. As everybody knows, if you want to be a MASTER's apprentice, you should pass the trial. So when you find fishing MASTER $eom$, the trial is as follow:

There are $n$ fish in the pool. For the $i$ - $th$ fish, it takes at least $t_i$ minutes to stew(overcook is acceptable). To simplify this problem, the time spent catching a fish is $k$ minutes. You can catch fish one at a time and because there is only one pot, only one fish can be stewed in the pot at a time. While you are catching a fish, you can not put a raw fish you have caught into the pot, that means if you begin to catch a fish, you can't stop until after $k$ minutes; when you are not catching fish, you can take a cooked fish (stewed for no less than $t_i$) out of the pot or put a raw fish into the pot, these two operations take no time. Note that if the fish stewed in the pot is not stewed for enough time, you cannot take it out, but you can go to catch another fish or just wait for a while doing nothing until it is sufficiently stewed.

Now $eom$ wants you to catch and stew all the fish as soon as possible (you definitely know that a fish can be eaten only after sufficiently stewed), so that he can have a satisfying meal. If you can complete that in the shortest possible time, $eom$ will accept you as his apprentice and say "I am done! I am full!". If you can't, $eom$ will not accept you and say "You are done! You are fool!".

So what's the shortest time to pass the trial if you arrange the time optimally?
输入解释
The first line of input consists of a single integer $T(1 \leq T \leq 20)$, denoting the number of test cases.

For each test case, the first line contains two integers $n(1 \leq n \leq 10^5), k(1 \leq k \leq 10^9)$, denoting the number of fish in the pool and the time needed to catch a fish.

the second line contains $n$ integers, $t_1, t_2, \dots , t_n(1 \leq t_i \leq 10^9)$ ,denoting the least time needed to cook the $i$ - $th$ fish.
输出解释
For each test case, print a single integer in one line, denoting the shortest time to pass the trial.
输入样例
2
3 5
5 5 8
2 4
3 3
输出样例
23
11

提示
Case 1: Catch the 3rd fish (5 mins), put the 3rd fish in, catch the 1st fish (5 mins), wait (3 mins),  

take the 3rd fish out, put the 1st fish in, catch the 2nd fish(5 mins), 

take the 1st fish out, put the 2nd fish in, wait (5 mins), take the 2nd fish out.

Case 2: Catch the 1st fish (4 mins), put the 1st fish in, catch the 2nd fish (4 mins),  

take the 1st fish out, put the 2nd fish in, wait (3 mins), take the 2nd fish out.
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6709

最后修改于 2020-10-25T23:33:42+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/65536K(Java/Others)