当前位置: 首页 > 工具软件 > Plow > 使用案例 >

P2956 [USACO09OCT]The Robot Plow G

子车鸿运
2023-12-01

P2956 [USACO09OCT]The Robot Plow G - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

#include<bits/stdc++.h>
using namespace std;
int a[250][250],x,y,t,cnt;
int main()
{
    cin >> x >> y >> t;
    int x1,y1,x2,y2;
    while(t--)
    {
        cin >> x1 >> y1 >> x2 >> y2;
        for(int i=x1;i<=x2;i++)
            for(int j=y1;j<=y2;j++)
            a[i][j]=1;        
    }
    for(int i=1;i<=x;i++)
    for(int j=1;j<=y;j++)
    if(a[i][j]==1)cnt++;
    cout << cnt << endl;
    return 0;
}

 类似资料:

相关阅读

相关文章

相关问答