下载源码包 1.1 subversion 源码包 http://subversion.apache.org/download/ 1.2下载sqlite-amalgamation ? ? ? ? 此处用的版本?subversion-1.8.9.tar.gz? ? ? ? ? sqlite-amalgamation-201408010140.z...
分类:
系统相关 时间:
2014-08-05 19:39:50
阅读次数:
329
Linux搭建SVN 服务器 作者: 沈小然????日期:2014年 8月 5日 1????????? 安装SVN 官网下载:http://subversion.apache.org/packages.html SVN客户端:TortoiseSVN,官网下载:http://tortoisesvn....
分类:
系统相关 时间:
2014-08-05 19:39:30
阅读次数:
260
Problem B: The Largest Clique
Given a directed graph G, consider the following transformation. First, create a new graph T(G) to have the same vertex set as G. Create a directed edge between two ve...
分类:
其他好文 时间:
2014-08-05 19:26:40
阅读次数:
365
EDGE是英文Enhanced Data Rate for GSM Evolution 的缩写,即增强型数据速率GSM演进技术。EDGE是一种从GSM到3G的过渡技术,它主要是在GSM系统中采用了一种新的调制方法,即最先进的多时隙操 作和8PSK调制技术。由于8PSK可将现有GSM网络采用的GMSK...
分类:
其他好文 时间:
2014-08-05 18:23:59
阅读次数:
241
一、SVN 中 clean up 的功能 ? ? ?当Subversion改变你的工作拷贝(或是.svn中的任何信息),它会尽可能的小心,在修改任何事情之前,它把意图写到日志文件中去,然后执行 log文件中的命令,并且执行过程中在工作...
分类:
其他好文 时间:
2014-08-05 14:29:39
阅读次数:
201
DescriptionGreg has a weighed directed graph, consisting ofnvertices. In this graph any pair of distinct vertices has an edge between them in both dir...
分类:
其他好文 时间:
2014-08-04 13:30:27
阅读次数:
317
邻接矩阵:#include #include #include using namespace std;#define min(a,b) a s;void dfs(int u){ Edge t,tt; dfn[u]=low[u]=++tmpdfn,visit[u]=1; for(i...
分类:
其他好文 时间:
2014-08-03 15:07:56
阅读次数:
256
#yum install subversion#rpm -qa | grep subversionsubversion-1.6.11-10.el6_5.x86_64# rpm -ql subversion-1.6.11-10.el6_5.x86_64.../usr/share/doc/subvers...
分类:
其他好文 时间:
2014-08-03 14:58:25
阅读次数:
277
题目来源:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1256 一个完全单向的有向图,最少更改多少条边能够从1到N。把原有的边的权值设为0,换方向的边的权值设为1。简历邻接表。add_edge(u,v,0);add_edge(v,u,0);采用....
分类:
其他好文 时间:
2014-08-01 22:57:32
阅读次数:
204
题解:对于输入的边,我们首先按照速度从大到小排序,然后对于每一次询问,st end 两个城市,我们暴力枚举,
for(int i = 0; i
上马:
//187MS 300K
#include
#include
using namespace std;
#define MAX 205
#define INF 1<<30
int N,M,Q;
struct Edge
{
...
分类:
其他好文 时间:
2014-08-01 10:53:31
阅读次数:
204