E - Cleaning Shifts POJ - 2376
Posted sunchuangyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了E - Cleaning Shifts POJ - 2376相关的知识,希望对你有一定的参考价值。
贪心,有一些点少不留意就会wa
#include <iostream> #include <cstdio> #include <cstring> #include <limits> //#include <stack> #include<queue> #include <algorithm> #define endl ‘ ‘ #define _for(i,a,b) for(int i=a;i<b;i++) using namespace std; const int N = 1e5+5; typedef long long ll; int n,t; struct Node{ int l,r; bool operator < (const Node &o)const{ if( l!= o.l ) return l<o.l; return r > o.r; } }a[N]; int main(){ ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); cin>>n>>t; _for(i,0,n){ cin>>a[i].l>>a[i].r; if( a[i].l > a[i].r ) swap( a[i].l,a[i].r ); } sort(a,a+n); int pos = 1,R = a[0].r,cnt = 1; while(R<t){ int flag = 0,M = R; while( pos<n && a[pos].l <= R+1 ) M = max(M,a[pos].r),pos++,flag = 1; if( flag ==0 || M<= R ) break; R = M; cnt++; } if( a[0].l>1 || R<t ){ cout<<-1<<endl; return 0; } else cout<<cnt<<endl; return 0; }
以上是关于E - Cleaning Shifts POJ - 2376的主要内容,如果未能解决你的问题,请参考以下文章