IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 【数据结构与算法暑期实习】PTA Hand-made Cream(动态规划) -> 正文阅读

[数据结构与算法]【数据结构与算法暑期实习】PTA Hand-made Cream(动态规划)

一、题目

Suppose you are a baker planning to bake some hand-made cream breads.

To bake a cream bread, we need to use one slice of bread and one kind of cream. Each hand-made cream bread has a taste score to describe how delicious it is, which is obtained by multiplying the taste score for bread and the taste score for cream. (The taste scores could be negative, howerver, two negative tast scores can still produce delicious cream bread.)

The bread and cream are stored separately.

The constraint is that you need to examine the breads in a given order, and for each piece of bread, you have to decide immediately (without looking at the remaining breads) whether you would like to take it.

After you are finished with breads, you will take the same amount of cream in the same manner. The breads and creams you take will be paired in the same order as you take them.

Given N taste scores for bread and M taste scores for cream, you are supposed to calculate the maximum total taste scores for all hand-made cream bread.

Input Specification:
Each input file contains one test case. For each case, the first line contains two integers N and M (1≤N,M≤1e3 ), which are the numbers of bread and cream, respectively.
The second line gives N taste scores for bread.
The third line gives M taste scores for cream.
The taste scores are integers in [?1e3 ,1e3 ].

All the numbers in a line are separated by a space.

Output Specification:
Print in a line the maximum total taste score.

Sample Input:
3 4
-1 10 8
10 8 11 9

Sample Output:
188

Hint:
The maximum total taste score for the sample case is 10×10+8×11=188.

在这里插入图片描述

二、思路

动态规划。考察从第一个面包breadscore[1]选到第i块面包breadscore[i],从第一个奶油creamscore[1]选到第j个奶油creamscore[j],乘积最大的搭配finalscore[i][j]。

如果第 i 块面包和第j个奶油搭配,则 finalscore[i][j] = finalscore[i-1][j-1]+ breadscore[i] * creamscore[j],如果不搭配,那么就回到上一个面包 finalscore[i - 1][j],或上一个奶油 finalscore[i][j - 1] 的结论。

三、代码

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
using namespace std;
#define maxsize 1001


/* 三者比较最大值 */
int Max(int n1, int n2, int n3)
{
    int max;
    if (n1 >= n2 && n1 >= n3)
        max = n1;
    else if (n2 >= n1 && n2 >= n3)
        max = n2;
    else
        max = n3;
    return max;
}


/* 两者比较最大值 */
int max(int x, int y)
{
    if (x > y) return x;
    else return y;
}


int n,m,ans;
int breadscore[maxsize], creamscore[maxsize];
int finalscore[maxsize][maxsize];

int main() {
    scanf_s("%d %d",&n,&m);//输入面包和奶油的个数
    for (int i = 1; i <= n; i++) {
        scanf_s("%d",&breadscore[i]);
    }
    for (int i = 1; i <= m; i++) {
        scanf_s("%d", &creamscore[i]);
    }

    /* 如果第i块面包和第j个奶油搭配,则finalscore[i][j] = finalscore[i-1][j-1]+ breadscore[i]* creamscore[j],
       如果不搭配,那么就回到上一个面包或上一个奶油的结论。*/
    for (int i = 1; i <= n;i++) {
        for (int j = 1; j <= m; j++) {
            finalscore[i][j] = Max(finalscore[i-1][j-1]+ breadscore[i]* creamscore[j], finalscore[i - 1][j], finalscore[i][j - 1]);
            ans = max(ans, finalscore[i][j]);
        }
    }

    printf("%d",ans);
    return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-07-17 16:48:39  更:2022-07-17 16:51:48 
 
开发: 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/25 23:16:50-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码