Lazycircle
Lazycircle
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Lazycircle的博客
全部文章
/ 题解
(共1篇)
题解 | #[NOIP2018]货币系统#
完全背包 #include<bits/stdc++.h> using namespace std; typedef long long ll; const long long inf = 1e18; ll dp[25010]; void solve(){ int n,ans=1;...
C++
动态规划
2024-05-05
0
165