完全背包
甦萌
这个作者很懒,什么都没留下…
展开
-
hdu 1114 完全背包
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=1114 完全背包 模板题 #include<bits/stdc++.h> using namespace std; #define ll long long int const int INF = 0x3f3f3f3f; const int mod = 998244353; int ...原创 2019-02-17 18:36:01 · 177 阅读 · 1 评论 -
hdu 1059 Dividing 完全背包
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=1059 完全背包 用二进制转化下 任何就可以变成01背包来做 具体完全背包看这个 https://blog.csdn.net/lanyanzhiji123asd/article/details/87621636 #include<bits/stdc++.h> using n...原创 2019-02-18 15:26:04 · 106 阅读 · 0 评论