码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces Looksery Cup 2015 H Degenerate Matrix

时间:2015-06-07 13:52:04      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:codeforces   二分   

The determinant of a matrix 2?×?2 is defined as follows:

技术分享

A matrix is called degenerate if its determinant is equal to zero.

The norm ||A|| of a matrix A is defined as a maximum of absolute values of its elements.

You are given a matrix 技术分享. Consider any degenerate matrix B such that norm ||A?-?B|| is minimum possible. Determine||A?-?B||.

Input

The first line contains two integers a and b (|a|,?|b|?≤?109), the elements of the first row of matrix A.

The second line contains two integers c and d (|c|,?|d|?≤?109) the elements of the second row of matrix A.

Output

Output a single real number, the minimum possible value of ||A?-?B||. Your answer is considered to be correct if its absolute or relative error does not exceed 10?-?9.

Sample test(s)
input
1 2
3 4
output
0.2000000000
input
1 0
0 1
output
0.5000000000
Note

In the first sample matrix B is 技术分享

In the second sample matrix B is 技术分享

这道题可以用二分做,因为要求矩阵最大值的最小值,所以最后A矩阵的每个元素和B矩阵的每个元素差值都等于一个数时zuixiao

codeforces Looksery Cup 2015 H Degenerate Matrix

标签:codeforces   二分   

原文地址:http://blog.csdn.net/kirito_acmer/article/details/46400069

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!