摘要:
#include<bits/stdc++.h> using namespace std; #define int long long default_random_engine n(time(NULL)); int num_i(int l,int r){ uniform_int_distributi 阅读全文
摘要:
矩阵本体 struct Mat{ int mat[NUM][NUM]={}; int h,w; Mat operator + (const Mat oth){ Mat ans;ans.resize(h,w); for(int i=1;i<=h;++i) for(int j=1;j<=w;++j) a 阅读全文