Codeforces Round #308 (Div. 2) A. Vanya and Table

简介:

题目链接:http://codeforces.com/contest/552/problem/A
hint: 就是求几个矩形的面积

#include <iostream>
#include <cmath>
using namespace std;
struct point
{
    int x;
    int y;
}a[2];
int main()
{
    int m;
    while(cin>>m)
    {
        int sum=0;
        while(m--)
        {
        //注释的是方法一
            cin>>a[0].x>>a[0].y>>a[1].x>>a[1].y;
//            for(int i=a[0].x; i<=a[1].x; i++)
//                for(int j=a[0].y; j<=a[1].y; j++)
//                  sum++;
            sum+=abs(a[1].x-a[0].x+1)*abs(a[1].y-a[0].y+1);
        }
        cout<<sum<<endl;
    }
    return 0;
}
目录
相关文章
|
1月前
|
人工智能 测试技术 芯片
Codeforces Round 963 (Div. 2)
Codeforces Round 963 (Div. 2)
|
1月前
|
人工智能 测试技术 BI
Codeforces Round 942 (Div. 2)
Codeforces Round 942 (Div. 2)
|
4月前
Codeforces Round #567 (Div. 2)
【7月更文挑战第1天】
45 7
|
机器学习/深度学习 人工智能 移动开发
.Codeforces Round 883 (Div. 3)
Codeforces Round 883 (Div. 3)
Codeforces Round #742 (Div. 2)
Codeforces Round #742 (Div. 2)
47 0
|
机器学习/深度学习 人工智能
Codeforces Round 889 (Div. 2)
Codeforces Round 889 (Div. 2)
161 0
|
人工智能
Codeforces Round #786 (Div. 3)(A-D)
Codeforces Round #786 (Div. 3)(A-D)
72 0
|
人工智能 索引
Codeforces Round 806 (Div. 4)
Codeforces Round 806 (Div. 4)A~G
113 0
Codeforces Round #640 (Div. 4)
Codeforces Round #640 (Div. 4)
89 0