模板
她也想起舞吗
这个作者很懒,什么都没留下…
展开
-
快速冥
typedef long long ll; ll mod_pow(ll x,ll n,ll mod) { ll res=1; while (n>0) { if(n&1) res=res*x%mod;//n&表示n/2 x=x*x%mod; n>>=1;//位运算,表示n/2 } retu原创 2017-09-04 16:03:00 · 647 阅读 · 0 评论 -
凸包
#include <stdio.h> #include <algorithm> #include <iostream> #include <string.h> #include <math.h> using namespace std; const double eps = 1e-8; int sgn(double x) { i...原创 2018-04-02 21:29:45 · 184 阅读 · 0 评论