Page 1 of 1

NEW Challenge!

Posted: Tue Mar 10, 2009 7:54 pm
by avansc
i missed these so i thought id start them up again.

challenge: design a function that takes a list of vertex's (how ever you choose) that form a convex polygon. then computes the surface of that polygon.

judging criteria:
1. who can make the function with the least lines.
2. who can make the function that calculates the area fastest.

all calculations have to be 98% accurate.
note: you can have two entries, one function for the fewest lines, and one function for the speed.

i will supply a file with a large convex polygon, and also a function for reading in the polygon.
however you are free to do it on your own.

thanks, and good luck!

here is a sample polygon at 10000 vertex's
http://www.mediafire.com/file/mzaiamjztnz/poly.bin

edit: polygon reader/parser

Code: Select all

void loadPoly(char *fileName)
{
    fstream binGet(fileName, ios::binary|ios::in);
    int num = 0;
    float data = 0;
    binGet.read((char*)&num, sizeof(int));
    printf("Number of vertex's = %d\n", num);

    for(int a = 0;a < num;a++)
    {
        binGet.read((char*)&data, sizeof(double));
        // set your vertex's X value here
        
        binGet.read((char*)&data, sizeof(double));
        // set your vertex's Y value here
    }
    binGet.close();
}

Re: NEW Challenge!

Posted: Tue Mar 10, 2009 7:57 pm
by M_D_K
AND NO POSTING ANSWERS IN THE THREAD PM THEM TO AVANSC

Re: NEW Challenge!

Posted: Tue Mar 10, 2009 7:58 pm
by avansc
well you can just post your line count and your numvertex's/second

Re: NEW Challenge!

Posted: Wed Mar 11, 2009 5:46 pm
by M_D_K
here is another poly.bin its the same as avansc's except the values are stored and meant to be read as doubles ;)

poly.bin

Re: NEW Challenge!

Posted: Sat Mar 21, 2009 11:12 pm
by eatcomics
Hey why don't you guys make a new board for challenges... Then we can have more contributions and they'll be easier to find in the forums... :mrgreen: that would be cool, then I might do one, I'm too lazy to find keep searching for the board when I reread the criteria... Ok well no I'm just too lazy to do the challenges but a new board would still be nice :lol: