zoukankan      html  css  js  c++  java
  • 摊位预订Stall Reservations

    题目描述

    Oh those picky N (1 <= N <= 50,000) cows! They are so picky that each one will only be milked over some precise time interval A..B (1 <= A <= B <= 1,000,000), which includes both times A and B. Obviously, FJ must create a reservation system to determine which stall each cow can be assigned for her milking time. Of course, no cow will share such a private moment with other cows.

    Help FJ by determining:The minimum number of stalls required in the barn so that each cow can have her private milking periodAn assignment of cows to these stalls over timeMany answers are correct for each test dataset; a program will grade your answer.

    约翰的N(l<N< 50000)头奶牛实在是太难伺候了,她们甚至有自己独特的产奶时段.当 然对于某一头奶牛,她每天的产奶时段是固定的,为时间段A到B包括时间段A和时间段B.显然,约翰必须开发一个调控系统来决定每头奶牛应该被安排到哪个牛棚去挤 奶,因为奶牛们显然不希望在挤奶时被其它奶牛看见.

    约翰希望你帮他计算一下:如果要满足奶牛们的要求,并且每天每头奶牛都要被挤过奶,至少需要多少牛棚 •每头牛应该在哪个牛棚被挤奶。如果有多种答案,你只需任意一种即可。

    输入格式

    Line 1: A single integer, N

    Lines 2..N+1: Line i+1 describes cow i's milking interval with two space-separated integers.

    输出格式

    Line 1: The minimum number of stalls the barn must have.

    Lines 2..N+1: Line i+1 describes the stall to which cow i will be assigned for her milking period.

    输入输出样例

    输入 #1
    5
    1 10
    2 4
    3 6
    5 8
    4 7
    输出 #1
    4
    1
    2
    3
    2
    4

    说明/提示

    Explanation of the sample:

    Here's a graphical schedule for this output:

    Time 1 2 3 4 5 6 7 8 9 10

    Stall 1 c1>>>>>>>>>>>>>>>>>>>>>>>>>>>

    Stall 2 .. c2>>>>>> c4>>>>>>>>> .. ..

    Stall 3 .. .. c3>>>>>>>>> .. .. .. ..

    Stall 4 .. .. .. c5>>>>>>>>> .. .. ..Other outputs using the same number of stalls are possible.

    由@FlierKing提供spj

    #include<cstdio>
    #include<algorithm>
    #include<iostream>
    using namespace std;
    
    #define LL long long
    #define res register int
    #define inf 0x3f3f3f3f
    
    const int N=1e5+10,M=1e6+10;
    
    int pos[M],n,maxx,ans,tim[N],pen[N],x,y;
    
    inline int read(){
        int s=0,w=1;
        char ch=getchar();
        while(ch<'0'||ch>'9'){
            if(ch=='-'){
                w=-1;
            }
            ch=getchar();
        }
        while(ch>='0'&&ch<='9'){
            s=s*10+ch-'0';
            ch=getchar();
        }
        return s*w;
    }
    
    struct mdzz{
        int l,r,id;
    }seg[N];
    
    inline bool cmp(mdzz a,mdzz b){
        return a.l<b.l;
    }
    int main(){
        n=read();
        for(res i=1;i<=n;i++){
            x=read();
            y=read();
            seg[i]=(mdzz){x,y,i};
            pos[x]++,pos[y+1]--;
            maxx=max(maxx,y);
        }
        int a=0;
        for(res i=1;i<=maxx;i++){
            a+=pos[i];
            ans=max(ans,a);
        }
        printf("%d
    ",ans);
        sort(seg+1,seg+1+n,cmp);
        for(res i=1;i<=n;i++){
            for(res k=1;k<=ans;k++){
                if(pen[k]<seg[i].l){
                    pen[k]=seg[i].r,tim[seg[i].id]=k;break;
                }
            }
        }
        for(res i=1;i<=n;i++){
           printf("%d
    ",tim[i]);
       }
        return 0;
    }
  • 相关阅读:
    深入理解 C/C++ sizeof() 运算符
    Luogu2040 | 打开所有的灯 (广搜+状压)
    Intel 8086 标志寄存器及JCC指令表
    Intel 8086 常用汇编指令表
    PTA L2-029 | 特立独行的幸福 (打表+递归)
    C++中为什么要用指针,而不直接使用对象?
    c#中基本类型占用字节数
    c++TXT文件读入
    较为初始的学生成绩管理系统
    C++中各种数据成员及成员函数的定义及使用
  • 原文地址:https://www.cnblogs.com/hrj1/p/11211690.html
Copyright © 2011-2022 走看看