hihoCoder
文章平均质量分 77
bubbleoooooo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hiho一下 第五十六周 高斯消元·一(高斯消元解整数方程组)
#include#include#include#include#include#includeusing namespace::std;const int N=510,M=1050;#define eps 1e-7double A[M][N];double x[N];int Gauss(int equ,int var){ int row,col; for(r原创 2015-07-26 10:15:51 · 632 阅读 · 2 评论 -
hiho一下 第五十七周 高斯消元·二(高斯消元解异或方程组)
//package project1;import java.io.*;import java.util.*;public class Main{ FastScanner in; int[][] A; int[] x; int Major[]; int dx[]={0,0,1,-1}; int dy[]={1,-1,0,0}; void Gauss(int equ,int va原创 2015-08-02 10:48:16 · 505 阅读 · 0 评论 -
hiho一下 第五十五周 连通性·四(无向图点双连通分量)
#include#include#includeusing namespace std;const int N=20010;const int M=202000;const int INF=0x7fffffff;struct edge{ int u,v,next; int id;}edge[M];int group[M],mmin[M];int cnt,hea原创 2015-07-24 17:08:46 · 503 阅读 · 0 评论
分享