B. Lecture Sleep( Educational Codeforces Round 41 (Rated for Div. 2))

前缀后缀和搞一搞,然后枚举一下区间,找出最大值

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 
 5 const int maxn = 1e5 + 5;
 6 int a[maxn], f[maxn], b[maxn], c[maxn];
 7 
 8 int main()
 9 {
10     ios::sync_with_stdio(false);
11     int n, k;
12     cin >> n >> k;
13     for (int i = 1; i <= n; i++)
14         cin >> a[i];
15     for (int i = 1; i <= n; i++)
16         cin >> f[i];
17     //前缀和
18     for (int i = 1; i <= n; i++)
19     if (f[i])b[i] = b[i - 1] + a[i];
20     else b[i] = b[i - 1];
21     //后缀和
22     for (int i = n; i>0; i--)
23     if (f[i])c[i] = c[i + 1] + a[i];
24     else c[i] = c[i + 1];
25 
26     long long s = 0;
27     for (int i = 1; i <= k; i++)s += a[i];
28     long long ans = 0;
29     for (int i = k; i <= n; i++){
30         ans = max(b[i - k] + s + c[i + 1], ans);
31         s = s - a[i - k + 1] + a[i + 1];
32     }
33     cout << ans <<endl;
    //system("pause");
34 return 0; 35 }

 

转载于:https://www.cnblogs.com/ouyang_wsgwz/p/8721287.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值