[动规、背包问题]
Probie Tao
这个作者很懒,什么都没留下…
展开
-
[HDU-5543]——01背包变形体
#include<cstdio> #include<algorithm> #include<iostream> #include<cstring> using namespace std; #define ll long long const int maxn = 4e3+50; struct node { ll l;// ll va...原创 2019-08-09 15:28:22 · 163 阅读 · 0 评论 -
着色方案——dp
考虑不同次数有多少个 不要考虑不同颜色有多少个 #include<bits/stdc++.h> #define ll long long using namespace std; int cnt[6];// 表示 可以使用i次的 颜色有多少个 ll vis[16][16][16][16][16][16]; int k; const int mod = 1e9+7; ll dfs(in...原创 2019-08-12 09:46:14 · 438 阅读 · 0 评论