摘要: #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; const int N=10; int n; int path[N]; // 0表示没有放数, 1-n表示放的 阅读全文
posted @ 2022-10-28 09:02 努力、奋斗啊 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 题解1: // 指数型枚举 // 题意是给出得数字都有两种选择,选或者不选 // 画出递归树理解题意 #include<iostream> #include<cstring> #include<algorithm> using namespace std; const int N=16; int n 阅读全文
posted @ 2022-10-28 08:35 努力、奋斗啊 阅读(22) 评论(0) 推荐(0) 编辑