I have written a code. Its an easy code but when I try to post it in spoj it gives me wrong answer. Can anyone tell me whats wrong in my code, may be I am missing something, problem statement is here offside
#include<iostream>
#include<algorithm>
#include<vector>
#include<cstdio>
#include<stdlib.h>
using namespace std;
#define MAX 10000;
int main()
{
vector<long long int> v2;
long long int a,b,c,d,i;
scanf("%lld %lld",&a,&b);
while (a!=0 && b!=0)
{
long long int z = MAX;
for(i=0;i<a;i++)
{
scanf("%lld",&c);
if(z>c)
{
z=c;
}
}
for(i=0;i<b;i++)
{
scanf("%lld",&d);
v2.push_back(d);
}
sort(v2.begin(),v2.end());
if (z < v2[1])
printf("Y\n");
else
printf("N\n");
scanf("%lld %lld",&a,&b);
}
return 0;
}
z is min_distance attacking player. v2 is 2nd min_distance defensive player code works fine on the sample test cases.. simply finding the minimum of attacking players. n 1st n 2nd minimum of defending players.. if min_attacking player is less than 2nd min of defending he will be offside..
this is sample:
Input:
2 3
500 700
700 500 500
2 2
200 400
200 1000
3 4
530 510 490
480 470 50 310
0 0
Output:
N
Y
N