AtCoder-2362 (dfs+优化)

题目

Vjudge https://vjudge.net/problem/AtCoder-2362
原网址 http://agc012.contest.atcoder.jp/tasks/agc012_b

Problem Statement

Squid loves painting vertices in graphs.

There is a simple undirected graph consisting of N vertices numbered 1 through N, and M edges. Initially, all the vertices are painted in color 0. The i-th edge bidirectionally connects two vertices ai and bi. The length of every edge is 1.

Squid performed Q operations on this graph. In the i-th operation, he repaints all the vertices within a distance of di from vertex vi, in color ci.

Find the color of each vertex after the Q operations.

Constraints

1≤N,M,Q≤105
1≤ai,bi,vi≤N
ai≠bi
0≤di≤10
1≤ci≤10^5
di and ci are all integers.
There are no self-loops or multiple edges in the given graph.

Input

Input is given from Standard Input in the following format:

N M
a1 b1
:
aM bM
Q
v1 d1 c1
:
vQ dQ cQ

The given graph may not be connected.

Output

Print the answer in N lines. In the i-th line, print the color of vertex i after the Q operations.

Samples

No.InputOutput
17 7
1 2
1 3
1 4
4 5
5 6
5 7
2 3
2
6 1 1
1 2 2
2
2
2
2
2
1
0
214 10
1 4
5 7
7 11
4 10
14 7
14 3
6 14
8 11
5 13
8 3
8
8 6 2
9 7 85
6 9 3
6 7 5
10 3 1
12 9 4
9 6 6
8 2 3
1
0
3
1
5
5
3
3
6
1
3
4
5
3

Sample 1

分析

  • 题意就是给个n个点的图,m个操作,每次选择一个点v[i]把与它距离不大于d[i]的点染成颜色c[i],问最后每个点的颜色。
  • 看看数据范围(除了d[] 只有10,每个数都达到100000),直接暴力修改肯定不行。
  • 可以发现,暴力之所以这么慢,是因为有许多重复染色的多余操作,那么我们把它离线化处理,从后往前,这样染过色的点就不用染(可是却还需要继续往下递归,因为不能保证下面的都是这个颜色)
  • 还有一点,假如点 x 要把离它 dx 的点染色,而在这之前与它相邻的点 y已经把离它 dy 的点染过色了,这时要是 dy>=dx ,那么 x 的这一操作完全可以省去了,这样就的确快了许多。
  • 可以证明一下,每个点最多被讨论 10 次(因为 d[] 最多为10),所以时间复杂度为 10n

代码

#include <cstdio> 
#define For(x) for (int h=head[x],o=V[h]; h; o=V[h=to[h]])
#define add(u,v) (to[++num]=head[u],head[u]=num,V[num]=v)
int num,head[100005],to[200005],V[200005];
int Q,n,m,v[100005],d[100005],c[100005],cl[100005],rg[100005];

void dfs(int x,int ran,int col){
    if (rg[x]>=ran || ran<=0) return;
    rg[x]=ran;              //范围 
    if (!cl[x]) cl[x]=col;  //颜色 
    For(x) dfs(o,ran-1,col);
}

int main(){
    freopen("1.txt","r",stdin);
    scanf("%d%d",&n,&m);
    for (int i=1,x,y; i<=m; i++){
        scanf("%d%d",&x,&y);
        add(x,y); add(y,x);
    }
    scanf("%d",&Q);
    for (int i=1; i<=Q; i++) scanf("%d%d%d",&v[i],&d[i],&c[i]); 
    for (int i=Q; i; i--) dfs(v[i],d[i]+1,c[i]);
    for (int i=1; i<=n; i++) printf("%d\n",cl[i]);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值