
几何-扫描法/离散化
JeraKrs
本人目前就职于百度商业研发部,有需要内推的朋友简历可发我邮箱 jerakrs@qq.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hdu 4629 Burning(离散化)
题目链接:hdu 4629 Burning代码#include <cstdio> #include <cstring> #include <cmath> #include <algorithm>using namespace std; const double eps = 1e-10; inline int dcmp(double e) { if (fabs(e) < eps) return 0;原创 2015-11-17 10:43:39 · 844 阅读 · 0 评论 -
uva 1077 - The Sky is the Limit(离散化)
题目链接:uva 1077 - The Sky is the Limit代码#include <cstdio> #include <cstring> #include <cmath> #include <algorithm>using namespace std; const int maxn = 200005; const double eps = 1e-8;struct Point {原创 2015-12-03 21:12:59 · 1431 阅读 · 0 评论