动态规划 DP

Posted third2333

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态规划 DP相关的知识,希望对你有一定的参考价值。

动态规划 DP
我们用f[ i ] 表示从 i 点出发到达终点的最多能休息的时间

然后我们发现 状态转移方程
f[ i ] = f[ i+1 ] +1 ; 当该点 并没有工作计划时
f[ i ] = max(f[ i+len ],f[ i ]); 当该点 有工作计划时 一个或若干个

 

 1 #include <bits/stdc++.h> 
 2 #define For(i,j,k) for(int i=j;i<=k;i++) 
 3 using namespace std ; 
 4 
 5 const int N = 10011 ; 
 6 int n,k,p,len;  
 7 int f[N] ;  
 8 vector <int> v[N] ; 
 9 vector <int> :: iterator it ; 
10 
11 inline int read() 
12 {
13     int x = 0 , f = 1 ; 
14     char ch = getchar() ; 
15     while(ch<0||ch>9) { if(ch==-) f = -1 ; ch = getchar() ; } 
16     while(ch>=0&&ch<=9) { x = x * 10+ch-48 ; ch = getchar() ; } 
17     return x * f ; 
18 }
19 
20 int main() 
21 {
22     n = read() ; k = read() ; 
23     For(i,1,k)  {
24         p = read() ;   len = read() ; 
25         v[ p ].push_back( len ) ; 
26     }
27     f[ n+1 ] = 0 ; 
28     for(int i=n;i>=1;i--)    {
29         if( v[ i ].empty() ) 
30             f[ i ] = f[ i+1 ] + 1 ; 
31         else 
32             for(it=v[ i ].begin();it!=v[ i ].end();it++) {
33                 len = *it ; 
34                 f[ i ] = max( f[ i ],f[ i+len ] ) ; 
35              } 
36     }
37     printf("%d\n",f[ 1 ]) ; 
38     return 0 ; 
39 }

 

以上是关于动态规划 DP的主要内容,如果未能解决你的问题,请参考以下文章

51nod 1021 石子归并 (动态规划 简单代码)

动态规划算法(Dynamic Programming,简称 DP)

动态规划_计数类dp_数位统计dp_状态压缩dp_树形dp_记忆化搜索

动态规划-数位dp

[程序员代码面试指南]递归和动态规划-最长公共子串问题(DP,LCST)

程序员算法基础——动态规划