zoukankan      html  css  js  c++  java
  • Codeforces 1041C(贪心+set)

    传送门

    题面:

    C. Coffee Break

    time limit per test

    2 seconds

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    Recently Monocarp got a job. His working day lasts exactly m

    minutes. During work, Monocarp wants to drink coffee at certain moments: there are n minutes a1,a2,…,an

    , when he is able and willing to take a coffee break (for the sake of simplicity let's consider that each coffee break lasts exactly one minute).

    However, Monocarp's boss doesn't like when Monocarp takes his coffee breaks too often. So for the given coffee break that is going to be on minute ai

    , Monocarp must choose the day in which he will drink coffee during the said minute, so that every day at least d minutes pass between any two coffee breaks. Monocarp also wants to take these n coffee breaks in a minimum possible number of working days (he doesn't count days when he is not at work, and he doesn't take coffee breaks on such days). Take into account that more than d

    minutes pass between the end of any working day and the start of the following working day.

    For each of the n

    given minutes determine the day, during which Monocarp should take a coffee break in this minute. You have to minimize the number of days spent.

    Input

    The first line contains three integers n

    , m, d (1≤n≤2⋅105,n≤m≤109,1≤d≤m)

     — the number of coffee breaks Monocarp wants to have, the length of each working day, and the minimum number of minutes between any two consecutive coffee breaks.

    The second line contains n

    distinct integers a1,a2,…,an (1≤ai≤m), where ai

    is some minute when Monocarp wants to have a coffee break.

    Output

    In the first line, write the minimum number of days required to make a coffee break in each of the n

    given minutes.

    In the second line, print n

    space separated integers. The i-th of integers should be the index of the day during which Monocarp should have a coffee break at minute ai. Days are numbered from 1

    . If there are multiple optimal solutions, you may print any of them.

    Examples

    Input

    Copy

    4 5 3
    3 5 1 2
    

    Output

    Copy

    3
    3 1 1 2 
    

    Input

    Copy

    10 10 1
    10 5 7 4 6 3 2 1 9 8
    

    Output

    Copy

    2
    2 1 1 2 2 1 2 1 1 2 
    

    Note

    In the first example, Monocarp can take two coffee breaks during the first day (during minutes 1

    and 5, 3 minutes will pass between these breaks). One break during the second day (at minute 2), and one break during the third day (at minute 3

    ).

    In the second example, Monocarp can determine the day of the break as follows: if the minute when he wants to take a break is odd, then this break is on the first day, if it is even, then this break is on the second day.

    题意:

        把n分成x块,使得每块里的数两两相差大于d,求最小的x.

    题目分析:

        因为要求使得x最小,因此此时的最优策略必定是从最小的时间开始取,一直向上拓展。

        因此我们可以贪心得每次都是由最小的时间开始取,然后不断的+d进行筛选即可。

        同时需要注意,因为d可能可以很小,而x的值可能很大,因此我们直接模拟去做可能会超时,因此我们可以考虑用二分去处理。我们可以用一个set去存储每一个值,每次做用lower_bound取查找第一个大于等于x+d+1的值即可,同时因为选过了的不能重复选,因此我们还需要将原来到结果删除即可。

    代码:

    #include <bits/stdc++.h>
    #define maxn 200005
    using namespace std;
    typedef long long ll;
    struct Node{
        int val,id;
        bool operator<(const Node &b)const{
            if(val==b.val) return id<b.id;
            else return val<b.val;
        }
        Node(int _val,int _id){
            val=_val,id=_id;
        }
    };
    set<Node>st;
    int ans[maxn];
    int main()
    {
        int n,m,d;
        //freopen("in.txt","r",stdin);
        cin>>n>>m>>d;
        for(int i=1;i<=n;i++){
            int num;
            scanf("%d",&num);
            st.insert(Node(num,i));
        }
        ll tmp=0,day=1;
        while(!st.empty()){
            if(st.lower_bound(Node(tmp,-1))==st.end()){
                tmp=0;
                day++;
            }
            else{
                auto it=*st.lower_bound(Node(tmp,-1));
                ans[it.id]=day;
                tmp=it.val+d+1;
                st.erase(it);
            }
        }
        cout<<day<<endl;
        for(int i=1;i<=n;i++){
            if(i==1) printf("%d",ans[i]);
            else printf(" %d",ans[i]);
        }
        return 0;
    }
    
  • 相关阅读:
    关于页面跳转
    javascript之继承
    ubuntu+mysql+php+apache2+wordpress建站全记录
    Vue双向绑定原理解析
    Excel导入
    Excel文件下载(导出)
    IDEA创建Activiti工作流(集成的方式,生成表)
    git基本操作
    git中分支操作
    整合dubbo的依赖
  • 原文地址:https://www.cnblogs.com/Chen-Jr/p/11007190.html
Copyright © 2011-2022 走看看