怎么一直complite error

P3397 地毯

jianxing04 @ 2024-05-08 00:09:48

这个代码dev正常跑,怎么在洛谷就error?

#include<bits/stdc++.h>
using namespace std;
int n,m,x1,y1,x2,y2,ans[1009][1009];
int main()
{
    ios::sync_with_stdio(0);
    cin>>n>>m;
    for (int i=1;i<=m;i++)
    {
        cin>>x1>>y1>>x2>>y2;
        for (int j=x1;j<=x2;j++)
        {
            ans[j][y1]+=1;
            ans[j][y2+1]-=1;
        }
    }
    for (int i=1;i<=n;i++)
    {
        for (int j=1;j<=n;j++)
        {
            ans[i][j]+=ans[i][j-1];
            cout<<ans[i][j]<<" ";
        }
        cout<<"\n";
    }
    return 0;
}

by LgDan321 @ 2024-05-08 00:52:03

更改一下x1,y1,x2,y2这四个变量名,这四个变量名是系统函数


by cff_0102 @ 2024-05-08 02:02:57

complite?


by cff_0102 @ 2024-05-08 02:03:25

@LgDan321 只有 y1 是系统函数


by scp020 @ 2024-05-08 08:20:45

笑点解析:有四个系统函数和complite error


by LgDan321 @ 2024-05-08 10:50:02

@cff_0102 实测了,确实(之前一直没注意。。


|