1. 程式人生 > >hdu 6180 Schedule

hdu 6180 Schedule

type cout += 結束時間 struct sin names logs typedef

題意:給出n個需要工作的時間區間,問最少需要幾臺機器,然後問機器工作的最少時間

思路:得出最少的機器後,我們可以求出每臺機器的開始時間,倒著求結束時間,減下就可以了

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 const int N=2e5+10;
 5 
 6 struct node{
 7     ll x;
 8     int type;
 9 }a[N];
10 ll b[N];
11 int cmp(node p,node q){
12     if(p.x==q.x) return
p.type<q.type; 13 return p.x<q.x; 14 } 15 16 int main(){ 17 int t; 18 cin>>t; 19 while(t--){ 20 int n; 21 int l=0; 22 scanf("%d",&n); 23 for(int i=1;i<=n;i++){ 24 scanf("%lld",&a[++l].x); 25 a[l].type=1; 26
scanf("%lld",&a[++l].x); 27 a[l].type=-1; 28 } 29 // cout<<1<<endl; 30 sort(a+1,a+1+l,cmp); 31 ll sum=0; 32 ll Max=0; 33 int r=0; 34 for(int i=1;i<=l;i++){ 35 if(a[i].type==1){ 36 sum++;
37 } 38 else sum--; 39 if(sum>Max){ 40 b[++r]=a[i].x; 41 //cout<<a[i].x<<" "; 42 } 43 Max=max(Max,sum); 44 } 45 ll ss=0; 46 cout<<Max<<" "; 47 ll ssum=0,MMax=0; 48 for(int i=l;i>=1;i--){ 49 if(a[i].type==-1){ 50 ssum++; 51 } 52 else ssum--; 53 if(ssum>MMax){ 54 ss+=a[i].x-b[r];r--; 55 } 56 MMax=max(MMax,ssum); 57 } 58 cout<<ss<<endl; 59 } 60 }

hdu 6180 Schedule