poj 3318(随机。。。。有正常的方法)

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <time.h>
 6 using namespace std;
 7 
 8 const int maxn=5e2+10;
 9 long A[maxn][maxn],B[maxn][maxn],C[maxn][maxn];
10 
11 int n;
12 
13 int main()
14 {
15     srand((unsigned)time(NULL));
16     while(scanf("%d",&n) != EOF)
17     {
18         for(int i=1;i<=n;i++)
19             for(int j=1;j<=n;j++)
20                 scanf("%d",&A[i][j]);
21         for(int i=1;i<=n;i++)
22             for(int j=1;j<=n;j++)
23                 scanf("%d",&B[i][j]);
24         for(int i=1;i<=n;i++)
25             for(int j=1;j<=n;j++)
26                 scanf("%d",&C[i][j]);
27         bool ans=1;
28         for(int x=0;x<60000;x++)
29         {
30             int i=rand()%n+1;
31             int j=rand()%n+1;
32             long sum=0;
33             for(int k=1;k<=n;k++)
34                 sum+=(A[i][k]*B[k][j]);
35             if(C[i][j] != sum)
36             {
37                 ans=0;
38                 break;
39             }
40         }
41         if(ans) puts("YES");
42         else puts("NO");
43     }
44     return 0;
45 }

 

转载于:https://www.cnblogs.com/Missa/archive/2012/12/16/2821006.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值