CF961B.Lecture Sleep
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i -th minute.
Mishka is really interested in calculus, though it is so hard to stay awake for all the time of lecture. You are given an array t of Mishka's behavior. If Mishka is asleep during the i -th minute of the lecture then ti will be equal to 0 , otherwise it will be equal to 1 . When Mishka is awake he writes down all the theorems he is being told — ai during the i -th minute. Otherwise he writes nothing.
You know some secret technique to keep Mishka awake for k minutes straight. However you can use it only once. You can start using it at the beginning of any minute between 1 and n−k+1 . If you use it on some minute i then Mishka will be awake during minutes j such that and will write down all the theorems lecturer tells.
You task is to calculate the maximum number of theorems Mishka will be able to write down if you use your technique only once to wake him up.
输入格式
The first line of the input contains two integer numbers n and k ( 1<=k<=n<=105 ) — the duration of the lecture in minutes and the number of minutes you can keep Mishka awake.
The second line of the input contains n integer numbers a1,a2,... an ( 1<=ai<=104 ) — the number of theorems lecturer tells during the i -th minute.
The third line of the input contains n integer numbers t1,t2,... tn ( 0<=ti<=1 ) — type of Mishka's behavior at the i -th minute of the lecture.
输出格式
Print only one integer — the maximum number of theorems Mishka will be able to write down if you use your technique only once to wake him up.
输入输出样例
输入#1
6 3 1 3 5 2 5 4 1 1 0 1 0 0
输出#1
16
说明/提示
In the sample case the better way is to use the secret technique at the beginning of the third minute. Then the number of theorems Mishka will be able to write down will be equal to 16 .