题目:Problem - 1050 (hdu.edu.cn)
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c[200],d,e,temp;
cin>>a;
for(int i=0;i<a;i++){
cin>>b;
for(int i=0;i<200;i++){
c[i]=0;
}
for(int i=0;i<b;i++){
cin>>d>>e;
d=(d-1)/2;
e=(e-1)/2;
if(d>e){
temp=e;
e=d;
d=temp;
}
for(int f=d;f<=e;f++){
c[f]++;
}
}
int max=0;
for(int i=0;i<200;i++){
if(c[i]>max){
max=c[i];
}
}
cout<<max*10<<endl;
}
return 0;
}