摘要: 1 #include 2 #include 3 using namespace std; 4 int a[20],flag[20][20],s[20][20]; 5 void dfs(int l,int r) 6 { 7 if(l==r) 8 { 9 printf("%d",l); 10 return ; 11 } 1... 阅读全文
posted @ 2017-09-21 20:42 Wally的博客 阅读(190) 评论(0) 推荐(0) 编辑