导航

2016年8月22日

摘要: struct Matrix { int h,w; long long mx[MAXS][MAXS]; Matrix() { h=0; w=0; memset(mx,0,sizeof(mx)); } Matrix operator* (const Matrix& b) const { ... 阅读全文

posted @ 2016-08-22 00:29 tun~ 阅读(153) 评论(0) 推荐(0) 编辑