0
点赞
收藏
分享

微信扫一扫

滑窗法--0与1状态转变


B. Lecture Sleep

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 

滑窗法--0与1状态转变_#include

 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.

Input

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.

Output

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.

Example

input

Copy


6 31 3 5 2 5 4 1 1 0 1 0 0


output

Copy


16


Note

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.

#include<iostream>
#include<cstdio>
using namespace std;

const int Max_Num = 1e5 + 5;

int a[Max_Num];
int t[Max_Num];

int main() {
int n, k;
long long Sum = 0; int Sliding_Window = 0; int temp = 0;
scanf("%d%d", &n, &k);
for (int i = 0; i < n; i++) {
scanf("%d", a + i);
}
for (int i = 0; i < n; i++) {
scanf("%d", t + i);
}
for (int i = 0; i < n; i++) {
if (t[i]) {
Sum += a[i];
}
}
for (int i = 0; i < n; i++) {
if (!t[i]) {
temp += a[i];
}
if (i - k >= 0 && !t[i - k]) {
temp -= a[i - k];
}
Sliding_Window = temp > Sliding_Window ? temp : Sliding_Window;
}
Sum += Sliding_Window;
printf("%I64d\n", Sum);
return 0;
}

 

举报

相关推荐

0 条评论