随笔分类 - 建议
摘要:windows+.bat https://www.cnblogs.com/CXYscxy/p/11158900.html windows https://www.cnblogs.com/EdisonBa/p/13509379.html linux https://www.cnblogs.com/Ch
阅读全文
摘要:sys #include<bits/stdc++.h> using namespace std; int read(){ int x = 0; char c = getchar(); while(!isdigit(c))c = getchar(); do{x = x * 10 + (c ^ 48);
阅读全文
摘要:hi TabLineFill ctermbg=grey set nu set ruler set mouse=a set ts=4 set noswapfile set autoindent set hls map <F4> <ESC>:w <CR> <ESC>:! g++ % -o %< -O2
阅读全文
摘要:# 数学 高斯消元(P2455) ```cpp #include #include using namespace std; int n; double a[105][105]; void swap(double &x,double &y){double t = x; x = y; y = t;}
阅读全文