2019年3月5日
摘要: #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; bool vis[20][20]; int dx[]={0,0,-1,1}; int dy[]={1,-1,0 阅读全文
posted @ 2019-03-05 16:53 Carits 阅读(270) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; int ans; void dfs(int x,int sum) { if(sum==10) { ans++; 阅读全文
posted @ 2019-03-05 16:39 Carits 阅读(499) 评论(0) 推荐(0) 编辑