记录编号 583463 评测结果 AAAAAAAAAA
题目名称 [東方S1] 上白泽慧音 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-10-15 07:27:56 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h> 
using namespace std;
//tarjan求强连通分量模板 
const int N = 5e3+10,M = 5e4+10;
int n,m;
struct made{
    int ver,nx;
}e[M<<1];
int hd[N],tot,cnt,num,top;
int low[N],dfn[N],st[N],color[N];
vector<int>scc[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;
            scc[num].push_back(y);
        }while(x != y);
    }
}
int main(){
    freopen("classroom.in","r",stdin);
    freopen("classroom.out","w",stdout);
    scanf("%d%d",&n,&m);
    for(int i = 1;i <= m;i++){
        int id,x,y;
        scanf("%d%d%d",&x,&y,&id);
        add(x,y);
        if(id == 2)add(y,x);
    }
    for(int i = 1;i <= n;i++)
        if(!color[i])tarjan(i);
    int ans = 0,s = 0;
    for(int i = 1;i <= n;i++){
        if(scc[color[i]].size() > s){
            s = scc[color[i]].size();
            ans = color[i];
        }//求最大强连通分量 且 字典序最小 
    }
    printf("%d\n",scc[ans].size());
    sort(scc[ans].begin(),scc[ans].end());
    for(int i = 0;i < scc[ans].size();i++)
        printf("%d ",scc[ans][i]);
    printf("\n");
    
    return 0;
    
}