PAT(甲级)2020年秋季考试 7-1 Panda and PP Milk

7-1 Panda and PP Milk (20分)

PAT(甲级)2020年秋季考试 7-1 Panda and PP Milk_第1张图片

PP milk (盆盆奶)is Pandas' favorite. They would line up to enjoy it as show in the picture. On the other hand, they could drink in peace only if they believe that the amount of PP milk is fairly distributed, that is, fatter panda can have more milk, and the ones with equal weight may have the same amount. Since they are lined up, each panda can only compare with its neighbor(s), and if it thinks this is unfair, the panda would fight with its neighbor.

Given that the minimum amount of milk a panda must drink is 200 ml. It is only when another bowl of milk is at least 100 ml more than its own that a panda can sense the difference.

Now given the weights of a line of pandas, your job is to help the breeder(饲养员)to decide the minimum total amount of milk that he/she must prepare, provided that the pandas are lined up in the given order.

Input Specification:

Each input file contains one test case. For each case, first a positive integer n (≤10​4​​) is given as the number of pandas. Then in the next line, n positive integers are given as the weights (in kg) of the pandas, each no more than 200. the numbers are separated by spaces.

Output Specification:

For each test case, print in a line the minimum total amount of milk that the breeder must prepare, to make sure that all the pandas can drink in peace.

Sample Input:

10
180 160 100 150 145 142 138 138 138 140`

Sample Output:

3000

Hint:

The distribution of milk is the following:

400 300 200 500 400 300 200 200 200 300

题目限制:

PAT(甲级)2020年秋季考试 7-1 Panda and PP Milk_第2张图片

题目大意:

给定N只熊猫的体重,每一只熊猫最少喝奶200ml,体重大的喝奶多,相差100ml熊猫就会察觉到和其他熊猫奶量的差距,现在要求你给出所有熊猫所需的最低奶量。

算法思路:

本人认为这是要求根据体重的分布,给出奶量变化趋势和体重一样的分布,求解方法就是,先对第一只熊猫的奶量设置为最小,然后后面的熊猫体重如果大于它,就加100,相等,则和它一样,否则就直接出现下降趋势直接赋值为200,但是由于这样有可能会导致前面的奶量分布出现和体重分布不一致的情况,那么就需要进行调整,主要调整两种类型,第一种就是当前熊猫体重比后面的重,但是奶量却和它相等,就需要给它加100(不会出现比后面少的可能,因为初始状态下
,前面的熊猫的奶量原先是比后面多的,是因为后面的熊猫进行了调整,加了100,才会导致和它相等,在原先存在差距的情况只会相等,不会超过) 。第二种类型就是当前熊猫体重和后面的一样,但是喝的奶量却比后面的少(同样是因为后面的熊猫调整过了,而且也不存在体重一样喝的奶会一样的情况,因为到达当前的j的时候,j+1一定调整过),那么对于第一次出现j+1为波峰的时候,也就是当期出现下降趋势,并且也没有违背右边的熊猫的奶量关系的时候就调整完毕了。
最后统计所有奶量然后输出即可。

注意点:

  • 1、仔细揣摩那两个需要调整的类型和等号的取值,之前让我最后一个测试点没有过。

提交结果:

PAT(甲级)2020年秋季考试 7-1 Panda and PP Milk_第3张图片

AC代码:

#include

using namespace std;

/*
题目大意:给定N只熊猫的体重,每一只熊猫最少喝奶200ml,体重大的喝奶多,相差100ml熊猫就会察觉到和其他熊猫
奶量的差距,现在要求你给出所有熊猫所需的最低奶量。
算法思路:本人认为这是要求根据体重的分布,给出奶量变化趋势和体重一样的分布,求解方法就是,先对第一只熊猫
的奶量设置为最小,然后后面的熊猫体重如果大于它,就加100,相等,则和它一样,否则就直接出现下降趋势直接赋值
为200,但是由于这样有可能会导致前面的奶量分布出现和体重分布不一致的情况,那么就需要进行调整,主要调整两种
类型,第一种就是当前熊猫体重比后面的重,但是奶量却和它相等,就需要给它加100(不会出现比后面少的可能,因为初始状态下
,前面的熊猫的奶量原先是比后面多的,是因为后面的熊猫进行了调整,加了100,才会导致和它相等,在原先存在差距的情况只会相等,不会超过) 。
第二种类型就是当前熊猫体重和后面的一样,但是喝的奶量却比后面的少(同样是因为后面的熊猫调整过了,而且也不存在体重一样喝的奶会一样的情况,因为
到达当前的j的时候,j+1一定调整过),那么对于第一次出现j+1为波峰的时候,也就是当期出现下降趋势,并且也没有违背右边的熊猫的奶量关系的时候就调整完毕了。
最后统计所有奶量然后输出即可。 
*/

int main(){
    int N;
    scanf("%d",&N);
    int weight[N];
    for(int i=0;iweight[i-1]){
            milk[i] = milk[i-1] + 100;
        }else if(weight[i]==weight[i-1]){
            milk[i] = milk[i-1];
        }else{
            // 前面的奶量为200了,并且这里还是下降趋势 
            // 向前搜寻波峰,并且每一个奶量加100
            milk[i] = 200;
            for(int j=i-1;j>=0;--j){// 每一个需要调整奶量的熊猫 
                if(weight[j+1]milk[j]) {
                    // 当前的熊猫和后面的一样重,但是喝的奶比它少,需要调整 
                    milk[j] = milk[j] + 100;//每一个奶量加100 
                }else{
                    // j+1为波峰,直接退出即可,无需再调整,因为调整后就不在是最低奶量了 
                    break; 
                }
            } 
        }
    } 
    int total = 0;
    for(int i=0;i

你可能感兴趣的:(算法-数据结构,c++)