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;
} 


目录
相关文章
|
8月前
codeforces 304A. Pythagorean Theorem II
给你一个n,计算出1 ≤ a ≤ b ≤ c ≤ n.使得由abc构成的三角形满足勾股定理,c为斜边。 没有简单的方法,直接爆力,但是要注意,有些abc满足勾股定理的表达式,但不一定是三角形,所以要判断一下,根据三角形三边的性质,两边之和大于第三边,两边之差小于第三边。
36 0
|
8月前
codeforces 327 A Ciel and Dancing
给你一串只有0和1的数字,然后对某一区间的数翻转1次(0变1 1变0),只翻转一次而且不能不翻转,然后让你计算最多可能出现多少个1。 这里要注意很多细节 比如全为1,要求必须翻转,这时候我们只要翻转一个1就可以了,对于其他情况,我们只要计算区间里面如果0多于1,将其翻转后计算1的总数,然后取最大值。
23 0
AtCoder Beginner Contest 221 E - LEQ(组合数学 树状数组)
AtCoder Beginner Contest 221 E - LEQ(组合数学 树状数组)
134 0
|
人工智能
codeforces455——A. Boredom(线性DP)
codeforces455——A. Boredom(线性DP)
103 0
codeforces455——A. Boredom(线性DP)
HDU-1097,A hard puzzle(快速幂)
HDU-1097,A hard puzzle(快速幂)
|
机器学习/深度学习 人工智能 网络架构
Codeforces 706B Interesting drink
B. Interesting drink time limit per test:2 seconds memory limit per test:256 megabytes input:standard input output:standard outp...
1144 0
|
人工智能
Codeforces 777C Alyona and Spreadsheet
C. Alyona and Spreadsheet time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard ...
1138 0
|
算法
poj-3660-cows contest(不懂待定)
Description N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest.
951 0

热门文章

最新文章