模板
文章平均质量分 76
earthquake_aaa
这个作者很懒,什么都没留下…
展开
-
求Pell方程解
#include #include #include using namespace std; struct PellAns { int p,q; }; struct Node { int g,h; }; PellAns Solve(int n) { PellAns s[4]; Node w[4]; int a[4]; s[0].p=转载 2015-08-24 12:04:03 · 561 阅读 · 0 评论 -
The Water Problem(RMQ)
The Water Problem Time Limit: 1500/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 1634 Accepted Submission(s): 1245 点击打开链接 Problem D原创 2015-09-14 19:43:40 · 353 阅读 · 0 评论 -
位操作实现加减乘除和幂运算
位操作实现加减乘除和幂运算 位操作在一定程度上加快了计算的速度,上本科的时候实现过位运算的各种运算,时间长了已经忘光了,拿出来重新实现实现。 位操作回顾 与(&):同真为真,其余为假 0&0=0、0&1=0、1&0=0、1&1=1 或(|):有真为真,无真为假0|0=0、0|1=1、1|0=1、1|1=1 非(~):真变假,假变真~0=1、~...原创 2018-08-28 22:07:43 · 1322 阅读 · 1 评论