JOEas @ 2021-11-28 15:46:15
```cpp
using namespace std; int t[1001][1001]; int main() {
int a,b,c=1,d1,d2,e1,e2,f=0;
cin>>a>>b;
for(int i=1;i<b+1;i++)
{
cin>>d1>>e1>>d2>>e2;
//if(f==2)
// {
// cout<<endl;
// f++;
// }
for (int j=d1;j<d2+1;j++)
for (int k=e1;k<e2+1;k++)
t[j][k]+=1;
}
for(int j=1;j<a+1;j++)
{
for(int k=1;k<a+2;k++)
cout<<t[j][k]<<" ";
cout<<endl;
}
return 0;
}
我做错了什么???
全部WA。
by xhz_ @ 2021-11-28 15:47:51
@JOEas
望丰展?用Md
by chubei_AC @ 2021-11-28 15:47:58
@JOEas 请正确使用 `cpp
by PanHOVER @ 2021-11-28 15:51:07
include<iostream>
using namespace std; int t[1001][1001]; int main() {
int a,b,c=1,d1,d2,e1,e2,f=0;
cin>>a>>b;
for(int i=1;i<b+1;i++)
{
cin>>d1>>e1>>d2>>e2;
//if(f==2)
// {
// cout<<endl;
// f++;
// }
for (int j=d1;j<d2+1;j++)
for (int k=e1;k<e2+1;k++)
t[j][k]+=1;
}
for(int j=1;j<a+1;j++)
{
for(int k=1;k<a+2;k++)
cout<<t[j][k]<<" ";
cout<<endl;
}
return 0;
}
帮忙整理(个鸟)了一下,大概这样
by xhz_ @ 2021-11-28 15:52:18
@PanHOVER 你少了一个“#”
by xhz_ @ 2021-11-28 15:54:07
#include<iostream>
using namespace std; int t[1001][1001]; int main() {
int a,b,c=1,d1,d2,e1,e2,f=0;
cin>>a>>b;
for(int i=1;i<b+1;i++)
{
cin>>d1>>e1>>d2>>e2;
//if(f==2)
// {
// cout<<endl;
// f++;
// }
for (int j=d1;j<d2+1;j++)
for (int k=e1;k<e2+1;k++)
t[j][k]+=1;
}
for(int j=1;j<a+1;j++)
{
for(int k=1;k<a+1;k++)//这里有问题!
cout<<t[j][k]<<" ";
cout<<endl;
}
return 0;
}
可能是这样吧。
by xhz_ @ 2021-11-28 15:54:30
@JOEas
by PanHOVER @ 2021-11-28 15:55:07
@xhz_ 抱歉复制漏了(大嘘)
by PanHOVER @ 2021-11-28 15:56:07
@JOEas 下载样例试试
by JOEas @ 2022-01-15 14:43:18
fcgx