HDU3342:Legal or Not(拓扑排序)

Legal or Not

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8903    Accepted Submission(s): 4147


Problem Description
ACM-DIY is a large QQ group where many excellent acmers get together. It is so harmonious that just like a big family. Every day,many "holy cows" like HH, hh, AC, ZT, lcc, BF, Qinz and so on chat on-line to exchange their ideas. When someone has questions, many warm-hearted cows like Lost will come to help. Then the one being helped will call Lost "master", and Lost will have a nice "prentice". By and by, there are many pairs of "master and prentice". But then problem occurs: there are too many masters and too many prentices, how can we know whether it is legal or not?

We all know a master can have many prentices and a prentice may have a lot of masters too, it's legal. Nevertheless,some cows are not so honest, they hold illegal relationship. Take HH and 3xian for instant, HH is 3xian's master and, at the same time, 3xian is HH's master,which is quite illegal! To avoid this,please help us to judge whether their relationship is legal or not. 

Please note that the "master and prentice" relation is transitive. It means that if A is B's master ans B is C's master, then A is C's master.
 

Input
The input consists of several test cases. For each case, the first line contains two integers, N (members to be tested) and M (relationships to be tested)(2 <= N, M <= 100). Then M lines follow, each contains a pair of (x, y) which means x is y's master and y is x's prentice. The input is terminated by N = 0.
TO MAKE IT SIMPLE, we give every one a number (0, 1, 2,..., N-1). We use their numbers instead of their names.
 

Output
For each test case, print in one line the judgement of the messy relationship.
If it is legal, output "YES", otherwise "NO".
 

Sample Input
  
3 2 0 1 1 2 2 2 0 1 1 0 0 0
 

Sample Output
  
YES NO
 

Author
QiuQiu@NJFU
 

Source
题意:给N个人,M个上下级关系,关系具有传递性,问是否存在冲突的情况。

思路:就是相当于判断有向图有无有向环,那么经过的点vis下就好了,然后加边时拓扑排序那样,入度变0才加进队列,就不会误判了。

# include <iostream>
# include <cstdio>
# include <cstdlib>
# include <cstring>
# include <vector>
# define pb push_back
using namespace std;
const int maxn = 1e2+30;
int n, a[maxn], in[maxn], q[maxn<<1];
vector<int>v[maxn];
int ans;
void solve()
{
    ans = 0;
    int icount = 0, l=0, r=0;
    for(int i=0; i<n; ++i)
        if(in[i] == 0)
            q[r++] = i, a[i] = 1, ++icount;
    if(icount == 0) {ans = -1;return;}
    while(l<r)
    {
        int u = q[l++];
        for(int i=0; i<v[u].size(); ++i)
        {
            if(in[v[u][i]] == 0){ans = -1;return;}
            if(--in[v[u][i]] == 0)
            {
                a[v[u][i]] = 1;
                ++icount;
                q[r++] = v[u][i];
            }
        }
    }
    if(icount < n) ans = -1;
}
int main()
{
    int m;
    while(~scanf("%d%d",&n,&m),m+n)
    {
        memset(a, 0, sizeof(a));
        memset(in, 0, sizeof(in));
        for(int i=0; i<n; ++i) v[i].clear();
        while(m--)
        {
            int a, b;
            scanf("%d%d",&a,&b);
            v[a].pb(b);
            ++in[b];
        }
        solve();
        printf("%s\n",ans==-1?"NO":"YES");
    }
    return 0;
}



内容概要:本文详细介绍了一种基于Simulink的表贴式永磁同步电机(SPMSM)有限控制集模型预测电流控制(FCS-MPCC)仿真系统。通过构建PMSM数学模型、坐标变换、MPC控制器、SVPWM调制等模块,实现了对电机定子电流的高精度跟踪控制,具备快速动态响应和低稳态误差的特点。文中提供了完整的仿真建模步骤、关键参数设置、核心MATLAB函数代码及仿真结果分析,涵盖转速、电流、转矩和三相电流波形,验证了MPC控制策略在动态性能、稳态精度和抗负载扰动方面的优越性,并提出了参数自整定、加权代价函数、模型预测转矩控制和弱磁扩速等优化方向。; 适合人群:自动化、电气工程及其相关专业本科生、研究生,以及从事电机控制算法研究与仿真的工程技术人员;具备一定的电机原理、自动控制理论和Simulink仿真基础者更佳; 使用场景及目标:①用于永磁同步电机模型预测控制的教学演示、课程设计或毕业设计项目;②作为电机先进控制算法(如MPC、MPTC)的仿真验证平台;③支撑科研中对控制性能优化(如动态响应、抗干扰能力)的研究需求; 阅读建议:建议读者结合Simulink环境动手搭建模型,深入理解各模块间的信号流向与控制逻辑,重点掌握预测模型构建、代价函数设计与开关状态选择机制,并可通过修改电机参数或控制策略进行拓展实验,以增强实践与创新能力。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值