[Codeforces 448C]Painting Fence

本文介绍了一种解决围栏涂色问题的方法。通过分治思想,在$[1,n]$区间内找出最低高度进行水平涂色,然后递归地解决分割出的子问题。最终求得完全涂色所需的最少笔画数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

Bizon the Champion isn't just attentive, he also is very hardworking.

Bizon the Champion decided to paint his old fence his favorite color, orange. The fence is represented as n vertical planks, put in a row. Adjacent planks have no gap between them. The planks are numbered from the left to the right starting from one, the i-th plank has the width of 1 meter and the height of ai meters.

Bizon the Champion bought a brush in the shop, the brush's width is 1 meter. He can make vertical and horizontal strokes with the brush. During a stroke the brush's full surface must touch the fence at all the time (see the samples for the better understanding). What minimum number of strokes should Bizon the Champion do to fully paint the fence? Note that you are allowed to paint the same area of the fence multiple times.

Input

The first line contains integer n (1 ≤ n ≤ 5000) — the number of fence planks. The second line contains n space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 109).

Output

Print a single integer — the minimum number of strokes needed to paint the whole fence.

Sample Input

5
2 2 1 2 1

Sample Output

3

HINT

In the first sample you need to paint the fence in three strokes with the brush: the first stroke goes on height 1 horizontally along all the planks. The second stroke goes on height 2 horizontally and paints the first and second planks and the third stroke (it can be horizontal and vertical) finishes painting the fourth plank.

题解

我们在$[1,n]$区间内,如果要横着涂,那么必定要从最底下往上涂$min(h_1,h_2,...h_n)$次,那么又会将$[1,n]$的序列分成多个子局面。

对于每个子局面,我们分治,单独求解,求解函数递归实现。复杂度$O(n^2)$。

 1 //It is made by Awson on 2017.10.9
 2 #include <map>
 3 #include <set>
 4 #include <cmath>
 5 #include <ctime>
 6 #include <queue>
 7 #include <stack>
 8 #include <vector>
 9 #include <cstdio>
10 #include <string>
11 #include <cstdlib>
12 #include <cstring>
13 #include <iostream>
14 #include <algorithm>
15 #define query QUERY
16 #define LL long long
17 #define Max(a, b) ((a) > (b) ? (a) : (b))
18 #define Min(a, b) ((a) < (b) ? (a) : (b))
19 using namespace std;
20 const int N = 5000;
21 
22 int n, a[N+5];
23 
24 int doit(int l, int r, int base) {
25     if (l == r) return 1;
26     int high = 2e9;
27     for (int i = l; i <= r;  i++)
28         high = Min(high, a[i]);
29     int ans = high-base;
30     for (int i = l; i <= r; i++)
31         if (a[i] != high) {
32             int j;
33             for (j = i; j <= r && a[j+1] > high; j++);
34             ans += doit(i, j, high);
35             i = j+1;
36     }
37     return Min(ans, r-l+1);
38 }
39 void work() {
40     scanf("%d", &n);
41     for (int i = 1; i <= n ; i++) scanf("%d", &a[i]);
42     printf("%d\n", doit(1, n, 0));
43 }
44 int main() {
45     work();
46     return 0;
47 }

 

转载于:https://www.cnblogs.com/NaVi-Awson/p/7643011.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值