zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    c8051f交叉开关
    8052定时器2的用法
    poj1010
    poj2101
    poj1958
    poj3444
    poj2977
    DataTable 相关操作
    C#中string和StringBuilder的区别
    DataTable排序,检索,合并,筛选
  • 原文地址:https://www.cnblogs.com/Missa/p/2821006.html
Copyright © 2011-2022 走看看