首页 > 其他分享 >HDU 5876 Sparse Graph

HDU 5876 Sparse Graph

时间:2022-11-09 19:37:48浏览次数:40  
标签:sz HDU ft int Graph dis 5876 include define


Problem Description


complement of a graph  G is a graph  H on the same vertices such that two distinct vertices of  H are adjacent if and only if they are  not adjacent in  G. 

Now you are given an undirected graph  G of  N nodes and  M bidirectional edges of  unit length. Consider the complement of  G, i.e.,  H. For a given vertex  S on  H, you are required to compute the shortest distances from  S to all  N−1


 



Input


T(1≤T<35) denoting the number of test cases. For each test case, the first line contains two integers  N(2≤N≤200000) and  M(0≤M≤20000). The following  M lines each contains two distinct integers  u,v(1≤u,v≤N) denoting an edge. And  S (1≤S≤N)


 



Output


T test cases, print a single line consisting of  N−1 space separated integers, denoting shortest distances of the remaining  N−1 vertices from  S


 



Sample Input


1 2 0 1


 



Sample Output


1


求最短路,由于是完全图上删边,显然最短路不会太长,所以暴力的扫描即可。

#include<set>
#include<map>
#include<ctime>
#include<cmath>
#include<stack>
#include<queue>
#include<bitset>
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
#define rep(i,j,k) for (int i = j; i <= k; i++)
#define per(i,j,k) for (int i = j; i >= k; i--)
#define loop(i,j,k) for (int i = j;i != -1; i = k[i])
#define lson x << 1, l, mid
#define rson x << 1 | 1, mid + 1, r
#define ff first
#define ss second
#define mp(i,j) make_pair(i,j)
#define pb push_back
#define pii pair<int,int>
#define in(x) scanf("%d", &x);
using namespace std;
typedef long long LL;
const int low(int x) { return x&-x; }
const double eps = 1e-8;
const int INF = 0x7FFFFFFF;
const int mod = 1e9 + 7;
const int N = 2e5 + 10;
int T, n, m, x ,y;
int ft[N],nt[N],u[N],sz;
int dis[N];

int main()
{
in(T);
while (T--)
{
sz=0;
scanf("%d%d",&n,&m);
rep(i,1,n) dis[i]=-1,ft[i]=-1;
rep(i,1,m)
{
scanf("%d%d",&x,&y);
u[sz]=y; nt[sz]=ft[x]; ft[x]=sz++;
u[sz]=x; nt[sz]=ft[y]; ft[y]=sz++;
}
scanf("%d",&x);
dis[x]=0;
int sum=n-1,t=0;
while (sum)
{
++t;
int q=0;
rep(i,1,n)
{
if (dis[i]!=-1) continue;
int res=0,ans=0;
loop(j,ft[i],nt)
{
if (dis[u[j]]!=-1&&dis[u[j]]<t) res++;
}
if (res+sum==n) continue;
else {dis[i]=t; q++;}
}
sum-=q;
if (!q) break;
}
int flag=0;
rep(i,1,n)
{
if (dis[i])
{
printf("%s%d",flag?" ":"",dis[i]);
flag=1;
}
}
putchar(10);
}
return 0;
}



标签:sz,HDU,ft,int,Graph,dis,5876,include,define
From: https://blog.51cto.com/u_15870896/5838607

相关文章

  • HDU 5877 Weak Pair
    ProblemDescriptionrooted treeof N nodes,labeledfrom1to N.Tothe ithnodeanon-negativevalue ai isassigned.An order......
  • HDU 5875 Function
    ProblemDescriptionTheshorter,thesimpler.Withthisproblem,youshouldbeconvincedofthistruth.    Youaregivenanarray A of ......
  • HDU 5320 Fan Li
    DescriptionFanLi(范蠡)wasanancientChineseadvisorinthestateofYueintheSpringandAutumnperiod.Heisasuccessfulmilitaristandasuccessf......
  • HDU 5399 Too Simple
    ProblemDescriptionRhasonCheunghadasimpleproblem,andaskedTeacherMaiforhelp.ButTeacherMaithoughtthisproblemwastoosimple,sometimesna......
  • HDU 5402 Travelling Salesman Problem
    ProblemDescriptionn rowsand m columns.Thereisanon-negativenumberineachcell.TeacherMaiwantstowalkfromthetopleftcorner (1,1......
  • HDU 1272 小希的迷宫
    ProblemDescription上次Gardon的迷宫城堡小希玩了很久(见ProblemB),现在她也想设计一个迷宫让Gardon来走。但是她设计迷宫的思路不一样,首先她认为所有的通道都应该是双向......
  • HDU 2242 考研路茫茫——空调教室
    ProblemDescription众所周知,HDU的考研教室是没有空调的,于是就苦了不少不去图书馆的考研仔们。Lele也是其中一个。而某教室旁边又摆着两个未装上的空调,更是引起人们无......
  • HDU 4041 Eliminate Witches!
    ProblemDescriptionKanameMadokaisaMagicalGirl(MahouShoujo/PuellaMagi).ThedutyofaMagicalGirlistoeliminateWitches(Majo).Thoughsoundshorrif......
  • HDU 1237 简单计算器
    ProblemDescription读入一个只包含+,-,*,/的非负整数计算表达式,计算该表达式的值。Input测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字......
  • HDU 4739 Zhuge Liang's Mines
    ProblemDescriptionIntheancientthreekingdomperiod,ZhugeLiangwasthemostfamousandsmartestmilitaryleader.HisenemywasShimaYi,whoalways......