hdu 5441 Travel 并查集 2015 ACM/ICPC Asia Regional Changchun Online

来源:互联网 发布:ubuntu 测试软件 编辑:程序博客网 时间:2024/06/09 20:31

Travel

Time Limit: 1500/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 424    Accepted Submission(s): 183


Problem Description
Jack likes to travel around the world, but he doesn’t like to wait. Now, he is traveling in the Undirected Kingdom. There are n cities and m bidirectional roads connecting the cities. Jack hates waiting too long on the bus, but he can rest at every city. Jack can only stand staying on the bus for a limited time and will go berserk after that. Assuming you know the time it takes to go from one city to another and that the time Jack can stand staying on a bus is x minutes, how many pairs of city (a,b) are there that Jack can travel from city a to b without going berserk?
 

Input
The first line contains one integer T,T5, which represents the number of test case.

For each test case, the first line consists of three integers n,m and q where n20000,m100000,q5000. The Undirected Kingdom has n cities and mbidirectional roads, and there are q queries.

Each of the following m lines consists of three integers a,b and d where a,b{1,...,n} and d100000. It takes Jack d minutes to travel from city a to city b and vice versa.

Then q lines follow. Each of them is a query consisting of an integer x where x is the time limit before Jack goes berserk.

 

Output
You should print q lines for each test case. Each of them contains one integer as the number of pair of cities (a,b) which Jack may travel from a to b within the time limit x.

Note that (a,b) and (b,a) are counted as different pairs and a and b must be different cities.
 

Sample Input
15 5 32 3 63341 5 157243 5 57054 3 123821 3 2172660001000013000
 

Sample Output
2612
 

Source
2015 ACM/ICPC Asia Regional Changchun Online
 

Recommend
hujie   |   We have carefully selected several similar problems for you:  5449 5448 5447 5446 5445 
 

并查集。
int main(){    int T,x,y,z,ww;scanf("%d",&T);    while(T--)    {        scanf("%d%d%d",&n,&m,&q);        init();        for(int i=1;i<=m;i++)        {            scanf("%d%d%d",&x,&y,&z);            add_edge(x,y,z);        }         sort(edges,edges+e_max);        for(int i=1;i<=q;i++)        {            scanf("%d",&query[i].num);            query[i].index=i;        }        sort(query+1,query+1+q);        int now=1;tot=0;          for(int i=1;i<=n;i++)                pre[i]=i;                          for(int i=1;i<=n;i++)          {              cnt[i]=1;          }            for(int id=0;id<e_max&&now<=q;id++)            {                while(now<=q && edges[id].w>query[now].num )                {                    x=query[now].index;                    ans[x]=tot;                    now++;                }               if(now> q  )   break;              x=edges[id].from;              y=edges[id].to;            merge(x,y);            }            if(now<=q)            {                for(int i=now;i<=q;i++)                {                   x=query[i].index;                     ans[x]=tot;                }            }        for(int i=1;i<=q;i++)        {            printf("%d\n",ans[i]);        }    }    return 0;}


#include<cstdio>#include<string>#include<cstring>#include<iostream>#include<cmath>#include<algorithm>#include<climits>#include<queue>#include<vector>#include<map>#include<sstream>#include<set>#include<stack>#include<utility>#pragma comment(linker, "/STACK:102400000,102400000")#define PI 3.1415926535897932384626#define eps 1e-10#define sqr(x) ((x)*(x))#define FOR0(i,n)  for(int i=0 ;i<(n) ;i++)#define FOR1(i,n)  for(int i=1 ;i<=(n) ;i++)#define FORD(i,n)  for(int i=(n) ;i>=0 ;i--)#define  lson   num<<1,le,mid#define rson    num<<1|1,mid+1,ri#define MID   int mid=(le+ri)>>1#define zero(x)((x>0? x:-x)<1e-15)#define mk    make_pair#define _f     first#define _s     secondusing namespace std;//const int INF=    ;typedef long long ll;//const ll inf =1000000000000000;//1e15;//ifstream fin("input.txt");//ofstream fout("output.txt");//fin.close();//fout.close();//freopen("a.in","r",stdin);//freopen("a.out","w",stdout);const int INF =0x3f3f3f3f;const int maxn=20000+10    ;const int maxm=100000+20    ;//by yskysker123//#######################################################int n,m,q,tot;int pre[maxn];int ans[maxn];struct Edge{    int from,to,w;    bool operator<(const Edge y) const    {        return w<y.w;    }    Edge(){}    Edge(int &from,int &to,int &w):from(from),to(to),w(w){}} edges[maxm];int cnt[maxn],e_max;struct Query{ int num,index; bool operator<(const Query y)const {     return num<y.num; }} query[5000+10];//###################################################################inline void add_edge(int x,int y,int w_){    int e=e_max++;    edges[e]=Edge(x,y,w_);}inline void init(){    e_max=0;}int find(int x){    return x==pre[x]?x:pre[x]=find(pre[x]);}inline void merge(int s,int t){    int r1=find(s);    int r2=find(t);    if(r1==r2) return;     int x=cnt[r1];       tot-=x*(x-1);         x=cnt[r2];       tot-=x*(x-1);        pre[r1]=r2;      int r=find(s);      x=cnt[r]=cnt[r1]+cnt[r2];  //一开始这里写成了++      tot+=x*(x-1);}



0 0
原创粉丝点击