EOJ_1102_任务调度问题

//因为N<=100 所以边数可能<=100*100(每个点和其他99个点相连),边的内存不够,可能会爆栈
#include<bits/stdc++.h>

using namespace std;

#define MAXN 10100
#define MAXM 10001

typedef struct
{
    int t_ver, h_ver;
}E_NODE;//用于输入有向边的结构

typedef struct vl_node
{
    int ver;
    vl_node* link;
}VL_NODE;//用于建立邻接链表,定义链表中的一个结点的结构

typedef struct ch_node
{
    int count;
    VL_NODE* head;
}CH_NODE;//邻接链表的头节点

E_NODE e[MAXN];
CH_NODE ch[MAXN];
int tpv[MAXN];
int n,m;

void creat_adj_list(int n, int m, E_NODE e[], CH_NODE ch[])
{
    //创建邻接链表
    int i,u,v;
    VL_NODE* p;
    for(i = 1 ; i <= n ; i++){ 
        ch[i].count = 0;
        ch[i].head = NULL;
    }
    for(i = 1 ; i <= m ; i++){
        u = e[i].t_ver;
        v = e[i].h_ver;
        p = (VL_NODE*) malloc(sizeof(VL_NODE));
        p->ver = v;
        p->link = ch[u].head;
        ch[u].head = p;
        (ch[v].count)++;
    }
}

int topol_order(int n)
{
    int i,j,k;
    int top = 0;
    VL_NODE* t;
    for(i = 1 ; i <= n ; i++){
        if(ch[i].count == 0){
            ch[i].count = top;
            top = i;
        }
    }
    i = 0;
    while(top != 0){
        j = top;
        top = ch[top].count;
        tpv[++i] = j;
        t = ch[j].head;
        while(t != NULL){
            k  = t->ver;
            if(--(ch[k].count) == 0){
                ch[k].count = top;
                top = k;
            }
            t = t->link;
        }
    }
    return i;
}

int main()
{
    m = 1;
    cin >> n;
    for(int i = 1 ; i <= n ; i++){
        int count;
        cin >> count;
        if(!count) continue;
        else{
            for(int j = 0 ; j < count ; j++){
                int tmpVertex;
                cin >> tmpVertex;
                e[m].t_ver = tmpVertex;
                e[m++].h_ver = i;
            }
        }
    }
    m--;
    creat_adj_list(n,m,e,ch);
    cout << (topol_order(n) >= n) << endl;
    
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值