当前位置:网站首页>(POJ - 3186) treatments for the cows (interval DP)
(POJ - 3186) treatments for the cows (interval DP)
2022-07-06 16:23:00 【AC__ dream】
Topic link :3186 -- Treats for the Cows
The question : Here you are. n Numbers that have been arranged , Each time you can take out the leftmost number or the rightmost number , altogether n Take the next time . Suppose you i The number taken next is x, You can get i*x The value of . You need to plan the retrieval sequence , Maximize the total value obtained .
analysis : This problem is easy to be mistaken for greed , Select the minimum value that can be selected each time , Such greedy thinking is wrong .
The following is the analysis of the correct idea :
We set up dp[i][j] It means to take it out from the left i Take them out from the right j In all cases, the result is the maximum , This state can be transferred from two states , One is dp[i-1][j], That is, take it out from the left i-1 Take them out from the right j Circumstances , That is to say, the next number we want to take is i Number , The other is dp[i][j-1], That is, take it out from the left i Take them out from the right j-1 Circumstances , Then the next number we want to take is number n-j+1 Number. , It can only be transferred by these two situations , Then the state transition equation is easy to write , Namely
for(int i=0;i<=n;i++)
for(int j=0;i+j<=n;j++)
{
if(i>0) dp[i][j]=max(dp[i][j],dp[i-1][j]+a[i]*(i+j));// Currently selected No i Elements
if(j>0) dp[i][j]=max(dp[i][j],dp[i][j-1]+a[n-j+1]*(i+j));// Currently selected No n-j+1 Elements
}Attention should be paid to the boundary problem , Nothing else , The complete code is attached below :
#include<cstdio>
#include<iostream>
#include<cstring>
#include<vector>
#include<algorithm>
#include<map>
#include<cmath>
#include<queue>
using namespace std;
const int N=2003;
int dp[N][N];//dp[i][j] It means taking from the left i The number is taken from the right j The maximum number of
int a[N];
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
for(int i=0;i<=n;i++)
for(int j=0;i+j<=n;j++)
{
if(i>0) dp[i][j]=max(dp[i][j],dp[i-1][j]+a[i]*(i+j));// Currently selected No i Elements
if(j>0) dp[i][j]=max(dp[i][j],dp[i][j-1]+a[n-j+1]*(i+j));// Currently selected No n-j+1 Elements
}
int ans=0;
for(int i=0;i<=n;i++)
ans=max(ans,dp[i][n-i]);
printf("%d",ans);
return 0;
}边栏推荐
- Penetration test (4) -- detailed explanation of meterpreter command
- Opencv learning log 29 -- gamma correction
- Borg maze (bfs+ minimum spanning tree) (problem solving report)
- 2027. Minimum number of operations to convert strings
- Is the sanic asynchronous framework really so strong? Find truth in practice
- 921. Minimum additions to make parentheses valid
- Write web games in C language
- Install Jupiter notebook under Anaconda
- 1903. Maximum odd number in string
- 1689. Ten - the minimum number of binary numbers
猜你喜欢

本地可视化工具连接阿里云centOS服务器的redis

pytorch提取骨架(可微)

Configuration du cadre flask loguru log Library

QT实现窗口渐变消失QPropertyAnimation+进度条

读取和保存zarr文件

Write web games in C language

Installation and configuration of MariaDB

Pytorch extract skeleton (differentiable)

1605. Sum the feasible matrix for a given row and column

Browser print margin, default / borderless, full 1 page A4
随机推荐
QT realizes window topping, topping state switching, and multi window topping priority relationship
日期加1天
7-1 understand everything (20 points)
Vs2019 initial use
Data storage in memory & loading into memory to make the program run
1855. Maximum distance of subscript alignment
Advancedinstaller安装包自定义操作打开文件
Codeforces Round #797 (Div. 3)无F
Flask框架配置loguru日志库
Codeforces round 797 (Div. 3) no f
300th weekly match - leetcode
树莓派4B安装opencv3.4.0
Local visualization tools are connected to redis of Alibaba cloud CentOS server
Pytorch extract skeleton (differentiable)
Codeforces Round #798 (Div. 2)A~D
Openwrt build Hello ipk
1689. Ten - the minimum number of binary numbers
Study notes of Tutu - process
Codeforces Round #803 (Div. 2)A~C
QT实现圆角窗口