[Offer收割]编程练习赛14 register

Ended

Participants:574

Verdict:Time Limit Exceeded
Score:70 / 100
Submitted:2017-04-16 12:52:55

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<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#define INF 0x3f3f3f3f
#define eps 1e-12
#define lowbit(x) (x&(-x))
#define Max(a,b) a>b?a:b
#define Min(a,b) a<b?a:b
const int dx[8] = { 0, 0, 1, -1, 1, 1, -1, -1 };
const int dy[8] = { 1, -1, 0, 0, -1, 1, -1, 1 };
using namespace std;
int n;
double r;
inline double Fabs(double x){
    if (x>0){
        return x;
    }
    else{
        return -x;
    }
}
struct Point{
    double x, y;
    Point() {}
    Point(double _x, double _y){
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX