Giter VIP home page Giter VIP logo

ieeextreme-10-solutions's People

Contributors

eneskeles avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

irindu

ieeextreme-10-solutions's Issues

the define didn't work well so i change it to a method

#include
#include <math.h>
#define sqr(aa) ((aa)*(aa))
using namespace std;
double di(double a,double b,double c,double d ){
double i=sqr(a-c);
double j=sqr(b-d);
return sqrt(i+j);
}
int main()
{
int T;

cin>>T;

while (T--)
{
    int x1[50], x2[50], y1[50], y2[50], r[50];
    int n;

    cin>>n;

    for (int i = 1; i <= n; ++i)
        cin>>x1[i]>>y1[i]>>x2[i]>>y2[i]>>r[i];

    int count = 0;

    for (double i = -50.0 ; i <= 50.0 ; i += 0.1)
        for (double j = -50; j <= 50.0 ; j += 0.1)
        {
            int k;
            for (k = 1; k <= n; ++k)
                
                if ((di(i, j, x1[k], y1[k]) + di(i, j, x2[k], y2[k])) <= r[k] )
                    break;

            if(k == n+1)
                count++;
        }

    cout<<(int)round((double)count/10000)<<"%"<<endl;
}

}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.