#include<bits/stdc++.h>
using namespace std;
int main()
{
long T,r1,c1,r2,c2,c=1;
scanf("%ld",&T);
while(T--)
{
scanf("%ld%ld%ld%ld",&r1,&c1,&r2,&c2);
if(abs(r1-r2)==abs(c1-c2))
printf("Case %ld: 1\n",c++);
else if(abs(abs(r1-r2)-abs(c1-c2))%2==0)
printf("Case %ld: 2\n",c++);
else
printf("Case %ld: impossible\n",c++);
}
return 0;
}
Thursday, July 30, 2015
1202 - Bishops
Subscribe to:
Post Comments (Atom)
Triathlon
Triathlon - CodeChef # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define mp ...
-
# include < bits/stdc++.h > using namespace std ; int main ( ) { int T , c = 1 ; double r1 , r2 , h , p ; // ...
-
# include < bits/stdc++.h > using namespace std ; int main ( ) { long long T , S , l , n , c = 1 ; // freopen(&qu...
-
# include < bits/stdc++.h > using namespace std ; int main ( ) { int T , n , p , q , c = 1 , i , w , t , arry [ 50 ] ; ...
No comments:
Post a Comment