Three Way Communication (CodeChef)145 views

AlgoPill
 function threeWayCommunication(R,X,Y){
    //Utility function to return a squared distance
    function d(X,Y,p1,p2){
        var x12 = X[p1] - X[p2];
        var y12 = Y[p1] - Y[p2];
        return x12*x12 + y12*y12;
    }

    var d01 = d(X,Y,0,1);
    var d02 = d(X,Y,0,2);
    var d12 = d(X,Y,1,2);
    R = R*R;
    if(d01<=R&&d02<=R){
        return "yes";
    }
    if((d01<=R||d02<=R)&&d12<=R){
        return "yes";
    }
    return "no";
}

Problem: This problem appeared in February Cookoff at CodeChef , following is the problem description from codechef.com
The Chef likes to stay in touch with his staff. So, the Chef, the head server, and the sous-chef all carry two-way transceivers so they can stay in constant contact. Of course, these transceivers have a limited range so if two are too far apart, they cannot communicate directly.
The Chef invested in top-of-the-line transceivers which have a few advanced features. One is that even if two people cannot talk directly because they are out of range, if there is another transceiver that is close enough to both, then the two transceivers can still communicate with each other using the third transceiver as an intermediate device.
There has been a minor emergency in the Chef’s restaurant and he needs to communicate with both the head server and the sous-chef right away. Help the Chef determine if it is possible for all three people to communicate with each other, even if two must communicate through the third because they are too far apart.
Input

The first line contains a single positive integer T ≤ 100 indicating the number of test cases to follow. The first line of each test case contains a positive integer R ≤ 1,000 indicating that two transceivers can communicate directly without an intermediate transceiver if they are at most R meters away from each other. The remaining three lines of the test case describe the current locations of the Chef, the head server, and the sous-chef, respectively. Each such line contains two integers X,Y (at most 10,000 in absolute value) indicating that the respective person is located at position X,Y.
Output

For each test case you are to output a single line containing a single string. If it is possible for all three to communicate then you should output “yes”. Otherwise, you should output “no”.
To be clear, we say that two transceivers are close enough to communicate directly if the length of the straight line connecting their X,Y coordinates is at most R.
Example

Input:
3
1
0 1
0 0
1 0
2
0 1
0 0
1 0
2
0 0
0 2
2 1

Output:
yes
yes
no

Solution: Solution to this problem is very simple. let the three people be represented by A,B and C.
Three can talk to each other if
1. A can talk to both B and C directly
In this case A can talk to B and C , B and C can talk via A
2. if A can talk to either B or C, and B can talk to C.
In this case B can talk to C , A can talk to either B or C , A can talk C or B via B or C repectively

Otherwise they all cannot talk to each other.

Post a Comment

You must be logged in to post a comment.