题目大意:
思路:基尔霍夫矩阵求生成树个数,不会。
但是可以暴力打表。(我才不会说我调试force调试了20分钟。。。
CODE(force.cc):
#include
#include
#include
#include
#define MAX 1000
using namespace std;
struct Edge{
int x,y;
Edge(...
分类:
其他好文 时间:
2014-11-19 18:53:47
阅读次数:
222
通信技术:1G 模拟制式 只能进行语音通话.2G GSM, CDMA 收发短信和邮件.2.5G GPRS, EDGE 访问wap网络数据.(图片, 壁纸, 文字信息) 3G WCDMA(联通), CDMA2000(电信), TD-SCDMA(移动) 发微博, 查看高清图片, 小电影. 3.5G H....
分类:
移动开发 时间:
2014-11-19 12:25:08
阅读次数:
166
图像边缘 —— 像素灰度值变换剧烈的点 You can easily notice that in an edge, the pixel intensity changes in a notorious way. A good way to expresschanges is by using de...
分类:
其他好文 时间:
2014-11-19 00:08:24
阅读次数:
308
最好的边缘检测子 Canny algorithm aims to satisfy three main criteria: Low error rate: Meaning a good detection of only existent edges. Good localization: The ...
分类:
其他好文 时间:
2014-11-19 00:02:06
阅读次数:
256
发掘图像边界 —— 一阶导数顶点不好求,可用二阶导数过零点来代替 Getting the first derivative of the intensity, we observed that an edge is characterized by a maximum, as it can be s...
分类:
其他好文 时间:
2014-11-18 23:55:21
阅读次数:
286
扩展图像边界: BORDER_CONSTANT: Pad the image with a constant value (i.e. black or BORDER_REPLICATE: The row or column at the very edge of the original is re...
分类:
其他好文 时间:
2014-11-18 23:44:20
阅读次数:
338
通信技术:1G 模拟制式 只能进行语音通话.2G GSM, CDMA 收发短信和邮件.2.5G GPRS, EDGE 访问wap网络数据.(图片, 壁纸, 文字信息) 3G WCDMA(联通), CDMA2000(电信), TD-SCDMA(移动) 发微博, 查看高清图片, 小电影. 3.5G H....
分类:
其他好文 时间:
2014-11-17 14:00:33
阅读次数:
154
UUID含义是通用唯一识别码 (Universally Unique Identifier),这 是一个软件建构的标准,也是被开源软件基金会 (Open Software Foundation, OSF) 的组织在分布式计算环境 (Distributed Computing Environment,...
分类:
编程语言 时间:
2014-11-17 12:08:57
阅读次数:
282
带你一步一步剖析经典图像边缘检测算法Canny Edge Detection,从高斯模糊到
梯度计算、边缘幅值与角度计算、非最大信号压制、双阈值选取边缘、边缘连接到
结果输出,完整代码实现。...
分类:
其他好文 时间:
2014-11-16 17:18:28
阅读次数:
321
简单的概率DP,求期望,逆推更好。#include #include #include #include #define N 100005using namespace std;double p[N];struct e{ int u,v; int next;}edge[1010];int head[...
分类:
其他好文 时间:
2014-11-16 10:41:07
阅读次数:
166