区间的覆盖,没什么好说的
You, the best hacker in the world, want to download the books published on Google Book. After some investigation, you found that the address of each page consists of two parts. The first part is the page number, the second part is the signature which is unique for each page. To get the signature, you can send the query to the server. The query has one parameter, which indicates the page number. The server will return the signature of the required page, and it may also return the signature of some adjacent pages.
To minimize the bytes downloaded from the internet, and also make the server adminstrator hard to notice your "hack", you'd like to minimize the number of queries
Input
The input has multiple cases.
The first line of the input is a single integer T which is the number of test cases. Then T consecutive test cases follow. In each test case, the first line is a number N (1<=N<=5000), indicating the number of pages of the book. Then n lines follows. On the
 i-th line, there will be two integers ai and bi (ai<=i<=bi). They indicate that the query for the i-th page will return the signatures from page ai to page bi (inclusive)
Output
Results should be directed to standard output. The output of each test case should be a single integer, which is the minimum number of queries to get all the signatures.
Sample Input
2 3 1 1 2 2 3 3 3 1 1 1 3 3 3
Sample Output
3 1
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
using namespace std;
struct node
{
    int l,r;
}a[5500];
int n;
bool cmp(node a,node b)
{
    return a.l<b.l;
}
int main()
{
    int cs;
    cin>>cs;
    while(cs--)
    {
        cin>>n;
        for(int i=1;i<=n;i++)
            cin>>a[i].l>>a[i].r;
        a[n+1].l=0x3f3f3f3f;
        sort(a+1,a+1+n,cmp);
        int ans=0;
        int l=0,r=0,cur=0;
        for(int i=1;i<=n+1;i++)
        {
            if(cur>=n) break;
            if(a[i].l<=cur+1)
              r=max(r,a[i].r);
            else
            {
                ans++;
                cur=r;
                r=a[i].r;
            }
        }
        cout<<ans<<endl;
    }
    return 0;
} 
                   
                   
                   
                   
                             
       
           
                 
                 
                 
                 
                 
                
               
                 
                 
                 
                 
                
               
                 
                 扫一扫
扫一扫
                     
              
             
                   1117
					1117
					
 被折叠的  条评论
		 为什么被折叠?
被折叠的  条评论
		 为什么被折叠?
		 
		  到【灌水乐园】发言
到【灌水乐园】发言                                
		 
		 
    
   
    
   
             
            


 
            