当前位置:网站首页>(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;
}
边栏推荐
- 1013. Divide the array into three parts equal to and
- (POJ - 3258) River hopper (two points)
- 1605. Sum the feasible matrix for a given row and column
- pytorch提取骨架(可微)
- QT implementation fillet window
- Discussion on QWidget code setting style sheet
- Truck History
- 力扣:第81场双周赛
- 1903. Maximum odd number in string
- Codeforces Round #798 (Div. 2)A~D
猜你喜欢
Configuration du cadre flask loguru log Library
Browser print margin, default / borderless, full 1 page A4
D - function (HDU - 6546) girls' competition
Share an example of running dash application in raspberry pie.
Advancedinstaller安装包自定义操作打开文件
树莓派4B64位系统安装miniconda(折腾了几天终于解决)
2027. Minimum number of operations to convert strings
顺丰科技智慧物流校园技术挑战赛(无t4)
pytorch提取骨架(可微)
“鬼鬼祟祟的”新小行星将在本周安全掠过地球:如何观看
随机推荐
JS call camera
Analysis of protobuf format of real-time barrage and historical barrage at station B
Installation and configuration of MariaDB
969. Pancake sorting
Alice and Bob (2021 Niuke summer multi school training camp 1)
Some problems encountered in installing pytorch in windows11 CONDA
AcWing:第56场周赛
QT simulates mouse events and realizes clicking, double clicking, moving and dragging
Pyside6 signal, slot
Vs2019 initial use
1005. Maximized array sum after K negations
Raspberry pie csi/usb camera uses mjpg to realize web camera monitoring
Summary of FTP function implemented by qnetworkaccessmanager
(POJ - 3685) matrix (two sets and two parts)
指定格式时间,月份天数前补零
300th weekly match - leetcode
Calculate the time difference
Codeforces Round #802(Div. 2)A~D
OneForAll安装使用
The concept of C language array