hdu4331 Image Recognition

來源:互聯網
上載者:User
Image Recognition

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 964    Accepted Submission(s): 371


Problem DescriptionNow there is an image recognition problem for you. Now you are given an image which is a N * N matrix and there are only 0s and 1s in the matrix. And we are interested in the squares in whose four edges there is no 0s. So it’s your task to find how many such
squares in the image. 


InputThe first line of the input contains an integer T (1<=T<=10) which means the number of test cases. 
For each test cases, the first line is one integer N (1<=N<=1000) which is the size of the image. Then there are N lines and each line has N integers each of which is either 0 or 1. 


OutputFor each test case, please output a line which is "Case X: Y", X means the number of the test case and Y means the number of the squares we are interested in in the image. 


Sample Input

131 1 01 1 00 0 0
 


Sample Output

Case 1: 5
 


Source2012 Multi-University Training Contest 4 


Recommendzhoujiaqi2010正歸的做法應該是線段樹,沒想到用暴力過了,呵呵

#include <iostream>#include <stdio.h>#include <string.h>using namespace std;#define MAXN 1005int up[MAXN][MAXN];int lleft[MAXN][MAXN];int map[MAXN][MAXN];int fmin(int a,int b){    if(a<b)    return a;    return b;}int main(){    int n,tcase,i,j,t=1;    int ans;    scanf("%d",&tcase);    while(tcase--)    {        scanf("%d",&n);        ans=0;        memset(lleft,0,sizeof(lleft));        memset(up,0,sizeof(up));        for(i=1;i<=n;i++)            for(j=1;j<=n;j++)            {                scanf("%d",&map[i][j]);                if(map[i][j])                {                    ans++;                    lleft[i][j]=lleft[i][j-1]+1;                    up[i][j]=up[i-1][j]+1;                }                else                {                    lleft[i][j]=0;                    up[i][j]=0;                }            }        for(i=1;i<=n;i++)        {            for(j=1;j<=n;j++)            {                              int k=fmin(up[i][j],lleft[i][j]);                if(k<=1)                continue;                int temp;                for(temp=2;temp<=k;temp++)                {                    if(up[i][j-temp+1]>=temp&&lleft[i-temp+1][j]>=temp)                    {                        ans++;                                       }                }            }                  }        printf("Case %d: %d\n",t++,ans);    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.