zoukankan      html  css  js  c++  java
  • HDU-5360

    Hiking

    Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 76    Accepted Submission(s): 42
    Special Judge


    Problem Description
    There are n soda conveniently labeled by 1,2,,n. beta, their best friends, wants to invite some soda to go hiking. The i-th soda will go hiking if the total number of soda that go hiking except him is no less than li and no larger than ri. beta will follow the rules below to invite soda one by one:
    1. he selects a soda not invited before;
    2. he tells soda the number of soda who agree to go hiking by now;
    3. soda will agree or disagree according to the number he hears.

    Note: beta will always tell the truth and soda will agree if and only if the number he hears is no less than li and no larger than ri, otherwise he will disagree. Once soda agrees to go hiking he will not regret even if the final total number fails to meet some soda's will.

    Help beta design an invitation order that the number of soda who agree to go hiking is maximum.
     
    Input
    There are multiple test cases. The first line of input contains an integer T, indicating the number of test cases. For each test case:

    The first contains an integer n (1n105), the number of soda. The second line constains n integers l1,l2,,ln. The third line constains n integers r1,r2,,rn(0lirin)
    It is guaranteed that the total number of soda in the input doesn't exceed 1000000. The number of test cases in the input doesn't exceed 600.
     
    Output
    For each test case, output the maximum number of soda. Then in the second line output a permutation of 1,2,,n denoting the invitation order. If there are multiple solutions, print any of them.
     
    Sample Input

    4
    8
    4 1 3 2 2 1 0 3
    5 3 6 4 2 1 7 6
    8
    3 3 2 0 5 0 3 6
    4 5 2 7 7 6 7 6
    8
    2 2 3 3 3 0 0 2
    7 4 3 6 3 2 2 5
    8
    5 6 5 3 3 1 2 4
    6 7 7 6 5 4 3 5

     
    Sample Output
    7
    1 7 6 5 2 4 3 8
    8
    4 6 3 1 2 5 8 7
    7
    3 6 7 1 5 2 8 4
    0
    1 2 3 4 5 6 7 8
     
    Source
    /**
        题意:现在有n个人,然后soda想要n个人尽可能多的去野营,每个人去野营是要在soda询问他时,
              他所知道的去的人数大于等于L[i] 小于等于R[i]  然后问哪种询问顺序,可以使去的人数最多
        做法:结构体 + 优先队列  
            首先第一个人的L[i]必须是0,然后在同样的下标为L[i]的进队列,
            然后队列中的元素按照r[i]的大小排序,使得R[i]最小的优先
    **/
    #include <iostream>
    #include <stdio.h>
    #include <string.h>
    #include <algorithm>
    #include <cmath>
    #include <queue>
    using namespace std;
    #define maxn 100000 + 10
    int vis[maxn];
    int mmap[maxn];
    struct Node
    {
        int l;
        int r;
        int id;
        bool operator <(const Node &a)const
        {
            return r > a.r;
        }
        Node()
        {
            l = 0;
            r = 0;
            id = 0;
        }
    } node[maxn];
    int cmp(Node a,Node b)
    {
        if(a.l != b.l) return a.l < b.l;
        return a.r , b.r;
    }
    int main()
    {
        int T;
        scanf("%d",&T);
        while(T--)
        {
            int n;
            scanf("%d",&n);
            for(int i=0; i<n; i++)
            {
                scanf("%d",&node[i].l);
            }
            for(int i=0; i<n; i++)
            {
                scanf("%d",&node[i].r);
                node[i].id = i+1;
            }
            sort(node,node+n,cmp);
            memset(mmap,0,sizeof(mmap));
            priority_queue<Node>que;
            while(!que.empty()) que.pop();
            int sum = 0;
            int tt = 0;
            int tt1 = n-1;
            if(node[0].l != 0)
            {
                printf("0
    ");
                for(int i=0; i<n; i++)
                {
                    printf("%d",i+1);
                    if(i!= n-1) printf(" ");
                    else printf("
    ");
                }
                continue;
            }
            que.push(node[0]);
            Node now,tmp;
            int i = 1;
            while(!que.empty())
            {
                for(; node[i].l == sum&&i<n; i++)
                    que.push(node[i]);
                while(!que.empty())
                {
                    if(que.top().r >= sum)
                    {
                        int tx = que.top().id;
                        mmap[tt++] = tx;
                        sum++;
                        que.pop();
                        break;
                    }
                    else
                        mmap[tt1--] = que.top().id;
                    que.pop();
                }
                for(;node[i].l == sum&&i<n;i++)
                    que.push(node[i]);
            }
            for(;i<n;i++)
                mmap[tt1--] = node[i].id;
            printf("%d
    ",tt);
            for(i=0;i<n;i++)
            {
                printf("%d",mmap[i]);
                if(i!= n-1) printf(" ");
                    else printf("
    ");
            }
        }
        return 0;
    }
  • 相关阅读:
    设计模式----单例模式
    C++ 派生类
    C++ 操作符
    构造,清理,拷贝和移动
    php的yii框架开发总结10
    php的yii框架开发总结9
    php的yii框架开发总结8
    php的yii框架开发总结7
    php的yii框架开发总结6
    php的yii框架开发总结5
  • 原文地址:https://www.cnblogs.com/chenyang920/p/4708819.html
Copyright © 2011-2022 走看看