题目1001:A+B for Matrices
Posted AlvinZH
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目1001:A+B for Matrices相关的知识,希望对你有一定的参考价值。
题目链接:http://ac.jobdu.com/problem.php?pid=1001
详解连接:https://github.com/Pacsiy/JobDu
参考代码:
// // Created by AlvinZH on 2017/4/24. // Copyright (c) AlvinZH. All rights reserved. // #include <iostream> #include <cstdio> using namespace std; int main() { int n,m,a; int mat1[100][100]; int ans; while(~scanf("%d",&n)) { if(n==0) break; scanf("%d",&m); ans=0; for(int i=0;i<n;i++) for(int j=0;j<m;j++) scanf("%d",&mat1[i][j]); for(int i=0;i<n;i++) for(int j=0;j<m;j++) { scanf("%d",&a); mat1[i][j]+=a; } for(int i=0;i<n;i++) { bool flag=true; for(int j=0;j<m;j++) { if(mat1[i][j]!=0) { flag=false; break; } } if(flag) ans++; } for(int j=0;j<m;j++) { bool flag=true; for(int i=0;i<n;i++) { if(mat1[i][j]!=0) { flag=false; break; } } if(flag) ans++; } printf("%d\n",ans); } return 0; }
以上是关于题目1001:A+B for Matrices的主要内容,如果未能解决你的问题,请参考以下文章
论文笔记-Augmented Lagrange Multiplier Method for Recovery of Low-Rank Matrices
论文笔记-Augmented Lagrange Multiplier Method for Recovery of Low-Rank Matrices
论文笔记-Augmented Lagrange Multiplier Method for Recovery of Low-Rank Matrices