同时复习了一下二者
这道题需要分析的情况比较复杂了
1, 如何处理等于号
把所有相等的点利用并查集缩成一个点
2, 如何判定UNCERTAIN
当队列中同时存在两及以上个点时,此时无法判断二者哪个更厉害
3, 如何判定OK / CONFLICT
这个和普通的toposort一样了,只需要判断读出了多少个点即可
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<cmath>
#define ll long long
#define inf 0x3f3f3f3f
using namespace std;
int ind[10005];
//int val[10005];
int u[10005];
int v[10005];
char c[10005];
vector<int> V[10005];
int pre[10005];
int n, m;
int num;
void init()
{
memset(ind, 0, sizeof(ind));
//memset(val, 0, sizeof(val));
for(int i = 0; i < n; i ++){
V[i].clear();
pre[i] = i;
}
}
int find(int a)
{
if(pre[a] == a) return a;
return pre[a] = find(pre[a]);
}
void join(int a, int b)
{
int i = find(a);
int j = find(b);
if(i == j) return ;
if(i < j) swap(i, j);
pre[i] = j;
num --;
}
void topo()
{
queue<int> q;
for(int i = 0; i < n; i ++)
if(! ind[i] && pre[i] == i)
{
q.push(i);
}
int cnt = 0;
bool flag = 0;
while(! q.empty())
{
if(q.size() > 1) flag = 1;
int h = q.front();
q.pop();
cnt ++;
for(int i = 0; i < V[h].size(); i ++)
{
int e = V[h][i];
ind[e] --;
if(! ind[e]){
q.push(e);
//cout<<val[e]<<' '<<val[h] + 1<<endl;
//val[e] = max(val[e], val[h] + 1);
//cout<<val[e]<<' '<<val[h] + 1<<endl;
}
}
}
if(cnt < num) printf("CONFLICT\n");
else if(flag) printf("UNCERTAIN\n");
else printf("OK\n");
}
int main()
{
while(scanf("%d%d",&n,&m) != EOF)
{
init();
num = n;
for(int i = 0; i < m; i ++)
{
scanf("%d %c %d",&u[i], &c[i], &v[i]);
if(c[i] == '=')
{
join(u[i], v[i]);
}
}
for(int i = 0; i < m; i ++)
{
int x = find(u[i]);
int y = find(v[i]);
if(c[i] == '<')
{
V[y].push_back(x);
ind[x] ++;
}
else if(c[i] == '>')
{
V[x].push_back(y);
ind[y] ++;
}
}
topo();
//cout<<num<<endl;
}
return 0;
}