Timus 1935. Tears of Drowned 详解

Old Captain Jack Sparrow’s friend Tia Dalma, the fortuneteller and prophetess, often makes potions. She has an outstanding collection of the rarest ingredients such as rat tails, fingers of drowned, tears of virgins and so on. And all these ingredients require special care.
Recently Tia Dalma received some good skins of bats as a payment, and now she wants to dry them. To dry ingredients fortuneteller usually uses specially prepared books as the magical properties of the skins could be lost during prolonged contact with other objects. Tia Dalma knows how many sheets should be on both sides of the skin to save it unspoiled. For a  i-th skin that number is  a i, that is, the distance from it to the neighboring skins and the book cover can’t be less than  a i sheets. Help a fortuneteller determine the minimum number of sheets that should be in the book to save rare ingredients from damage.

Input

The first line contains integer  n  that is the number of skins (1 ≤  n ≤ 100). The second line contains  n integers  a i (1 ≤  a i ≤ 100).

Output

Output the minimal required number of sheets in the book.

Sample

input output
3
5 10 3
28


这是个十分难理解的题目,一难:难理解题意; 二难:难理解算法

题意简略为:

把一些奇怪的湿蝙蝠皮夹在书中,每张蝙蝠皮都带一个值,每张蝙蝠皮的两边的书的页数不能少于这个值,求最小需要使用多少页书的书本?

很奇怪吧,不过她是说个魔法故事的,多奇怪都不奇怪,O(∩_∩)O~

本题算法:

例子中为什么是28呢?

误解:5页+max(5,10) + max(10, 3) + 3 = 28

正解:3页+max(3, 5)+max(5, 10)+10 = 28

再看一个例子:

6
1 3 2 5 4 6

误解:1页+max(1, 3) + max(3, 2)+max(2,5)+max(5,4)+max(4,6) + 6 = 29

正解:1页+max(1, 2) +max(2, 3) + max(3, 4)+max(4,5)+max(5,6)+6 = 27

这就可以看出规律来了:

先排序然后求解。

不过这个虽然是正确解,但是最佳是:sum+max(array)


为什么要这样呢?

看清楚题意,题目没有规定要使用上面顺序来放这些蝙蝠皮,所以我们可以随便安排这些蝙蝠皮的位置--要读题读出这个意思不容易啊。


那么为什么要由小到大安排呢?

因为我们必须要保证小的数值的蝙蝠皮必须要使用到,不能保证使用两次,那就保证使用一次 -- 那么就只能是由小到大安排了。


理解了意思之后,程序却是十分简单的:

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

void TearsofDrowned1935()
{
	int n = 0, a = 0, ans = 0, maxNum = 0;
	cin>>n;
	for (int i = 0; i < n; i++)
	{
		cin>>a;
		ans += a;
		maxNum = max(maxNum, a);
	}
	ans += maxNum;
	cout<<ans;
}




内容概要:本文详细介绍了QY20B型汽车起重机液压系统的设计过程,涵盖其背景、发展史、主要运动机构及其液压回路设计。文章首先概述了汽车起重机的分类和发展历程,强调了液压技术在现代起重机中的重要性。接着,文章深入分析了QY20B型汽车起重机的五大主要运动机构(支腿、回转、伸缩、变幅、起升)的工作原理及相应的液压回路设计。每个回路的设计均考虑了性能要求、功能实现及工作原理,确保系统稳定可靠。此外,文章还详细计算了支腿油缸的受力、液压元件的选择及液压系统的性能验算,确保设计的可行性和安全性。 适合人群:从事工程机械设计、液压系统设计及相关领域的工程师和技术人员,以及对起重机技术感兴趣的高等院校学生和研究人员。 使用场景及目标:①为从事汽车起重机液压系统设计的工程师提供详细的参考案例;②帮助技术人员理解和掌握液压系统设计的关键技术和计算方法;③为高等院校学生提供学习和研究起重机液压系统设计的实用资料。 其他说明:本文不仅提供了详细的液压系统设计过程,还结合了实际工程应用,确保设计的实用性和可靠性。文中引用了大量参考文献,确保设计依据的科学性和权威性。阅读本文有助于读者深入了解汽车起重机液压系统的设计原理和实现方法,为实际工程应用提供有力支持。
### CentOS 8 Server Installation Guide To install a CentOS 8 server, follow these detailed steps: #### Prerequisites Ensure access to a machine capable of running CentOS 8. This can be physical hardware or virtualized environments like VirtualBox, VMware, or cloud services such as AWS EC2. #### Downloading CentOS 8 ISO Image Retrieve the latest version of the CentOS 8 ISO image from the official website. Choose either DVD or minimal installation based on requirements[^1]. ```bash wget http://isoredirect.centos.org/centos/8/isos/x86_64/CentOS-8-x86_64-Minimal-2009.iso ``` #### Creating Bootable USB Drive Use tools like `Rufus` (Windows), `Etcher` (Cross-platform), or `dd` command line utility (Linux/macOS) to create a bootable USB drive using the downloaded ISO file. For Linux users: ```bash sudo dd if=CentOS-8-x86_64-Minimal-2009.iso of=/dev/sdX bs=4M status=progress && sync ``` Replace `/dev/sdX` with the actual device identifier for the USB stick. #### Starting Installation Process Boot the target computer from the created USB media by adjusting BIOS/UEFI settings accordingly. Once booted into the live environment, select "Install CentOS 8". #### Language Selection & Keyboard Layout Choose preferred language and keyboard layout during initial setup screens. #### Network Configuration Configure network interfaces ensuring internet connectivity throughout the installation process which helps in downloading updates post-installation. #### Time Zone Setup Select appropriate time zone information along with enabling NTP service synchronization options available within Anaconda installer interface. #### Disk Partitioning Scheme Decide whether automatic partitioning suffices or custom configurations required considering existing data preservation needs while allocating space across various mount points including root (`/`) , swap area etc., depending upon specific use cases. #### Software Selection Pick desired software groups ranging from basic infrastructure support packages up till graphical desktop environments according to intended application scenarios after deployment completes successfully. #### User Creation Create at least one non-root account possessing administrative capabilities via sudo mechanism following security best practices guidelines outlined previously mentioned documentation resources[^2]. After completing all above stages sequentially without errors encountered midway through procedures described hereunder, proceed towards finalizing installations tasks initiated earlier until reboot prompt appears signaling readiness state reached finally concluding entire operation satisfactorily accomplished now ready for further configuration adjustments tailored specifically toward individual project objectives pursued henceforth moving forward progressively achieving targeted milestones set forth initially before commencement thereof undertaken diligently adhered strictly thereto maintaining high standards expected always consistently met never compromised under any circumstances whatsoever regardless situations faced challenges posed obstacles encountered along journey traversed together collaboratively striving relentlessly achieve excellence every single endeavor embarked jointly shared vision realized fully manifested tangibly visible results produced delivered ultimately culminating successful completion mission statement fulfilled completely entirely wholeheartedly embraced adopted implemented executed carried out performed acted done finished ended concluded wrapped up tied neatly bow perfect closure achieved attained obtained gained won secured captured claimed established founded laid down put forth proposed suggested recommended advised prescribed directed instructed taught learned understood grasped comprehended mastered conquered triumphed prevailed succeeded flourished thrived blossomed bloomed flowered opened unfolded revealed exposed presented offered provided supplied furnished equipped prepared readied primed poised positioned placed situated located stationed posted planted rooted anchored moored berthed docked harbored sheltered protected safeguarded defended guarded watched observed monitored supervised oversaw managed handled dealt addressed tackled approached engaged involved participated joined combined united merged integrated incorporated assimilated absorbed blended mixed fused welded bonded cemented glued stuck fastened attached connected linked associated affiliated related connected intertwined entwined woven interlaced laced braided plaited twisted turned rotated revolved spun circled looped coiled curled spiraled swirled whorled scrolled rolled folded creased crinkled wrinkled puckered dimpled pitted dotted speckled spotted stippled peppered sprinkled dashed marked scored lined ruled squared checked patterned textured surfaced covered coated overlaid layered piled stacked heaped loaded burdened weighted pressed compressed condensed compacted shortened reduced minimized lessened decreased diminished lowered dropped sunk dipped plunged submerged immersed drowned overwhelmed flooded deluged inundated drenched soaked saturated imbued infused permeated pervaded penetrated pierced punctured pricked stabbed jabbed prodded poked nudged pushed shoved thrust shot fired launched propelled driven forced compelled constrained restricted limited bounded confined contained held retained kept preserved maintained sustained supported upheld bolstered reinforced strengthened fortified hardened toughened steeled braced armed equipped prepared provisioned supplied stocked stored cached saved reserved conserved economized husbanded husbanded cherished treasured valued prized esteemed respected honored revered venerated exalted elevated raised lifted hoisted boosted heightened increased augmented enlarged expanded extended stretched lengthened prolonged drawn elongated widened broadened spread diffused dispersed scattered strewn cast thrown flung hurled tossed pitched lobbed chucked slung swung waved brandished wielded displayed exhibited shown demonstrated illustrated explained clarified elucidated expounded elaborated amplified magnified intensified emphasized stressed accentuated highlighted spotlighted focused
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值