记录编号 583444 评测结果 AAAAA
题目名称 通讯问题 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-10-14 14:55:15 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h> 
using namespace std;
//tarjan求连通块 
const int N = 110,M = 1e4+10;
int n;
struct made{
    int ver,nx;
}e[M];
int hd[N],tot,num,top,cnt;
int dfn[N],low[N],st[N],color[N];
vector<int>scc[N];//scc 
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){
    dfn[x] = low[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(dfn[x] == low[x]){
        ++num;int y;
        do{
            y = st[top--];color[y] = num;
            v[y] = 0;scc[num].push_back(y);
        }while(x != y);
    }
}
int main(){
    freopen("jdltt.in","r",stdin);
    freopen("jdltt.out","w",stdout);
    scanf("%d",&n);
    int x,y;
    while(cin>>x>>y){
        add(x,y);
    }
    for(int i = 1;i <= n;i++)
        if(!color[i])tarjan(i);
    memset(v,0,sizeof(v));
    printf("%d\n",num);//输出总连通块!! 
    for(int i = 1;i <= n;i++){
        int x = color[i];
        if(!v[x]){
            sort(scc[x].begin(),scc[x].end());//→ 
            for(int j = 0;j < scc[x].size();j++)
                printf("%d ",scc[x][j]);
            printf("\n");
        }//输出顺序按编号由小到大 
        v[x] = 1;
    }
    
    return 0;
    
}