方法一:存储所有像素,数个数,笨鸟的方法
#include <stdio.h>
#include <stdlib.h>
int temp[1001][1001];
int main(int argc, char *argv[])
{
int n,x,y,beginx,beginy,endx,endy;
int i,j;
scanf("%d",&n);
for(i=0 ; i<n ; i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&temp[i][j]);
}
}
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
if(temp[i][j]==0)
{
beginx = j;
beginy = i;
goto l;
}
}
}
l:for(i=n-1;i>=0;i--)
{
for(j=n-1;j>=0;j--)
{
if(temp[i][j]==0)
{
endx = j;
endy = i;
goto m;
}
}
}
m:x = endx-beginx+1;
y = endy-beginy+1;
printf("%d\n",x*y-(2*x+2*y-4));
system("PAUSE");
return 0;
}