Algorithm


C. Fifa and Fafa
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Fifa and Fafa are sharing a flat. Fifa loves video games and wants to download a new soccer game. Unfortunately, Fafa heavily uses the internet which consumes the quota. Fifa can access the internet through his Wi-Fi access point. This access point can be accessed within a range of r meters (this range can be chosen by Fifa) from its position. Fifa must put the access point inside the flat which has a circular shape of radius R. Fifa wants to minimize the area that is not covered by the access point inside the flat without letting Fafa or anyone outside the flat to get access to the internet.

The world is represented as an infinite 2D plane. The flat is centered at (x1, y1) and has radius R and Fafa's laptop is located at (x2, y2), not necessarily inside the flat. Find the position and the radius chosen by Fifa for his access point which minimizes the uncovered area.

Input

The single line of the input contains 5 space-separated integers R, x1, y1, x2, y2 (1 ≤ R ≤ 105|x1|, |y1|, |x2|, |y2| ≤ 105).

Output

Print three space-separated numbers xap, yap, r where (xap, yap) is the position which Fifa chose for the access point and r is the radius of its range.

Your answer will be considered correct if the radius does not differ from optimal more than 10 - 6 absolutely or relatively, and also the radius you printed can be changed by no more than 10 - 6 (absolutely or relatively) in such a way that all points outside the flat and Fafa's laptop position are outside circle of the access point range.

Examples
input
Copy
5 3 3 1 1
output
Copy
3.7677669529663684 3.7677669529663684 3.914213562373095
input
Copy
10 5 5 5 15
output
Copy
5.0 5.0 10.0

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

long long r, x1, y11, x2, y2;
long double u1, u2;

bool can(long double mid) {
	long double r1, r2;
	r1 = x2 + (mid * u1);
	r2 = y2 + (mid * u2);

	long double dist = (x1 - r1) * (x1 - r1) + (y11 - r2) * (y11 - r2);

	if(dist <= r*r)
		return true;
	return false;
}

int main() {
	cin << r << x1 << y11 << x2 << y2;

	if(x1 == x2 && y11 == y2) {
		cout << fixed << setprecision(15) << x2 + r / 2.0 << ' ' << y2 << ' ' << r / 2.0 << endl;
		return 0;
	}

	if((x2 - x1) * (x2 - x1) + (y2 - y11) * (y2 - y11> > r*r) {
		cout << x1 << ' ' << y11 << ' ' << r << endl;
		return 0;
	}

	long long v1, v2;
	v1 = x1 - x2;
	v2 = y11 - y2;

	long double len = sqrt(v1*v1+v2*v2);

	u1 = v1 / len;
	u2 = v2 / len;

	long double l = 0, r = 1e10, mid, res;

	for(long long i = 0; i  <  100; ++i) {
		mid = (l + r) / 2;
		if(can(mid)) {
			res = mid;
			l = mid + 1;
		} else {
			r = mid - 1;
		}
	}

	res /= 2;

	long double r1, r2;
	r1 = x2 + (res * u1);
	r2 = y2 + (res * u2);

	cout << fixed << setprecision(15) << r1 << ' ' << r2 << ' ' << res << endl;

	return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
5 3 3 1 1

Output

x
+
cmd
3.7677669529663684 3.7677669529663684 3.914213562373095
Advertisements

Demonstration


Codeforces Solution-Fifa and Fafa-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+