题意:给你N个点M条边,M-N<=20,有1e5个询问,询问两点的最短距离。保证没有自环和重边。

题解:连题目都在提示你这个20很有用,所以如果是颗树的话那任意两点的最短距离就是求一下lca搞一搞的问题。所以可以先求出最小生成树,那么会剩下最多42个点,我们知道非树边可能更优,所以对于每条非树边对应的两个点跑一遍dij,尝试更新答案ans=min(ans,dis[i][u]+dis[i][v])。正确性:可能通过多条非树边?在跑dij时其实已经处理出了最短的路,如果是通过多条非树边更优,那么它记录的就是这样的值。为什么这个题别人的代码那么短。。。

#include<bits/stdc++.h>
#define ll long long
#define pb push_back
#define ls x<<1
#define rs x<<1|1
#define ull unsigned long long
#define _mp make_pair
#define ldb long double
using namespace std;
const int maxn=1e5+100;
const ll inf=1e18;
int bcg[maxn];
struct Edge
{
int u,v,nxt;
ll w;
}edge[maxn*2],edge1[maxn*2];
vector<Edge>vec[maxn];
struct Node{
ll p;
int v;
friend bool operator<(Node a,Node b)
{
return a.p>b.p;
}
Node(){}
Node(ll x,int y){p=x,v=y;}
};
int head[maxn],head1[maxn];
ll deep[maxn];
int depth[maxn];
int bian[maxn*2];
ll dis[50][maxn];
int lca[maxn][25];
int vis[maxn];
int cnt,cnt1,tot;
int n,m;
int findd(int x)
{
return bcg[x]==x?bcg[x]:bcg[x]=findd(bcg[x]);
}
bool cmp(Edge a,Edge b)
{
return a.w<b.w;
}
void add_e1(int x,int y,ll w)
{
++cnt1;edge1[cnt1].u=x;edge1[cnt1].v=y;edge1[cnt1].w=w;edge1[cnt1].nxt=head1[x];head1[x]=cnt1;
}
void add_e(int x,int y,ll w)
{
++cnt;edge[cnt].u=x;edge[cnt].v=y;edge[cnt].w=w;edge[cnt].nxt=head[x];head[x]=cnt;
}
int merges(int x,int y)
{
int xx=findd(x);
int yy=findd(y);
if(xx!=yy)
{
bcg[xx]=yy;
return 1;
}
return 0;
}
void init()
{
cnt=cnt1=0;
tot=0;
memset(deep,0,sizeof(deep));
memset(head,0,sizeof(head));
memset(head1,0,sizeof(head1));
}
void dfs(int x,int ff)
{
lca[x][0]=ff;
for(int i=1;i<=20;i++)lca[x][i]=lca[lca[x][i-1]][i-1];
for(int i=head[x];i;i=edge[i].nxt)
{
int v=edge[i].v;
if(v==ff)continue;
deep[v]=deep[x]+edge[i].w;
depth[v]=depth[x]+1;
dfs(v,x);
}
}
int LCA(int x,int y)
{
if(depth[x]<depth[y])swap(x,y);
int ff=depth[x]-depth[y];
for(int i=20;i>=0;i--)
{
if(ff&(1<<i))x=lca[x][i];
}
if(x==y)return y;
for(int i=20;i>=0;i--)
{
if(lca[x][i]!=lca[y][i])x=lca[x][i],y=lca[y][i];
}
return lca[y][0];
}
priority_queue<Node>que;
void dij(int id,int x)
{
for(int i=0;i<=n+4;i++)
{
dis[id][i]=inf;
vis[i]=0;
}
dis[id][x]=0;
while(!que.empty())que.pop();
que.push(Node(0,x));
while(!que.empty())
{
Node vv=que.top();que.pop();
if(vis[vv.v]||vv.p>dis[id][vv.v])continue;
vis[vv.v]=1;
for(int i=0;i<(int)vec[vv.v].size();i++)
{
Edge k=vec[vv.v][i];
int sw=k.v;
if(vis[sw])continue;
if(dis[id][sw]>dis[id][vv.v]+k.w)
{
dis[id][sw]=dis[id][vv.v]+k.w;
que.push(Node(dis[id][sw],sw));
}
} }
}
int main()
{
scanf("%d%d",&n,&m);
int u,v;
ll w;
init();
for(int i=1;i<=m;i++)
{
scanf("%d%d%lld",&u,&v,&w);
add_e1(u,v,w);
vec[u].push_back((Edge){u,v,0,w});
vec[v].push_back((Edge){v,u,0,w});
}
sort(edge1+1,edge1+cnt1+1,cmp);
for(int i=1;i<=n+4;i++)bcg[i]=i;
for(int i=1;i<=cnt1;i++)
{
int x=edge1[i].u,y=edge1[i].v;
if(merges(x,y))
{
add_e(x,y,edge1[i].w);
add_e(y,x,edge1[i].w);
}
else
{
bian[++tot]=x;
bian[++tot]=y;
}
}
depth[1]=0;
deep[1]=0;
dfs(1,0);
sort(bian+1,bian+1+tot);
int sz=unique(bian+1,bian+1+tot)-(bian+1);
for(int i=1;i<=sz;i++)
{
dij(i,bian[i]);
}
int q;
scanf("%d",&q);
int x,y;
while(q--)
{
scanf("%d%d",&x,&y);
ll ans=inf;
int pq=LCA(x,y); ans=deep[x]+deep[y]-2*deep[pq];
for(int i=1;i<=sz;i++)
{
ans=min(ans,dis[i][x]+dis[i][y]);
}
cout<<ans<<"\n";
}
return 0;
}

  

Codeforces 1051E. Vasya and Big Integers的更多相关文章

  1. Codeforces 1051E Vasya and Big Integers&1051F The Shortest Statement

    1051E. Vasya and Big Integers 题意 给出三个大整数\(a,l,r\),定义\(a\)的一种合法的拆分为把\(a\)表示成若干个字符串首位相连,且每个字符串的大小在\(l, ...

  2. CodeForces - 837E - Vasya's Function | Educational Codeforces Round 26

    /* CodeForces - 837E - Vasya's Function [ 数论 ] | Educational Codeforces Round 26 题意: f(a, 0) = 0; f( ...

  3. CodeForces - 1051E :Vasya and Big Integers(Z算法 & DP )

    题意:给定字符串S,A,B.现在让你对S进行切割,使得每个切割出来的部分在[A,B]范围内,问方案数. 思路:有方程,dp[i]=Σ dp[j]   (S[j+1,i]在合法范围内).    假设M和 ...

  4. Codeforces 1107G Vasya and Maximum Profit 线段树最大子段和 + 单调栈

    Codeforces 1107G 线段树最大子段和 + 单调栈 G. Vasya and Maximum Profit Description: Vasya got really tired of t ...

  5. Codeforces 837E. Vasya's Function

    http://codeforces.com/problemset/problem/837/E   题意: f(a, 0) = 0; f(a, b) = 1 + f(a, b - gcd(a, b)) ...

  6. Codeforces 837E Vasya's Function - 数论

    Vasya is studying number theory. He has denoted a function f(a, b) such that: f(a, 0) = 0; f(a, b) = ...

  7. Codeforces 493C - Vasya and Basketball

    C. Vasya and Basketball 题目链接:http://codeforces.com/problemset/problem/493/C time limit per test 2 se ...

  8. codeforces 493B.Vasya and Wrestling 解题报告

    题目链接:http://codeforces.com/problemset/problem/493/B 题目意思:给出 n 个 techniques,每个 technique 的值为 ai. ai & ...

  9. codeforces 493A. Vasya and Football 解题报告

    题目链接:http://codeforces.com/contest/493/problem/A 题目意思:给出两个字符串,分别代表 home 和 away.然后有 t 个player,每个playe ...

随机推荐

  1. MySQL的SQL语句优化-group by语句的优化

    原文:http://bbs.landingbj.com/t-0-243202-1.html 默认情况下,MySQL排序所有GROUP BY col1, col2, ....,查询的方法如同在查询中指定 ...

  2. java程序员一些初中级面试题(数据库部分)

    说出一些数据库优化方面的经验? 1.从JDBC编程的角度讲,用PreparedStatement一般来说比Statement性能高,因为在使用时,SQL语句被预编译并存储在PreparedStatem ...

  3. mysql中的几种日志了解

    前言 MySQL中有以下日志文件,分别是: 1:重做日志(redo log) 2:回滚日志(undo log) 3:二进制日志(binlog) 4:错误日志(errorlog) 5:慢查询日志(slo ...

  4. 字符串和ASCII之间的转换

    public class CharToAscii { public static void main(String[] args) { CharToAscii.AscToString(); CharT ...

  5. Windows字符集安装

    0. 获取字符集安装文件. 最简单的办法 上msdn i tell you 下载 多语言安装盘. 一般都比较大. 比如: 1. 进入windows10 操作系统. 运行输入: lpksetup 选择安 ...

  6. mysql逻辑架构

    逻辑架构图 MySQL有点与众不同,它的逻辑架构可以在多种不同的场景中应用并发挥良好的作用.主要体现在存储引擎的架构上,插件式的存储引擎架构将查询处理和其他的系统任务以及数据的存储提取相分离.这种架构 ...

  7. shit vue & shit iview

    shit vue & shit iview <Switch> !== <i-switch> https://www.iviewui.com/components/swi ...

  8. MyBatis基础:MyBatis数据基本操作(2)

    1. MyBatis映射器 2. MyBatis数据基本操作 示例项目结构: <project xmlns="http://maven.apache.org/POM/4.0.0&quo ...

  9. JavaScript学习笔记之数组(二)

    JavaScript学习笔记之数组(二) 1.['1','2','3'].map(parseInt) 输出什么,为什么? ['1','2','3'].map(parseInt)//[1,NaN,NaN ...

  10. Java启动命令与Maven打包设置

    一.Java启动命令 java程序的启动方式有三种: 1.java -jar 生成的jar包中,manifest文件定义了Main Class,可使用该命令 java -jar test.jar 2. ...