Pagini recente » Cod sursa (job #3204848) | Cod sursa (job #1476084) | Cod sursa (job #2140979) | Cod sursa (job #1361543) | Cod sursa (job #1540232)
// infoarena.ro/problema/cmap
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
class Main
{
public static void main(String[] args)
{
Point2D points[] = Point2D.read("cmap.in");
Point2D.print(Point2D.closest(points), "cmap.out");
}
}
class Point2D
{
int x, y;
public static final Comparator<Point2D> X_THAN_Y_ORDER = new XThanYOrder();
public Point2D(String text)
{
int space = text.indexOf(' ');
x = Integer.parseInt(text.substring(0, space));
y = Integer.parseInt(text.substring(space + 1));
}
public static Point2D[] read(String fileName)
{
Point2D points[] = null;
try {
FileInputStream fileInStreamObj = new FileInputStream(fileName);
InputStream inStreamObject = ((InputStream) fileInStreamObj);
Scanner sc = new Scanner(inStreamObject);
points = new Point2D[Integer.parseInt(sc.nextLine())];
for (int index = 0; index < points.length; ++index) {
points[index] = new Point2D(sc.nextLine());
}
sc.close();
} catch (IOException e) {
e.printStackTrace();
}
return points;
}
public static long distance(Point2D a, Point2D b)
{
return square(b.x - a.x) + square(b.y - a.y);
}
public static long square(int number)
{
return (long)number * number;
}
private static class XThanYOrder implements Comparator<Point2D>
{
public int compare(Point2D a, Point2D b)
{
//return (a.x != b.x) ? (a.x - b.x) : (a.y - b.y);
return a.x - b.x;
}
}
public static double closest(Point2D[] points)
{
long solution = Long.MAX_VALUE;
int frame = 4; // frame - 1 distances compared for each point
Arrays.sort(points, 0, points.length, Point2D.X_THAN_Y_ORDER);
for (int i = 0, end = points.length - 1; i < end; ++i) {
for (int j = i + 1, end2 = (i + frame > points.length ? points.length : i + frame); j < end2; ++j) {
if (solution > distance(points[i], points[j])) {
solution = distance(points[i], points[j]);
}
}
}
return Math.sqrt(solution);
}
public static void print(double number, String fileName)
{
try {
FileOutputStream fop = new FileOutputStream(fileName);
fop.write(String.format("%.6f", number).getBytes());
fop.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}