我知我心
我知我心
全部文章
动态规划
acm(8)
c++(10)
c语言(29)
django(14)
html,css(9)
javascript(3)
linux(3)
python(30)
剑指offer(6)
工具(3)
数据库(2)
数据结构(12)
贪心算法(8)
归档
标签
去牛客网
登录
/
注册
我知我心的博客
全部文章
/ 动态规划
(共6篇)
聪明的kk
#include<stdio.h> #include<string.h> int dp[25][25]; // 定义二维数组存放矩阵 int max(int a,int b) { if(a>b) return a; else ...
2020-08-21
0
433
硬币找零
#include<stdio.h> #include<string.h> #define Min(a,b) (a < b ? a : b) int main() { int n, t; while (~scanf("%d%d",&am...
2020-08-21
0
437
最长公共子序列
方法1: -------------------------------------------------------------------------------- #include<stdio.h> #include<string.h> #include<std...
2020-08-21
0
419
01背包
方法1: -------------------------------------------------------------------------------- #include<stdio.h> int max(int a, int b) { if (a > b...
2020-08-21
0
557
完全背包
#include<stdio.h> #include<string.h> int max(int a, int b) { return (a > b ? a : b); } int main() { int m; scanf("%d&q...
2020-08-21
0
436
数塔
#include<stdio.h> int max(int a, int b) { return (a > b ? a : b); } int main() { int n; while (scanf("%d",&n) != EO...
2020-08-21
0
467