又又来求化简

P3397 地毯

qjxqjx @ 2021-09-11 12:14:45

#include<iomanip>
#include<stdio.h>
#include<cstdio>
#include<map>
#include<windows.h>
#include<queue>
#include<stack>
#include<cstring>
#include<algorithm>
#include<cmath> 
#include<cstdlib>
#include<ctime>
#include<string>
#define LL long long>
using namespace std;
const LL MAXN=1010;
LL n;
LL m;
LL a[MAXN][MAXN];
int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++)
    {
        int x,y,x2,y2;
        scanf("%d%d%d%d",&x,&y,&x2,&y2);
        for(int j=x;j<=x2;j++)
        {
            for(int k=y;k<=y2;k++)
            {
                a[j][k]++;
            }
        }
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            printf("%d ",a[i][j]);
        }
        printf("\n");
    }
    return 0;
}

求求求求求助助助助助


by Qsdxh @ 2021-09-11 12:17:21

你这。。。


by ImposterAnYu @ 2021-09-11 12:24:10

主页双帖……


by soy_un_perro @ 2021-09-11 12:28:43

#define LL long long>

你这难道没有CE吗?


by soy_un_perro @ 2021-09-11 12:30:52

刚才用洛谷 IDE 测了一下,您的代码 CE 了。

这一行

#include<windows.h>

提交的时候要去掉,因为评测系统是 Linux,没有这个库。


by Coros_Trusds @ 2021-09-11 12:34:14

@qjxqjx

建议别像 CSDN 那群人一样写这么长的头文件(

#define LL long long> 改成 #define LL int

还有就是楼上的那个头文件去掉,就能A了。


by Acfboy @ 2021-09-11 13:26:35

《化简》


by qjxqjx @ 2021-09-11 14:20:25

@Coros_Trusds

好的,膜拜大神%%%%%%%%%%


by qjxqjx @ 2021-09-11 14:21:02

@海滨WA声

..........................


by qjxqjx @ 2021-09-11 14:21:37

@ImopsterAnYu 嘻嘻


by qjxqjx @ 2021-09-11 14:21:59

@Acfboy

qwq


| 下一页