TCO14 2C L2: CliqueGraph,graph theory, clique
称号:http://community.topcoder.com/stat?c=problem_statement&pm=13251&rd=16017
參考:http://apps.topcoder.com/wiki/display/tc/TCO+2014+Round+2C
假设用先计算出每条边,用邻接矩阵来表示图,然后用BFS或 Floyd-Warshall算法来计算距离的话。时间复杂度是O(N^3),会超时。依据题名的提示知要利用clique graph的性质来做。基本思想是在BFS的时候将一个clique看成一个总体。一旦訪问到clique中的一个点,则这个clique中全部点的距离都能够得到。算法描写叙述例如以下
for each source vertex s:
mark all vertices and all cliques as unvisited
start BFS from s
when processing a vertex v during the BFS:
for each unvisited clique C that contains v:
mark C as visited
use edges in C to discover new vertices
代码:
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <iostream>
#include <sstream>
#include <iomanip> #include <bitset>
#include <string>
#include <vector>
#include <stack>
#include <deque>
#include <queue>
#include <set>
#include <map> #include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <cstring>
#include <ctime>
#include <climits>
using namespace std; #define CHECKTIME() printf("%.2lf\n", (double)clock() / CLOCKS_PER_SEC)
typedef pair<int, int> pii;
typedef long long llong;
typedef pair<llong, llong> pll;
#define mkp make_pair /*************** Program Begin **********************/
bool visited_vertex[5001];
bool visited_clique[5001]; class CliqueGraph {
public:
long long calcSum(int N, vector <int> V, vector <int> sizes) {
long long res = 0;
vector <int> S(sizes.size() + 1);
S[0] = 0;
for (int i = 0; i < sizes.size(); i++) {
S[i + 1] += S[i] + sizes[i];
}
vector <vector<int>> cliques(sizes.size()); // clique i 包括的点
vector <vector<int>> vcliques(N); // 包括点v的cliques
for (int i = 0; i < sizes.size(); i++) {
for (int j = S[i]; j < S[i + 1]; j++) {
cliques[i].push_back(V[j]);
vcliques[ V[j] ].push_back(i);
}
} for (int src = 0; src < N; src++) {
vector <int> D(N, 123456789);
D[src] = 0;
memset(visited_vertex, 0, sizeof(visited_vertex));
memset(visited_clique, 0, sizeof(visited_clique));
queue <int> Q;
Q.push(src);
visited_vertex[src] = true;
while (!Q.empty()) {
int v = Q.front();
Q.pop();
// 更新全部包括v的cliques中的全部点
for (int i = 0; i < vcliques[v].size(); i++) {
int c = vcliques[v][i]; // 包括v的cliques
if (visited_clique[c]) {
continue;
}
visited_clique[c] = true;
for (int j = 0; j < cliques[c].size(); j++) {
int u = cliques[c][j]; // clique c z中的的点
if (visited_vertex[u]) {
continue;
}
visited_vertex[u] = true;
D[u] = D[v] + 1;
Q.push(u);
}
}
}
for (int i = 0; i < N; i++) {
res += D[i];
}
}
return res / 2;
};
}; /************** Program End ************************/
版权声明:本文博主原创文章,博客,未经同意不得转载。
TCO14 2C L2: CliqueGraph,graph theory, clique的更多相关文章
- The Beginning of the Graph Theory
The Beginning of the Graph Theory 是的,这不是一道题.最近数论刷的实在是太多了,我要开始我的图论与树的假期生活了. 祝愿我吧??!ShuraK...... poj18 ...
- HDU6029 Graph Theory 2017-05-07 19:04 40人阅读 评论(0) 收藏
Graph Theory Time Limit: 2000/1000 M ...
- Codeforces 1109D. Sasha and Interesting Fact from Graph Theory
Codeforces 1109D. Sasha and Interesting Fact from Graph Theory 解题思路: 这题我根本不会做,是周指导带飞我. 首先对于当前已经有 \(m ...
- 2018 Multi-University Training Contest 4 Problem L. Graph Theory Homework 【YY】
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6343 Problem L. Graph Theory Homework Time Limit: 2000 ...
- Graph Theory
Description Little Q loves playing with different kinds of graphs very much. One day he thought abou ...
- 2017中国大学生程序设计竞赛 - 女生专场(Graph Theory)
Graph Theory Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)To ...
- ACM学习历程—NPU1045 2015年陕西省程序设计竞赛网络预赛(热身赛)C题 Graph Theory(递推 && 组合数学 && 大数)
Description In graph theory, a matching or independent edge set in a graph G = (V , E) is a set of e ...
- 图论介绍(Graph Theory)
1 图论概述 1.1 发展历史 第一阶段: 1736:欧拉发表首篇关于图论的文章,研究了哥尼斯堡七桥问题,被称为图论之父 1750:提出了拓扑学的第一个定理,多面体欧拉公式:V-E+F=2 第二阶段( ...
- Introduction to graph theory 图论/脑网络基础
Source: Connected Brain Figure above: Bullmore E, Sporns O. Complex brain networks: graph theoretica ...
随机推荐
- Android的ViewAnimator而它的子类ViewSwitcher-android学习之旅(三十三)
ViewAnimator遗传FrameLayout,重合使用多个组件.可以增加部件数量,然后会有时间切换动画. ViewAnimator及其子类的继承关系 ViewAnimator经常使用属性 Vie ...
- Autofac 入门
Autofac 入门文档 原文链接:http://docs.autofac.org/en/latest/getting-started/index.html 在程序中使用Autofac的基本模式是: ...
- C# List使用District去重复数据
class ListDistinctDemo { static void Main(string[] args) { List<Person> personList = new List& ...
- QUIC简要
QUIC.即Quick UDP Internet Connection,类似于SPDY,相同也是由Google公司在现有已存协议之上进行了扩展设计,而旨在降低网络延迟.之前我曾介绍过SPDY的相关信息 ...
- GitLab版本管理(转)
GitLab是利用 Ruby on Rails 一个开源的版本管理系统,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目.它拥有与Github类似的功能,能够浏览源代码,管理 ...
- JCombox
A component that combines a button or editable field and a drop-down list. The user can select a val ...
- UVA11294-Wedding(2-SAT)
option=com_onlinejudge&Itemid=8&page=show_problem&problem=2269">题目链接 题意:有n对夫妻參加一 ...
- 矩阵求逆c++达到
高斯消元法能够用来找出一个可逆矩阵的逆矩阵.设A 为一个N * N的矩阵,其逆矩阵可被两个分块矩阵表示出来.将一个N * N单位矩阵 放在A 的右手边,形成一个N * 2N的分块矩阵B = [A,I] ...
- Integer比较
/** * @time 2014-06-25 * @author Cao HaiCheng * */ public class demo { public static void main(Strin ...
- Codeforces 459E Pashmak and Graph(dp+贪婪)
题目链接:Codeforces 459E Pashmak and Graph 题目大意:给定一张有向图,每条边有它的权值,要求选定一条路线,保证所经过的边权值严格递增,输出最长路径. 解题思路:将边依 ...