记录编号 |
583421 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[金陵中学2007] 传话 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2023-10-13 21:23:22 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N = 1e3+10,M = 1e4+10;
int n,m;
struct made{
int ver,nx;
}e[M];
int hd[N],tot,num,top,cnt;//tot为图,num为颜色,top为栈,cnt为dfn时间戳
int low[N],dfn[N],st[N],color[N];
bool v[N];
void add(int x,int y){
tot++;
e[tot].ver = y,e[tot].nx = hd[x],hd[x] = tot;
}
void tarjan(int x){
low[x] = dfn[x] = ++cnt;
st[++top] = x,v[x] = 1;
for(int i = hd[x];i;i = e[i].nx){
int y = e[i].ver;
if(!dfn[y])tarjan(y),low[x] = min(low[x],low[y]);
else if(v[y])low[x] = min(low[x],dfn[y]);
}
if(low[x] == dfn[x]){
num++;int y = 0;
do{
y = st[top--],v[y] = 0;
color[y] = num;
}while(x != y);
}
}
bool check(int x){
for(int i = hd[x];i;i = e[i].nx){
int y = e[i].ver;
if(color[x] == color[y])return 1;
}
return 0;
}
int main(){
freopen("messagez.in","r",stdin);
freopen("messagez.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i = 1;i <= m;i++){
int x,y;
scanf("%d%d",&x,&y);
add(x,y);
}
for(int i = 1;i <= n;i++){
if(!color[i]){
tarjan(i);
}
}
for(int i = 1;i <= n;i++){
if(check(i))printf("T\n");
else printf("F\n");
}
return 0;
}