uva 10305 - Ordering Tasks

简介: 点击打开链接 题目意思:给定两个数n , m .n是任务的编号从1~n, m则是有m个关系式.求出一种做该任务的顺序(答案不唯一)。 解题思路:这一题是很简单的拓扑排序,直接利用拓扑排序的模板,然后注意输出就可以了。

点击打开链接

题目意思:给定两个数n , m .n是任务的编号从1~n, m则是有m个关系式.求出一种做该任务的顺序(答案不唯一)。

解题思路:这一题是很简单的拓扑排序,直接利用拓扑排序的模板,然后注意输出就可以了。

代码:

//直接利用拓扑排序的模板
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int MAXN = 110;

int num[MAXN][MAXN];
int ans[MAXN] , vis[MAXN];
int n , m , t;
//深搜
bool dfs(int i){
    for(int j = 1 ; j <= n; j++){
        if(num[i][j] == 1){//如果对应点值为1才继续
            if(!vis[j])//没被标记过就dfs
               dfs(j);
        }
    }
    vis[i] = 1;//更新vix[i]
    ans[t--] = i;//从后往前存储
    return true;
}
//拓扑排序
bool toposort(){
    t = n;//t的初始化为n
    memset(vis , 0 , sizeof(vis));//初始化为0
    for(int i = 1 ; i <= n; i++){
        if(vis[i] == 0){//如果没被标记过就执行dfs
            dfs(i);
        }
    }
    return true;
}
//主函数
int main(){
    int i , j ,k;
    while(cin>>n>>m){
        if(m == 0 && n == 0)
            break;
        memset(num , 0 , sizeof(num));
        memset(ans , 0 , sizeof(ans));
        memset(vis , 0 , sizeof(vis));
        for(k = 0 ; k < m ; k++){
            scanf("%d%d" , &i , &j);
            num[i][j] = 1;
        }
        toposort();
        k = 1;
        //输出格式(最后一个没有空格)
        while(ans[k] != 0){
            if(k == 1)
                cout<<ans[k];
            else
                cout<<" "<<ans[k];
            k++;
        }
        cout<<endl;
    }
    return 0;
}




目录
相关文章
UVa11565 - Simple Equations
UVa11565 - Simple Equations
52 0
|
Unix Python
LeetCode 71. Simplify Path
给定文件的绝对路径(Unix下的路径)字符串,简化此字符串。
87 0
LeetCode 71. Simplify Path
LeetCode 241. Different Ways to Add Parentheses
给定一个含有数字和运算符的字符串,为表达式添加括号,改变其运算优先级以求出不同的结果。你需要给出所有可能的组合的结果。有效的运算符号包含 +, - 以及 * 。
83 0
LeetCode 241. Different Ways to Add Parentheses
|
Perl
AtCoder Beginner Contest 217 F - Make Pair (区间dp)
AtCoder Beginner Contest 217 F - Make Pair (区间dp)
122 0
PAT (Advanced Level) Practice - 1096 Consecutive Factors(20 分)
PAT (Advanced Level) Practice - 1096 Consecutive Factors(20 分)
145 0
PAT (Advanced Level) Practice - 1004 Counting Leaves(30 分)
PAT (Advanced Level) Practice - 1004 Counting Leaves(30 分)
110 0