| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 数据结构与算法 -> 北林oj-算法设计与分析-Removing the Wall(C++,思路+代码) -> 正文阅读 |
|
[数据结构与算法]北林oj-算法设计与分析-Removing the Wall(C++,思路+代码) |
描述 There is a wall in Tom's garden, which is builded by N different bricks. Bricks may have different height, but their width are the same. For example, when N is 7, and H=[1,2,6,1,1,7,1], this wall will be look like: One day, Tom bought a new car and he wants to park it in his garden. So he needs to remove some parts of the wall. In order to reduce the cost, the sum of height of the removing part should be as low as possible. 输入 Each test case starts with two integers N, K (1<=N<=1*10^3,1<=K<=N). n means this wall is builded by N different bricks, and K means the width of the car. The next line will be n integers H1,H2,..,Hn(1<=Hi<=100), representing the height of the N bricks. The input will be terminated at the end of file (EOF). 输出 For each test?case, you must print an integer M which means removing from the Mth brick. If there is more than one position, print the most left one. 输入样例 1? 7 3 1 2 6 1 1 7 1 输出样例 1 3 //注意这里有一个隐藏的换行符,输出的时候格式注意!! 提示 In the sample, the sum of the numbers of the 3rd, 4th, 5th bricks is 8, which is the lowest, so the wall should be removed from the 3rd position. 思路: 题目翻译一下就是车宽度是多少,就有多宽的墙全被拆除,问最少拆几块。 数据的存储格式使用vector,因为数组不支持长度可变的变量。 这个题可以使用快慢指针。指针的跨度就是车宽k,注意数组如果是从0开始使用的,那么也要从0开始计数。两个指针中间的所有数值构成一个块,这个块里的所有值加起来就是这次要拆的砖块数量。
题目乍一看是暴力算法,每次这个块向右移动一位就要重新算一次块内的值,但是细想一下并不用每次都重新计算,这也是这个题可以优化的地方——仅使用循环计算一次当前的值,后面的值可以这样做:fast后移一位,当前总和test加上fast的值,然后减去slow的值,slow再后移一位,直至fast到了数组长度-1的位置。(-1,因为后面还要fast++,不-1会溢出) 设置计算最小数量的值mini = 30000(数尽量大,不大会过不了)按这样每次计算好test以后,和现在的mini比大小,如果比mimi小,就记录mini = test,同时记录slow所指向的位置 + 1用于输出。 可以思考一个问题:为什么有的使用双指针的题就不能这么计算,而是每次都要重新for循环计算块内的值,而这个题可以只循环一次? ——————————分割线—————————— 答案是这个题的块的长度不变,十分“标准”:fast和slow是在一个循环体内执行的,而且每次只移动一位,所以进行简单的加和相减就可以了。 代码如下(有注释):
|
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
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 12:27:34- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |