会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
SaltyFishQF
看漫山红遍,层林尽染
博客园
首页
新随笔
管理
2019年3月16日
蓝桥杯 algo122 未名湖的烦恼 递归
摘要: #include using namespace std; int m, n, ans; void solve(int m, int n, int cnt) { if (m == 0 && n == 0) { ans++; return; } if (cnt > 0 && n > 0) solve(m, n-1, cnt...
阅读全文
posted @ 2019-03-16 21:34 SaltyFishQF
阅读(158)
评论(0)
推荐(0)
编辑
公告