ops1211
ops1211
全部文章
dp
2019寒假ap协会第二周(2)
ap协会第二周(1)
csdn用法(3)
stl(1)
大数运算(1)
寒假备战蓝桥杯(5)
尺取法(2)
带权并查集(1)
并查集(1)
思维(1)
数论(7)
未归档(31)
模板(10)
石油大个人训练赛题目集(1)
蓝桥备战模板(1)
题解(3)
归档
标签
去牛客网
登录
/
注册
ops1211的博客
全部文章
/ dp
(共4篇)
poj2392 Space Elevator(多重背包转化为完全背包与01背包)
#include<iostream> #include<algorithm> #include<stdio.h> using namespace std; struct node{ int a,b,c; }a[430]; int dp[40500]; boo...
2019-05-10
0
601
饭卡 HDU - 2546
一维数组01背包模板 #include<iostream> #include<string.h> #include<algorithm> using namespace std; int a[1100];int m;int dp[1009]; int main...
2019-05-03
0
492
uva10003(区间dp)
#include<iostream> #include<string.h> #define inf 0x3f3f3f3f using namespace std; int a[100];int r; int dp[1003][1003]; int main(){ int ...
2019-05-02
0
424
uva10003(区间dp)
#include<iostream> #include<string.h> #define inf 0x3f3f3f3f using namespace std; int a[100];int r; int dp[1003][1003]; int main(){ int ...
2019-05-02
0
457