博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
矩阵乘法 --- hdu 4920 : Matrix multiplication
阅读量:5908 次
发布时间:2019-06-19

本文共 1143 字,大约阅读时间需要 3 分钟。

Matrix multiplication

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)

Total Submission(s): 820    Accepted Submission(s): 328

Problem Description
Given two matrices A and B of size n×n, find the product of them.
bobo hates big integers. So you are only asked to find the result modulo 3.
 

 

Input
The input consists of several tests. For each tests:
The first line contains n (1≤n≤800). Each of the following n lines contain n integers -- the description of the matrix A. The j-th integer in the i-th line equals A
ij. The next n lines describe the matrix B in similar format (0≤A
ij,B
ij≤10
9).
 

 

Output
For each tests:
Print n lines. Each of them contain n integers -- the matrix A×B in similar format.
 

 

Sample Input
1 0 1 2 0 1 2 3 4 5 6 7
 

 

Sample Output
0 0 1 2 1
 

 

Author
Xiaoxu Guo (ftiasch)
 

 

Source
 
 

 

Mean:

给你两个矩阵,计算两个矩阵的积。

 

nalyse:

很多人认为这题用暴力过不了,时间复杂度为O(n^3),800^3=512000000,差不多要接近于10^9了,可能是hdu的评测速度给力吧,再加上这题是单点评测,每个评测点的时限都有2000ms,所以说暴力过了也实属正常。

 

Time complexity:O(n^3)

 

Source code:

#include
int a[800][800],b[800][800],c[800][800],n,i,j,k;int main(){ while(scanf("%d",&n)!=EOF){ for(i=0;i

  

 

转载地址:http://hlppx.baihongyu.com/

你可能感兴趣的文章
Ubuntu - 硬盘分区、格式化、自动挂载配置
查看>>
如何防止别人通过地址直接访问
查看>>
linux常用软件列表
查看>>
Cinder 组件详解 - 每天5分钟玩转 OpenStack(47)
查看>>
我的友情链接
查看>>
C# 多线程的实现
查看>>
网络版CAD授权服务器设置多个CAD版本授权的方法整理
查看>>
DOS下导入导出MySQL备份
查看>>
我的友情链接
查看>>
网络犯罪如何取证
查看>>
好程序员web前端教程分享3种方法实现CSS隐藏滚动条并可以滚动内容
查看>>
Python 操作samba文件服务器
查看>>
SQL server常用操作命令
查看>>
我的友情链接
查看>>
ms sql convert的使用细节
查看>>
C# 协变与抗变详解
查看>>
Hadoop十大应用误解
查看>>
Linux自学笔记——Centos7系统之systemd
查看>>
Nginx源码安装及调优配置(一)
查看>>
工作流中间件,轻量级流程引擎,超时规则处理设计
查看>>