美文网首页
poj1083 偏序问题

poj1083 偏序问题

作者: 暖昼氤氲 | 来源:发表于2019-11-04 16:46 被阅读0次
/*
Time:2019.11.4
Author: Goven
type:偏序问题 
err: 1.输入可能(14, 13) 
    2.房间是对着的,不是一字排开的,所以(2,3) (3,4)是不能同时走的 
ref: 类似1065:https://blog.csdn.net/AC_hell/article/details/51416840
*/
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
struct Node {
    int s, e;
};

Node a[205];
bool visit[205];
bool cmp(const Node &x, const Node &y) {
    if (x.s != y.s) return x.s < y.s;
    return x.e < y.e;
}

int main()
{
    int t, n, s, e;
    cin >> t;
    while (t--) {
        cin >> n;
        for (int i = 0; i < n; i++) {
            cin >> s >> e;
            s = (s + 1) / 2;//err2
            e = (e + 1) / 2; 
            a[i].e = max(s, e);//err1
            a[i].s = min(s, e);
        }
        sort(a, a + n, cmp);
        memset(visit, 0, sizeof(visit));
        int begin, flag, cnt = 0, sum = 0;
        while (cnt < n) {
            flag = 0; begin = -1;
            for (int j = 0; j < n; j++) {
                if (visit[j] == false && begin < a[j].s) {
                    begin = a[j].e;
                    visit[j] = true;
                    flag = 1;
                }
            }
            if (flag) sum++;
            cnt++;
        }
        cout << sum * 10 << endl;
    }
    return 0;
}



相关文章

  • poj1083 偏序问题

  • 事务si和ssi隔离级别

    rr隔离级别:有幻读但无写偏虚 si快照隔离级别:有写偏序但无幻读,写偏序问题的规避留给应用避免,应用使用sele...

  • 偏序(cdq bitset)

    题目链接:三维偏序 cdq分治: 题目链接:五维偏序

  • 偏序关系

    前言:到了二元关系中最后一部分,非常非常抽象,但是理解了就还好,我们一步一步来 0X00 「偏序关系」的基本定义 ...

  • POJ1083

    题目LINK 题意解释 题意是从一个房子到另一个房子搬桌子,题意中两个搬桌子的进程中,如果两者在使用走廊的过程中没...

  • 离散数学

    偏序:在整数集中定义偏序:若a能整除b,我们就记为a≺b显然它满足序公理。但整数集中,不是任何两个数都存在整除关系...

  • Dilworth定理

    狄尔沃斯定理(Dilworth's theorem)亦称偏序集分解定理,其定义是:对于任意有限偏序集,其最大反链中...

  • 一, 格的基本定义和性质 定义 偏序集定义: 偏序集中对任意两个元a, b, 在L中都存在一个元是他们...

  • poj来自群

    OJ上的一些水题(可用来练手和增加自信) (poj3299,poj2159,poj2739,poj1083,poj...

  • poj1065 偏序+LIS

网友评论

      本文标题:poj1083 偏序问题

      本文链接:https://www.haomeiwen.com/subject/llmdbctx.html