NOIP 模拟 路径求和 - Tarjan+dfs+码
题目大意:
各一个奇环内向森林,求每两个点对间的距离之和。无法到达则距离为-1.
分析:
首先Tarjan找出size大于1的连通分量(环),环中的边的贡献可以单独计算。
然后从入度为0的点向内dfs,直到遇见size大于1的环。记录每个点的to_size(朝向环方向有多少个节点),from_size(朝向入度为0的方向有多少个节点),还需要配合拓扑。这一步完成后,
单独的边的贡献就可以算出来了。
接下来计算单独的边与环接上的部分对环上的边的贡献增量。在上面dfs时,就可以将环上碰到的第一个点打上标记mark,表示有多少个点通过此点进入联通块,然后对于每个环中每个有标记的点,可以通过预处理得到bin(一个标记的增量),答案增量就是(mark * bin[size-1])。
最后就是减去不互通的点对。将size>1的联通块中的每个点的tosize置为1,贡献就是\(-\sum{(n - tosize_i)}\).
code
#pragma GCC optimize("O3")
#include<bits/stdc++.h>
using namespace std;
namespace IO{
template<typename T>
inline void read(T &x){
T i = 0, f = 1; char ch = getchar();
for(; (ch < '0' || ch > '9') && ch != '-'; ch = getchar());
if(ch == '-') f = -1, ch = getchar();
for(; ch <= '9' && ch >= '0'; ch = getchar()) i = (i << 3) + (i << 1) + (ch - '0');
x = i * f;
}
template<typename T>
inline void wr(T x){
if(x < 0) x = -x, putchar('-');
if(x > 9) wr(x / 10);
putchar(x % 10 + '0');
}
}using namespace IO;
const int N = 5e5 + 50, mod = 1e9 + 7;
typedef long long ll;
int n, vt;
struct node{
node *to;
ll dis;
ll bin;
int from_size;
int to_size;
int low;
int id;
int dfn;
int deg;
int in_deg;
int sccno;
int vst;
int mark;
node():to(NULL), from_size(0), to_size(0), in_deg(0), low(0), dfn(0), deg(0), sccno(0), vst(0), mark(0), dis(0), bin(0){}
}*point[N], pool[N], *tail = pool;
ll clk, scc_cnt;
ll ans, bin[N];
vector<node*> cir[N];
stack<node*> stk;
queue<node*> que;
inline void Tarjan(node *u){
u->low = u->dfn = ++clk;
stk.push(u);
node *v = u->to;
if(!v->dfn){
Tarjan(v);
u->low = min(u->low, v->low);
}
else if(!v->sccno)
u->low = min(u->low, v->dfn);
if(u->low == u->dfn){
node *x;
scc_cnt++;
for(; ; ) {
x = stk.top();
stk.pop();
x->sccno = scc_cnt;
cir[scc_cnt].push_back(x);
if(x == u) break;
}
}
}
inline void dfs(node *u){
u->to_size = cir[u->sccno].size();
u->vst = vt;
if(u->to == u) return;
if(cir[u->to->sccno].size() > 1) {
u->to_size += cir[u->to->sccno].size();
return;
}
if(u->to->vst == vt){
u->to_size += u->to->to_size;
return;
}
dfs(u->to);
u->to_size += u->to->to_size;
}
inline void dfs2(node *u){
u->vst = vt;
if(u->to == u) return;
if(cir[u->to->sccno].size() > 1) {
u->to->mark += 1ll*u->from_size;
return;
}
if(u->to->vst == vt) return;
dfs2(u->to);
}
inline void init_bin(int k){
ll sum = 0;
for(register int i = 0, s = cir[k].size(); i < s; i++) sum = (sum + cir[k][i]->dis) % mod;
node *now = cir[k][0], *last;
for(register int i = 0, s = cir[k].size(); i < s; i++) cir[k][0]->bin = (now->dis * (s - i - 1) + cir[k][0]->bin) % mod, now = now->to;
last = now;
now = cir[k][0]->to;
for(register int i = 1, s = cir[k].size(); i < s; i++){
now->bin = (last->bin - 1ll*last->dis * (s - 1) + sum - last->dis) % mod;
last = now, now = now->to;
}
}
int main(){
int _q=50<<20;
char *_p=(char*)malloc(_q)+_q;
__asm__("movl %0, %%esp\n"::"r"(_p));
read(n);
for(register int i = 1; i <= n; i++) bin[i] = (bin[i - 1] + i) % mod;
for(register int i = 1; i <= n; i++) point[i] = tail++, point[i]->id = i;
for(register int i = 1; i <= n; i++){
int x;
ll dis;
read(x);
read(dis);
point[i]->to = point[x];
point[i]->dis = dis;
if(x != i) point[x]->in_deg++, point[x]->deg++;
}
for(register int i = 1; i <= n; i++)
if(!point[i]->dfn)
Tarjan(point[i]);
vt++;
for(register int i = 1; i <= n; i++){
if(cir[point[i]->sccno].size() <= 1) point[i]->from_size = 1;
if(!point[i]->in_deg)
dfs(point[i]), que.push(point[i]);
}
while(!que.empty()){
node *u = que.front(); que.pop();
if(cir[u->to->sccno].size() > 1) continue;
u->to->from_size += u->from_size;
if(!(--u->to->deg)) que.push(u->to);
}
vt++;
for(register int i = 1; i <= n; i++)
if(!point[i]->in_deg)
dfs2(point[i]);
for(register int i = 1; i <= n; i++)
ans = (ans + 1ll*point[i]->dis * (point[i]->to_size - 1) * point[i]->from_size) % mod;
for(register int i = 1; i <= scc_cnt; i++){
if(cir[i].size() <= 1) continue;
init_bin(i);
for(register int j = 0, s = cir[i].size(); j < s; j++){
ans = (ans + 1ll*cir[i][j]->mark * cir[i][j]->bin) % mod;
ans = (ans + 1ll*cir[i][j]->dis * bin[s - 1]) % mod;
}
}
for(register int i = 1; i <= n; i++){
if(cir[point[i]->sccno].size() > 1) point[i]->to_size = cir[point[i]->sccno].size();
ans = ((ans - (n - point[i]->to_size)) % mod + mod) % mod;
}
wr((ans % mod + mod) % mod);
return 0;
}
NOIP 模拟 路径求和 - Tarjan+dfs+码的更多相关文章
- 2018.11.08 NOIP模拟 班车(倍增+dfs+bit)
传送门 对于每个点离线处理出向上走2i2^i2i班车到的最上面的点. 然后每个询问(u,v)(u,v)(u,v)先把(u,v)(u,v)(u,v)倍增到刚好走不到lcalcalca的情况(有一个点如果 ...
- 2018.10.04 NOIP模拟 航班(tarjan+树形dp)
传送门 考场上自己yy了一个双连通只有40分. 然后换根dp求最长路就行了. 代码
- 6.17考试总结(NOIP模拟8)[星际旅行·砍树·超级树·求和]
6.17考试总结(NOIP模拟8) 背景 考得不咋样,有一个非常遗憾的地方:最后一题少取膜了,\(100pts->40pts\),改了这么多年的错还是头一回看见以下的情景... T1星际旅行 前 ...
- 【noip模拟赛4】Matrix67的派对 暴力dfs
[noip模拟赛4]Matrix67的派对 描述 Matrix67发现身高接近的人似乎更合得来.Matrix67举办的派对共有N(1<=N<=10)个人参加,Matrix67需要把他们 ...
- NOIP模拟赛20161022
NOIP模拟赛2016-10-22 题目名 东风谷早苗 西行寺幽幽子 琪露诺 上白泽慧音 源文件 robot.cpp/c/pas spring.cpp/c/pas iceroad.cpp/c/pas ...
- 2019.7.29 NOIP模拟测试10 反思总结【T2补全】
这次意外考得不错…但是并没有太多厉害的地方,因为我只是打满了暴力[还没去推T3] 第一题折腾了一个小时,看了看时间先去写第二题了.第二题尝试了半天还是只写了三十分的暴力,然后看到第三题是期望,本能排斥 ...
- 队爷的讲学计划 CH Round #59 - OrzCC杯NOIP模拟赛day1
题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的讲学计划 题解:刚开始理解题意理解了好半天,然后发 ...
- 10.16 NOIP模拟赛
目录 2018.10.16 NOIP模拟赛 A 购物shop B 期望exp(DP 期望 按位计算) C 魔法迷宫maze(状压 暴力) 考试代码 C 2018.10.16 NOIP模拟赛 时间:2h ...
- 2014-10-31 NOIP模拟赛
10.30 NOIp 模拟赛 时间 空间 测试点 评测方式 挖掘机(dig.*) 1s 256M 10 传统 黑红树(brtree.*) 2s 256M 10 传统 藏宝图(treas. ...
随机推荐
- ArcGIS Engine 线段绘制
转自ArcGIS Engine 线段绘制研究 基本步骤 构建形状 1. 创建 IPoint IPoint m_Point = new PointClass(); m_Point.PutCoords(x ...
- JS contcat() 连接数组 函数
语法: arrayObject.concat(arrayX,arrayX,......,arrayX) 1.把元素添加到数组中 arr.concat(a,b,c);2.把数组连起来 arr.conca ...
- Cscope how to support java and c++
Cscope 首先在文件夹下建立cscope索引文件 find -name '*.c' > cscope.file cscope -Rbkq 这个命令会生成三个文件:cscope.out, cs ...
- 《你不知道的JavaScript(上)》笔记——提升
笔记摘自:<你不知道的JavaScript(上)>第3章 提升 1.包括变量和函数在内的所有声明都会在任何代码被执行前首先被处理. 2.变量和函数声明从它们在代码中出现的位置被“移动”到了 ...
- Docker---(2)docker pull 下来的镜像存储在哪里
原文:Docker---(2)docker pull 下来的镜像存储在哪里 版权声明:欢迎转载,请标明出处,如有问题,欢迎指正!谢谢!微信:w1186355422 https://blog.csdn. ...
- 【 2017 Multi-University Training Contest - Team 9 && hdu 6162】Ch’s gift
[链接]h在这里写链接 [题意] 给你一棵树,每个节点上都有一个权值. 然后给你m个询问,每个询问(x,y,a,b); 表示询问x->y这条路径上权值在[a,b]范围内的节点的权值和. [题解] ...
- 深入理解线程本地变量ThreadLocal
ThreadLocal理解: 假设在多线程并发环境中.一个可变对象涉及到共享与竞争,那么该可变对象就一定会涉及到线程间同步操作,这是多线程并发问题. 否则该可变对象将作为线程私有对象,可通过Threa ...
- Hadoop读书笔记(四)HDFS体系结构
Hadoop读书笔记(一)Hadoop介绍:http://blog.csdn.net/caicongyang/article/details/39898629 Hadoop读书笔记(二)HDFS的sh ...
- js中退出语句break,continue和return 比较 (转)
在 break,continue和return 三个关键字中, break,continue是一起的,return 是函数返回语句,但是返回的同时也将函数停止 首先:break和continue两个一 ...
- [疯狂Java]JDBC:事务管理、中间点、批量更新
1. 数据库事务的概念: 1) 事务的目的就是为了保证数据库中数据的完整性. 2) 设想一个银行转账的过程,假设分两步,第一步是A的账户-1000,第二步是B的账户+1000.这两个动 ...