Error curves (2010 Chengdu on-site competition questions)

Source: Internet
Author: User
F-error curves

Time limit:3000 MsMemory limit:0 KB64bit Io format:% LLD & % LlU

Description

Joseph Ina is a clever girl and addicted to machine learning recently. She pays much attention to a method called linear discriminant analysis, which has interesting properties.

In order to test the algorithm's efficiency, she collects collect datasets. what's more, each data is divided into two parts: training data and test data. she gets the parameters of the model on training data and test the model on test data.

To her surprise, she finds each dataset's test error curve is just a parabolic curve. A parabolic curve corresponds to a quadratic function. in mathematics, a quadratic function is a polynomial function of the formF (x) = ax2 + bx + c. The Quadratic will degrade to linear function ifA = 0.

 

It's very easy to calculate the minimal error if there is only one test error curve. however, there are several datasets, which means Joseph ina will obtain extends parabolic curves. joseph ina wants to get the tuned parameters that make the best performance on all datasets. so she shoshould take all error curves into account, I. E ., she has to deal with your quadric functions and make a new error definition to represent the total error. now, she focuses on the following new function's minimal which related to multiple quadric functions.

The new functionF (x)Is defined as follow:

F (x) = max (SI (x )),I= 1...N. The domainXIt is [0, 1000].Si (X)Is a quadric function.

Joseph ina wonders the minimumF (x). Unfortunately, it's too hard for her to solve this problem. As a super programmer, can you help her?

Input

The input contains multiple test cases. The first line is the number of casesT(T<100). Each case begins with a numberN(N≤ 10000). FollowingNLines, each line contains three IntegersA(0 ≤A≤ 100 ),B(|B| ≤ 5000 ),C(|C| ≤ 5000), which mean the corresponding coefficients of a quadratic function.

Output

For each test case, output the answer in a line. Round to 4 digits after the decimal point.

Sample Input
212 0 022 0 02 -4 2
Sample output
0.00000.5000

 

Simple.

It can be proved that many quadratic functions, f (x) = max (f (x), are still subconvex functions, similar to quadratic functions.

You can perform three-point processing.

 

#include<cmath>#include<iostream>#include<cstdio>#define max(x,y) ((x)<(y)?(y):(x))double l,r,a[10005],b[10005],c[10005],mid,mmid;int n;double f(double x){    double ans=-1000000000;    for(int i=1;i<=n;i++)        ans=max(ans,a[i]*x*x+b[i]*x+c[i]);    return ans;}int main(){    int tt;    scanf("%d",&tt);    while(tt--){        scanf("%d",&n);        for(int i=1;i<=n;i++)            scanf("%lf%lf%lf",&a[i],&b[i],&c[i]);        l=0;r=1000;        while(r-l>1e-10){            mid=(l+r)/2;            mmid=(mid+r)/2;            if(f(mid)<f(mmid)) r=mmid;            else l=mid;        }        printf("%.4f\n",f(mid));    }    return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.