
数论
SugarSBN
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
高斯消元
/* 高斯消元 by sbn*/#include<iostream>#include<cstdio>using namespace std;double matrix[101][102];int n;double res[101];void debug(){ for (int i1=1;i1<=n;i1++) {原创 2017-12-25 19:50:34 · 167 阅读 · 0 评论 -
RMQ区间最值(线段树)
/* RMQ区间最值 线段树版 by sbn*/#include<iostream>#include<cstdio>using namespace std;int n;int arr[1000001],tree[2000001];void build(int root,int st,int ed){ if (st==ed) tree[root]=原创 2017-12-25 19:53:55 · 262 阅读 · 0 评论