随笔分类 - 数学--高斯消元
摘要:题目 分析 高斯消元解异或方程组,和解普通方程组差不多。 范围有点大,要套一个bitset。 代码 #include <bits/stdc++.h> using namespace std; const int maxn = 1050; bitset<maxn> a[maxn*2]; int n,
阅读全文
摘要:题目 分析 高斯消元就是个大暴力。。。。 代码 #include <bits/stdc++.h> using namespace std; const int maxn = 105; const double eps = 1e-7; int n; double a[maxn][maxn], b[ma
阅读全文

浙公网安备 33010602011771号