1. 程式人生 > >hdu 6180

hdu 6180

需要 stream def sort range str n) 但是 gin

題意:略

思路:是簡單的貪心,但是,一直不知道怎麽才能更好地實現,然後發現了multiset這種神奇的東西,然後發現一些隨時查找隨時刪除的時候很好用的工具,STL的map、multimap、set、multiset都有三個比較特殊的函數,lower_bound、upper_bound、equal_range。

原型如下:

iterator lower_bound (const value_type& val) const;

iterator upper_bound (const value_type& val) const;

pair<iterator,iterator> equal_range (const value_type& val) const;

這樣就可以在log時間內完成這道題需要的查找了~

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<set>
using namespace std;
const int maxn=1e5+10;
typedef long long LL;

struct node
{
    int l,r;
    node(int _l=0,int _r=0):l(_l),r(_r){}
    
bool operator < (const node &t)const {return l<t.l;} }p[maxn]; multiset<int>st; int main() { freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); int T,n,l,r; scanf("%d",&T); while(T--) { st.clear(); scanf("%d",&n);
for(int i=0;i<n;i++) { scanf("%d%d",&l,&r); p[i]=node(l,r); } sort(p,p+n); LL tol=0,ans=0; multiset<int>::iterator it; for(int i=0;i<n;i++) { it=st.upper_bound(p[i].l); if(it==st.begin()) { ans+=p[i].r-p[i].l; st.insert(p[i].r); tol++; } else { it--; ans+=p[i].r-(*it); st.erase(it); st.insert(p[i].r); } } printf("%lld %lld\n",tol,ans); } return 0; }

hdu 6180