对于新增加的每一条边,ab,假如a点和b点原来不连通,那么新增加路径的条数(包含ab的路径)=原来和a点连通的点数(包括自身)*原来和b点连通的点数(包括自身)。
假如a和b已经连通,那么不增加。(为什么不知道,凑数据,我当时题目一直觉得没看懂,因为题目说的非常含糊)
这份题解:写的很清楚
http://blog.csdn.net/sdj222555/article/details/7439187
按照边权值从小到大的顺序给编排序,记录前i条边可以组成的路径数量。
查询时我使用了二分。
/**==========================================
* This is a solution for ACM/ICPC problem
*
* @source:hdu 3938
* @type: 并查集
* @author: wust_ysk
* @blog: http://blog.csdn.net/yskyskyer123
* @email: [email protected]
*===========================================*/
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
const int INF =0x3f3f3f3f;
const int maxn= 10000 ;
const int maxm= 50000 ;
int n,m,q;
int pre[maxn+5];
int a[maxn+5];
struct Edge
{
int x,y,w;
Edge(){}
Edge(int x,int y,int w):x(x),y(y),w(w){}
bool operator<(const Edge t)const
{
return w>1;
if(edges[mid].w<=x) le=mid+1;
else ri=mid-1;
}
return ri;
}
int main()
{
while(~scanf("%d%d%d",&n,&m,&q))
{
int x,y,w;
init();
for(int i=1;i<=m;i++)
{
scanf("%d%d%d",&x,&y,&w);
edges[i]=Edge(x,y,w);
}
sort(edges+1,edges+1+m);
work();
for(int i=1;i<=q;i++)
{
scanf("%d",&x);
int p=bs(1,m,x);
// cout<