摘要: #include #include using namespace std; int n,k,bb[8]={0},sum=0; char aa[8][8]; void dfs(int a,int b) { if(b>=n) { if(a==k) sum++; return; } for(int i=0... 阅读全文
posted @ 2016-05-23 11:31 |瑾诺学长| 阅读(559) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1088 阅读全文
posted @ 2016-05-21 19:34 |瑾诺学长| 阅读(137) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1154 阅读全文
posted @ 2016-05-21 14:39 |瑾诺学长| 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 初学dfs参考别人代码,如有雷同,见怪不怪。#include using namespace std; int aa[25][25]; int maxa=0; int step[25]={0},n; void dfs(int a,int b) { int t=b; step[a]=1; for(int i=0;i>n; for(int i=0;i>aa[i][j]; ... 阅读全文
posted @ 2016-05-20 20:12 |瑾诺学长| 阅读(182) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=3664 进行两轮选举,第一轮选前n进入第二轮,第二轮选最高 阅读全文
posted @ 2016-05-20 11:20 |瑾诺学长| 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Description n participants of << crazy tea party >> sit around the table. Each minute one pair of neighbors can change their places. Find the minimum 阅读全文
posted @ 2016-05-20 11:17 |瑾诺学长| 阅读(193) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=2299 阅读全文
posted @ 2016-05-20 10:58 |瑾诺学长| 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 题目:http://poj.org/problem?id=1804 大意:给你一串数字,排序。求出最少的交换次数 \ 我用归并做的 阅读全文
posted @ 2016-05-20 10:53 |瑾诺学长| 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://poj.org/problem?id=1979 阅读全文
posted @ 2016-05-20 10:41 |瑾诺学长| 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://poj.org/problem?id=2739 阅读全文
posted @ 2016-04-27 21:41 |瑾诺学长| 阅读(281) 评论(0) 推荐(0) 编辑