Xlint101
Xlint101
全部文章
分类
acceleration(18)
ACM模板(26)
java(3)
kotlin(2)
stars(1)
日记(1)
未归档(30)
真·随笔(10)
配置(1)
题解(1)
归档
标签
去牛客网
登录
/
注册
Xlint101的博客
全部文章
(共2篇)
计算几何
#include <bits/stdc++.h> #pragma GCC diagnostic error "-std=c++11" #define SIS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)...
计算几何
2020-04-05
0
249
计算几何template
//template const double eps=1e-7; const double pi=3.14159265; struct Point { double x, y; Point( double x = 0, double y = 0 ):x(x), y(y) { } ...
计算几何
2020-10-10
0
273