| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 数据结构与算法 -> C. Increase Subarray Sums-Educational Codeforces Round 123 (Rated for Div. 2) -> 正文阅读 |
|
[数据结构与算法]C. Increase Subarray Sums-Educational Codeforces Round 123 (Rated for Div. 2) |
C. Increase Subarray Sums time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output You are given an array?a1,a2,…,ana1,a2,…,an, consisting of?nn?integers. You are also given an integer value?xx. Let?f(k)f(k)?be the maximum sum of a contiguous subarray of?aa?after applying the following operation: add?xx?to the elements on exactly?kk?distinct?positions. An empty subarray should also be considered, it has sum?00. Note that the subarray doesn't have to include all of the increased elements. Calculate the maximum value of?f(k)f(k)?for all?kk?from?00?to?nn?independently. Input The first line contains a single integer?tt?(1≤t≤50001≤t≤5000)?— the number of testcases. The first line of the testcase contains two integers?nn?and?xx?(1≤n≤50001≤n≤5000;?0≤x≤1050≤x≤105)?— the number of elements in the array and the value to add. The second line contains?nn?integers?a1,a2,…,ana1,a2,…,an?(?105≤ai≤105?105≤ai≤105). The sum of?nn?over all testcases doesn't exceed?50005000. Output For each testcase, print?n+1n+1?integers?— the maximum value of?f(k)f(k)?for all?kk?from?00?to?nn?independently. Example input Copy 3 4 2 4 1 3 2 3 5 -2 -7 -1 10 2 -6 -1 -2 4 -6 -1 -4 4 -5 -4 output Copy 10 12 14 16 18 0 4 4 5 4 6 6 7 7 7 7 8 8 8 8 Note In the first testcase, it doesn't matter which elements you add?xx?to. The subarray with the maximum sum will always be the entire array. If you increase?kk?elements by?xx,?k?xk?x?will be added to the sum. In the second testcase:
----------------------------------------------------------------------------------------------------------------------------- 这个题在做的时候,使用了动态规划和前缀和预处理出长度为len的各种情况,但是输出的时候发现和样例不同,当时脑子没有转过来,其实把一行代码换个位置就成了 这是本来的错误代码,看代码不难看出,我的本意是求出来固定长度再加上+k个x,求出每个长度的最值。可仔细读题会发现,题目要求的是加入k个x之后,整个数组的最大连续子段,并没有要求是必须是k长度的,放了k个最值还可能是这k个连续里面选出几段,也就是<k时的情况,所以ll ans=-0x7f7f7f7f7f那一行放置在外面就正确了,这样就可以AC了。CF的前两题是思维,第三题可能会牵扯算法,但一定不会过于繁琐,多去读题目,不要被题目绕进去
|
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/26 16:33:00- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |