Half of these cities are rich in resource (we call them rich cities) while the others are short of resource (we call them poor cities). Each poor city is short of exactly one kind of resource and also each rich city is rich in exactly one kind of resource. You may assume no two poor cities are short of one same kind of resource and no two rich cities are rich in one same kind of resource.
With the development of industry, poor cities wanna import resource from rich ones. The roads existed are so small that they're unable to ensure the heavy trucks, so new roads should be built. The poor cities strongly BS each other, so are the rich ones. Poor cities don't wanna build a road with other poor ones, and rich ones also can't abide sharing an end of road with other rich ones. Because of economic benefit, any rich city will be willing to export resource to any poor one.
Rich citis marked from 1 to n are located in Line I and poor ones marked from 1 to n are located in Line II.
The location of Rich City 1 is on the left of all other cities, Rich City 2 is on the left of all other cities excluding Rich City 1, Rich City 3 is on the right of Rich City 1 and Rich City 2 but on the left of all other cities ... And so as the poor ones.
But as you know, two crossed roads may cause a lot of traffic accident so JGShining has established a law to forbid constructing crossed roads.
For example, the roads in Figure I are forbidden.

#include <iostream>
using namespace std;
int poor[500001],f[500001];
int main() {
int n,i,a,b,len,left,mid,right,p=1;
while(cin>>n)
{
for(i=1;i<=n;i++)
{
cin>>a>>b;
poor[a]=b;
}
f[1]=poor[1];len=1;
for(i=1;i<=n;i++)
{
left=1;right=len;
while(left<=right)
{
mid=(left+right)/2;
if(f[mid]>=poor[i])
right=mid-1;
else
left=mid+1;
}
f[left]=poor[i];
if(left>len)
len++;
}
cout<<"Case "<<p++<<":"<<endl;
if(len>1)
cout<<"My king, at most "<<len<<" roads can be built."<<endl<<endl;
else
cout<<"My king, at most "<<len<<" road can be built."<<endl<<endl;
}
return 0;
}