20分求助

P3397 地毯

lzj20110120 @ 2023-11-19 14:37:45

https://www.luogu.com.cn/record/135902583 以上为记录

以下为代码

#include <bits/stdc++.h>
#define MAXN 55
using namespace std;
int n,m,a[MAXN][MAXN];
int main()
{
    memset(a,0,sizeof(a));
    cin>>n>>m;
    for(int i=1;i<=m;i++)
    {
        int x1,y1,x2,y2;
        cin>>x1>>y1>>x2>>y2;
        for(int j=x1;j<=x2;j++)
        {
            for(int b=y1;b<=y2;b++)
            {
                a[j][b]++;  
            }   
        }   
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            if(j==n) cout<<a[i][j]<<endl;
            else
            {
                cout<<a[i][j]<<' '; 
            }
        }   
    }
}

请大佬帮忙看一下,万分感谢


by Lyrith_with_xQ @ 2023-11-19 14:39:34

数组开小了


by lzj20110120 @ 2023-11-19 15:12:26

@Lyrith_with_xQ 谢谢帮助,现在已经通过了


|