MSBOP 2015 Round3 register

Ended

Participants:978

Verdict:AC | TLE
Submitted:2015-05-09 16:35:02

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include<cstdio>
#include<cstdlib>
#include<ctime>
#include<cstring>
#include<cmath>
#include<malloc.h>
#include<algorithm>
#include<queue>
#include<stack>
#include<vector>
#include<deque>
#include<list>
#include<map>
#include<set>
#include<string>
#include<fstream>
#include<iostream>
#define me(x) memset(x,0,sizeof(x))
#define sy system("pause")
using namespace std;
struct point
{
    double x,y;
    point(double x=0,double y=0):x(x),y(y){}
    bool operator<(const point& X)const
    {
        if (x<X.x) return 1;
        if (x>X.x) return 0;
        return y<X.y;
    }
    point operator-(const point& X){return point(x-X.x,y-X.y);}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX