摘要: 矩阵模板(&quot;+&quot; &quot;-&quot; &quot;*&quot;) struct mat { int n,m; int a[maxn][maxn]; void zero() { memset(a,0,sizeof(a)); } void one() { zero(); for(int i=1;i<=n;i++) { a[i][i]=i; } } void resiz 阅读全文
posted @ 2024-03-13 10:49 藦兲轮の约顁 阅读(11) 评论(0) 推荐(1) 编辑