摘要: 1021. 货币系统 思路 完全背包求方案数,与01背包类似 #include <iostream> using namespace std; int n, m; const int N = 20, M = 3010; long long f[M]; int main() { cin >> n >> 阅读全文
posted @ 2023-02-15 21:58 nobodyL 阅读(23) 评论(0) 推荐(0)