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

链接 :



http://acm.hdu.edu.cn/showproblem.php?pid=1811

题目为中文。

可以考虑把rating相同的人放到一个集合里 集合里的人可以认为按照编号排序的,可以使用并查集。

预处理了之后可以考虑在同一个集合里不会出现两个不同的rating 出现即为矛盾 否则可以 以两个集合的根节点建边。

图建好了之后可以保证每个点里面的人的rating相同。只需要再判断是否有环 、 拓扑序是否唯一。

判断拓扑序唯一就是每次队列中只能存在一个集合,否则就是可以有多种选择了。

#pragma comment(linker, "/STACK:10240000,10240000")
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <vector>
#include <cmath>
#include <queue>
#include <set>
#include <map>
#define mod 4294967296
#define MAX 0x3f3f3f3f
#define lson o<<1, l, m
#define rson o<<1|1, m+1, r
#define SZ(x) ((int)ans.size())
#define MAKE make_pair
#define INFL 0x3f3f3f3f3f3f3f3fLL
#define mem(a) memset(a, 0, sizeof(a))
const double pi = acos(-1.0);
const double eps = 1e-9;
const int N = 10005;
const int M = 20005;
typedef long long ll;
using namespace std;

int n, m, a[N], b[N];
char s[N][3];

int he[M], du[N];
struct C {
    int to, ne;
} e[N];

void add(int id, int x, int y) {
    e[id].to = y;
    e[id].ne = he[x];
    he[x] = id;
}

int f[N];
int Find(int x) {
    return x == f[x] ? x : f[x] = Find(f[x]);
}

int main()
{
    //freopen("in.txt","r",stdin);
    while(cin >> n >> m) {

        memset(he, -1, sizeof(he));
        mem(du);
        int tot = n;
        for(int i = 1; i <= n; i++) f[i] = i;
        for(int i = 1; i <= m; i++) {
            scanf("%d %s %d", &a[i], s[i], &b[i]);
            a[i]++, b[i]++;
            if(s[i][0] == '=') {
                int fa = Find(a[i]);
                int fb = Find(b[i]);
                if(fa != fb) {
                    f[fa] = fb;
                    tot--;
                }
            }
        }
        int ok1 = 0, ok2 = 0;
        for(int i = 1; i <= m; i++) {
            if(s[i][0] == '=') continue;
            int fa = Find(a[i]);
            int fb = Find(b[i]);
            if(fa == fb) {
                ok1 = 1;
                break;
            }
            if(s[i][0] == '>') {
                add(i, fa, fb);
                du[fb]++;
            } else {
                add(i, fb, fa);
                du[fa]++;
            }

        }
        if(ok1) {
            puts("CONFLICT");
            continue;
        }

        queue <int> q;
        for(int i = 1; i <= n; i++) {
            if(i == Find(i) && du[i] == 0) {
                q.push(i);
            }
        }

        while(!q.empty()) {
            if(q.size() > 1) ok2 = 1;
            int u = q.front(); q.pop();
            tot--;
            for(int i = he[u]; i != -1; i = e[i].ne) {
                du[ e[i].to ]--;
                if(du[ e[i].to ] == 0) q.push(e[i].to);
            }

        }
        if(tot >= 1) {
            puts("CONFLICT");
        } else if(ok2) {
            puts("UNCERTAIN");
        } else puts("OK");

    }

	return 0;
}
时间: 2024-10-14 00:21:21

HDU 1811 Rank of Tetris (并查集预处理 + 拓扑排序)的相关文章

hdu 1811 Rank of Tetris 并查集+拓扑排序,,提高题

Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 5672    Accepted Submission(s): 1616 Problem Description 自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想

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

Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5415    Accepted Submission(s): 1514 Problem Description 自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了

[HDOJ1811]Rank of Tetris(并查集、拓扑排序)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1811 求一堆数据的拓扑序. 处理:x>y就是x到y一条边,x<y就是y到x一条边.关键问题是处理x=y的情况. 假如x=y,就有问题了.假如不处理的话,可能会被当成少处理一个点而使结果编程UNCERTAIN.所以我们考虑用并查集来解决这个问题. 选谁当祖先?题中又给了一个其他的量叫做RP值,这个RP值的规律是序号越大RP值越大.这样我们可以在合并的时候,尽可能地将RP值大的数当成本集合的祖先. 1

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

Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4931 Accepted Submission(s): 1359 Problem Description自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他

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

Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 9267    Accepted Submission(s): 2668 Problem Description 自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想

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

Rank of Tetris Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description 自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球Tetris高手排行榜,定时更新,名堂要比福布斯富豪榜还响.关于如何排名,这个不用说都知道是根据Rating从高到低

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

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1811 分析: 很明显是道拓扑排序的题,有一点就是处理实力相等的问题: 可以用并查集把实力相等的组成一个集合. 说一下拓扑排序的性质: 1.如果入度为0的点大于1,则排序不唯一 2.如果排序的总数小于给定的数,则存在环路 献上代码: #include<stdio.h> #include<string.h> #include<algorithm> #include<ios

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

1 #include "cstdio" 2 #include "iostream" 3 #include "cstring" 4 #include "vector" 5 #include "queue" 6 using namespace std; 7 const int N = 10005; 8 int n, m, t; 9 int fa[N]; 10 int rank[N]; 11 int X[2*N]

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

原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1811 题意:有个很多关系,现在需要产生一个名单,有的人比有的人牛逼,有的人没有的人牛逼,有的人一样牛逼,现在需要通过牛逼程度排名,如果1比2牛逼,1的排名就比2前,如果1和2一样牛逼,就比两个人的人品,人品好的人排前面. 现在有三种情况: 1.正确 2.矛盾 3.无法确定 分析: 这里其他方面还是比较简单.首先确定三种情况的发生条件: 矛盾--存在环,也就是在toposort之后,没有把所有的点全都