摘要: 思路: 自己的一点心得:中间矩阵为最终矩阵。 搞出来很简单的;#include using namespace std;const int N=1e2+10;const int mod=7;struct asd{ int num[3][3];};asd mul(asd a,a... 阅读全文
posted @ 2016-09-05 23:24 see_you_later 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 思路: 中间矩阵等于结果矩阵。 很简单的一题。#include using namespace std;const int N=1e2+10;const int mod=7;struct asd{ int num[3][3];};asd mul(asd a,asd b){ ... 阅读全文
posted @ 2016-09-05 23:10 see_you_later 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 题意: 算从左往右的值,先乘后加的值,数的范围using namespace std;const int N=1e2+10;int zhi[N];char s[N];int main(){ int n; while(~scanf("%s",s)) { ... 阅读全文
posted @ 2016-09-05 22:36 see_you_later 阅读(153) 评论(0) 推荐(0) 编辑