CodeForces 1195C Basketball Exercise (线性DP)

简介: CodeForces 1195C Basketball Exercise (线性DP)

CodeForces 1195C Basketball Exercise (线性DP)

传送门

思路:

一眼的dp

dp[i] [j]表示选到第i列时第j行的身高之和(j=0,1)

答案就是max(dp[n] [0],dp[n] [1]);

划分界限为这一列是否选,不选的话从上一列的同一行转移,选的话从上一列的不同行转移。

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define x first 
#define y second 
const int maxn=1e5+10;
ll dp[maxn][2];
pair<ll,ll>p[maxn];
int main(){
  int n;cin>>n;
  for(int i=1;i<=n;i++) cin>>p[i].x;
  for(int i=1;i<=n;i++) cin>>p[i].y;
  dp[1][0]=p[1].x;dp[1][1]=p[1].y;
  for(int i=2;i<=n;i++){
    dp[i][0]=max(dp[i-1][0],dp[i-1][1]+p[i].x);
    dp[i][1]=max(dp[i-1][1],dp[i-1][0]+p[i].y);
  }
  cout<<max(dp[n][0],dp[n][1])<<endl;
  return 0;
} 


目录
相关文章
|
7月前
|
算法
【随想】每日两题Day.9
【随想】每日两题
38 1
|
7月前
|
算法
【随想】每日两题Day.1
【随想】每日两题Day.1
39 0
|
7月前
【随想】每日两题Day.11
随想】每日两题Day.11
35 0
|
7月前
【随想】每日两题Day.12
【随想】每日两题Day.12
32 0
|
7月前
|
索引
【随想】每日两题Day.7
【随想】每日两题
32 0
|
7月前
【随想】每日两题Day.22
【随想】每日两题Day.22
39 0
|
7月前
【随想】每日两题Day.18
【随想】每日两题Day.18
45 0
|
7月前
|
数据安全/隐私保护
【随想】每日两题Day.14
【随想】每日两题Day.14
36 0
|
7月前
【随想】每日两题Day.19
【随想】每日两题Day.19
43 0
|
7月前
【随想】每日两题Day.17
【随想】每日两题Day.17
45 0

热门文章

最新文章