3.贪心-分糖果

问题描述

 There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the following requirements:

  1. Each child must have at least one candy.
  2. Children with a higher rating get more candies than their neighbors.

What is the minimum candies you must give?

翻译

有 N 个孩子站成一排。每个孩子都有一个评分值。你要按照以下要求给这些孩子发糖果:

1.每个孩子必须至少有一颗糖果。

 2.评分越高的孩子得到的糖果就越多。

你最少要给多少糖果?

思路

从左往右遍历一趟 如果右边>左边  右边糖果=左边+1

从右往左遍历一趟 如果左边>右边 左边糖果=右边+1,同时计算max(右边+1,当前糖果值)

ans[i-1]=max(ans[i-1],ans[i]+1);//从右往左,如果左边大于右边,左边+1

每个人初始糖果为1

代码

#define  _CRT_SECURE_NO_WARNINGS 1
#include <iostream>
#include <stdio.h>
#include <math.h>
#include <string>
#include <algorithm>
#include <stdlib.h>
#include <vector>
using namespace std;
//2 1 2 3 2 1 5 4
//2 1 2 3 2 1 2 1
//1 0 1 2 1 0 1 0
const int N = 1e4 + 10;
//核心思想,从左往右一趟右边与左边比较
//从右往左一趟左边与右边比较

int candy(int a[], int n)
{
	vector<int>ans(n,1);
	for (int i = 0; i < n-1; i++)
	{
		if (a[i+1] >a[i])
			ans[i+1]=ans[i]+1;//从左往右,如果右边大于左边,右边+1
	}
	int count = ans[n - 1];
	for (int i = n - 1; i >= 1; i--)
	{
		if (a[i-1] > a[i])
			ans[i-1]=max(ans[i-1],ans[i]+1);//从右往左,如果左边大于右边,左边+1
		count += ans[i-1];
	}
	return count;
}
int main()
{
	int n;
	cout << "Please enter the number of children :" << endl;
	cin >> n;
	cout << "Please enter the rating value of the children :" << endl;
	int* a = new int(n);
	for (int i = 0; i < n; i++)
	{
		cin >> a[i];
	}
	int ans = candy(a, n);
	cout << "The number of minimum candies I must give is " << ans << endl;
	return 0;
}

测试案例

运行结果

//2 1 2 3 2 1 5 4魅力值
//2 1 2 3 2 1 2 1糖果数量

时间复杂度分析

O(n)

速记

for (int i = 0; i < n-1; i++)
    {
        if (a[i+1] >a[i])
            ans[i+1]=ans[i]+1;//从左往右,如果右边大于左边,右边+1
    }
    int count = ans[n - 1];
    for (int i = n - 1; i >= 1; i--)
    {
        if (a[i-1] > a[i])
            ans[i-1]=max(ans[i-1],ans[i]+1);//从右往左,如果左边大于右边,左边+1
        count += ans[i-1];
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

熟人看不到

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值