-
Notifications
You must be signed in to change notification settings - Fork 0
/
contestB.cpp
37 lines (30 loc) · 1.06 KB
/
contestB.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int calcular_area(vector<pair<int, int>>& cogumelos) {
// Encontrar a distância entre os cogumelos opostos
int lado = max_element(cogumelos.begin(), cogumelos.end(),
[](const pair<int, int>& a, const pair<int, int>& b) {
return a.first < b.first;
})->first
- min_element(cogumelos.begin(), cogumelos.end(),
[](const pair<int, int>& a, const pair<int, int>& b) {
return a.first < b.first;
})->first;
// Calcular a área do quadrado
int area = lado * lado;
return area;
}
int main() {
// Entrada de dados
vector<pair<int, int>> cogumelos(4);
for (int i = 0; i < 4; ++i) {
int x, y;
cin >> x >> y;
cogumelos[i] = make_pair(x, y);
}
// Calcular e imprimir a área da praça
cout << calcular_area(cogumelos) << endl;
return 0;
}