HDU5630 Hiking(貪心+優先佇列)

bigbigship發表於2015-08-07

題目連結:傳送門

題意:

邀請n個人去參加聚會,對於第i個人只有當去人數大於等於li,小於等於ri的時候這個人才會去參加聚會,

讓你確定一個邀請的順序,使得最後去參加聚會的人數最多。

分析:

讀完題目後就感覺這個題是個貪心,但是沒有想好怎麼去維護,比賽完了看完題解感覺太水了。。。

首先肯定是要按照l對所有的數進行排序,比如說我們當前已經有tot個人確定參加了,那麼剩下的我們

還要貪心的進行選擇。選擇滿足l<=tot&&r>=tot中的r最小的那個人,很明顯,只有這樣選擇對後來人的

影響才是最小的。對整體才是最優的。

用優先佇列維護的程式碼:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <set>
#include <vector>
using namespace std;

const int maxn = 1e5+10;

struct nod{
    int l,r,id;
    bool operator < (const struct nod & tmp)const{
        return r > tmp.r;
    }
}p[maxn];

int ans[maxn];

bool vis[maxn];

bool cmp(const struct nod &p1,const struct nod &p2){
    if(p1.l==p2.l) return p1.r<p2.r;
    return p1.l<p2.l;
}

int main()
{
    int t,n;
    scanf("%d",&t);
    while(t--){
        scanf("%d",&n);
        for(int i=1;i<=n;i++){
            scanf("%d",&p[i].l);
            p[i].id=i;
        }
        for(int i=1;i<=n;i++){
            scanf("%d",&p[i].r);
        }
        sort(p+1,p+n+1,cmp);
        int tot=0,i=1,id=0;
        priority_queue<nod>Q;
        while(1){
            while(p[i].l<=tot&&i<=n)  Q.push(p[i]),i++;
            while(!Q.empty()){
                nod tmp = Q.top();
                if(tmp.r>=tot) break;
                ans[++id]=tmp.id;
                Q.pop();
            }
            if(Q.empty()) break;
            else{
                ans[++id] = Q.top().id;
                tot++;
                Q.pop();
            }
        }
        while(i<=n) ans[i]=p[i].id,i++;
        printf("%d\n",tot);
        for(int i=1;i<n;i++) printf("%d ",ans[i]);
        printf("%d\n",ans[n]);
    }
    return 0;
}
用set維護的程式碼:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <set>
using namespace std;

const int maxn = 1e5+10;

struct nod {
    int l ,r ,id ;
    bool operator < (const struct nod &tmp) const {
        if(l == tmp.l)
            return r < tmp.r ;
        return l<tmp.l ;
    }
} p[maxn];


int ans[maxn];

bool vis[maxn];

set<pair<int,int > >st;
set<pair<int,int > >::iterator it;

int main() {
    int t,n;
    scanf("%d",&t);
    memset(vis,0,sizeof(vis));
    while(t--) {
        scanf("%d",&n);
        for(int i=1; i<=n; i++) {
            scanf("%d",&p[i].l);
            p[i].id=i;
        }
        for(int i=1; i<=n; i++) {
            scanf("%d",&p[i].r);
        }
        sort(p+1,p+1+n);
        //memset(vis,0,sizeof(vis));
        int tot=0,i=1;
        st.clear();
        while(true) {
            while(tot>=p[i].l&&i<=n) st.insert(make_pair(p[i].r,p[i].id)),i++;
            if(st.size()==0) break;
            while(st.size()) {
                it = st.begin();
                if(it->first >= tot) break;
                st.erase(st.begin());
            }
            if(st.size()) {
                it = st.begin();
                ans[++tot] = it->second;
                vis[it->second]=1;
                st.erase(st.begin());
            }
        }
        printf("%d\n",tot);
        for(int i=1; i<=n; i++) {
            if(!vis[i]) ans[++tot]=i;
            else vis[i]=0;
        }
        for(int i=1; i<n; i++)
            printf("%d ",ans[i]);
        printf("%d\n",ans[n]);
    }
    return 0;
}


相關文章