信息学奥赛一本通T1290-采药 摘要:解题思路:典型01背包注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int N = 1e…… 题解列表 2024年04月28日 0 点赞 0 评论 70 浏览 评分:9.9
信息学奥赛一本通T1290-采药(01背包) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int MAX = 1001;int T, M;int t[MAX], …… 题解列表 2022年07月29日 0 点赞 0 评论 392 浏览 评分:7.3
采药(dp动态规划之 01背包问题) 摘要:```cpp #include #include #include using namespace std; const int MAX = 1001; int T, M;//采药时间,数…… 题解列表 2022年02月05日 0 点赞 0 评论 284 浏览 评分:9.9