HDU 1811 Rank of Tetris ??????????????? + ????????????

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1811 Rank of Tetris ??????????????? + ????????????相关的知识,希望对你有一定的参考价值。

???????????????   eric   ??????   ??????   main   stdin   ??????   ??????   init   

??????Lele?????????Rating???????????????Tetris????????????????????????????????????????????????????????????????????????

????????????????????????????????????????????????Lele???????????????????????????????????????????????????Tetris??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Rating???????????????????????????????????????????????????Rating???????????????????????????RP?????????????????????

?????????Lele????????????????????????N?????????????????????????????????????????????????????????????????????????????????0???N-1,?????????????????????RP????????????
??????Lele??????????????????????????????M????????????Rating?????????????????????????????????????????????????????????"A > B","A = B","A < B"???????????????A???Rating??????B,??????B,??????B???

??????Lele????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"OK"?????????????????????????????????????????????????????????????????????????????????"UNCERTAIN"??????????????????????????????????????????????????????"CONFLICT"??????
????????????????????????????????????????????????????????????????????????"CONFLICT"???
Input
?????????????????????????????????????????????????????????
???????????????????????????????????????N,M(0<=N<=10000,0<=M<=20000),?????????????????????????????????????????????????????????
????????????M??????????????????????????????
Output
??????????????????????????????????????????????????????
Sample Input
3 3
0 > 1
1 < 2
0 > 2
4 4
1 = 2
1 > 3
2 > 0
0 > 1
3 3
1 > 0
1 > 2
2 < 1
Sample Output
OK
CONFLICT
UNCERTAIN
???????????????
1.????????????OK
2.???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????n????????????-1
3.????????????????????????????????????????????????????????????>1???????????????????????????0???????????????????????????

???????????????

#include<cstdio>
#include<string>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<cstring>
#include<set>
#include<queue>
#include<algorithm>
#include<vector>
#include<map>
#include<cctype>
#include<stack>
#include<sstream>
#include<list>
#include<assert.h>
#include<bitset>
#include<numeric>
#define debug() puts("++++")
#define gcd(a,b) __gcd(a,b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a,b,sizeof(a))
#define sz size()
#define be begin()
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
#define all 1,n,1
#define rep(i,n,x) for(int i=(x); i<(n); i++)
#define in freopen("in.in","r",stdin)
#define out freopen("out.out","w",stdout)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> P;
const int INF = 0x3f3f3f3f;
const LL LNF = 1e18;
const int maxm = 1e6 + 10;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int dx[] = {-1,1,0,0,1,1,-1,-1};
const int dy[] = {0,0,1,-1,1,-1,1,-1};
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

using namespace std;

const int maxn = 10010;
const int mod = 142857;

int n,m,num;
queue<int> q;
vector<int> G[20010];
char c[20010];
int inDeg[10010],fa[10010];
int a[20010],b[20010];

void init()
{
    for(int i=0;i<=n;i++)
    {
        fa[i]=i;
        G[i].clear();
    }
}

int Find(int x)
{
    if(fa[x] == x) return x;
    return fa[x]=Find(fa[x]);
}

int join(int x,int y)
{
    int fx=Find(x);
    int fy=Find(y);
    if(fx==fy) return 0;
    if(fx!=fy)
    {
        fa[fy]=fx;
    }
    return 1;
}

void topSort()
{
    int ok=0;
    while(!q.empty()) q.pop();//
    for(int i=0; i<n; i++) if(!inDeg[i] && Find(i)==i) q.push(i); //?????????0???????????????????????????????????????
    while(!q.empty())
    {
        if(q.size()>1) ok=1;
        int now = q.front(); q.pop();
        num--;
        for(int i=0;i<G[now].size();i++)
        {
            int nxt = G[now][i];
            if(--inDeg[nxt] == 0)
            {
                q.push(nxt);
            }
        }
    }
    if(num>0) printf("CONFLICT
");
    else if(ok) printf("UNCERTAIN
");
    else  printf("OK
");
}

int main()
{
    while(~scanf("%d%d",&n,&m))
    {
        init();
        memset(inDeg,0,sizeof(inDeg));
        num=n;
        for(int i=0;i<m;i++)
        {
            scanf("%d %c %d",&a[i],&c[i],&b[i]);
            if(c[i] == '=') //????????????????????????
            {
                if(join(a[i],b[i])) //???????????????WA??????????????????????????????????????????????????????
                    num--;
            }
        }
        for(int i=0;i<m;i++)
        {
            if(c[i]=='=') continue;
            int x=Find(a[i]);
            int y=Find(b[i]);
            if(c[i] == '>')
            {
                G[x].push_back(y);
                inDeg[y]++;
            }
            if(c[i] == '<')
            {
                G[y].push_back(x);
                inDeg[x]++;
            }
        }
        topSort();
    }
}

以上是关于HDU 1811 Rank of Tetris ??????????????? + ????????????的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1811 Rank of Tetris ??????????????? + ????????????

HDU 1811:Rank of Tetris(并查集+拓扑排序)

hdu 1811 Rank of Tetris 并查集+拓扑排序

HDU 1811 Rank of Tetris(拓扑排序+并查集)

HDU 1811:Rank of Tetris(并查集+拓扑排序)

HDU 1811 Rank of Tetris(并查集+拓扑排序 非常经典)