-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1938.cpp
49 lines (49 loc) · 1.32 KB
/
1938.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
38
39
40
41
42
43
44
45
46
47
48
49
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1938
#include <algorithm>
#include <cstdio>
#include <vector>
#define X second
#define Y first
#define MP make_pair
using namespace std;
typedef pair<int, int> point;
const int NEG = -(1e8 + 1);
int n, resp;
vector<point> pontos;
bool comp(point A, point B) {
if (A.X == B.X) return A.Y < B.Y;
return A.X < B.X;
}
int main() {
while (scanf("%d", &n) != EOF) {
resp = 0;
pontos.clear();
for (int i = 1; i <= n; i++) {
int x, y;
scanf("%d %d", &x, &y);
pontos.push_back(MP(y, x));
}
sort(pontos.begin(), pontos.end(), comp);
for (int i = 0; i < n; i++) {
point agora = pontos[i];
int MIN = NEG;
int MAX = -MIN;
for (int j = i + 1; j < n; j++) {
point proximo = pontos[j];
if (proximo.Y > MIN && proximo.Y < MAX &&
proximo.Y != agora.Y) {
resp++;
}
if (proximo.Y > agora.Y) {
MAX = min(MAX, proximo.Y);
}
if (proximo.Y < agora.Y) {
MIN = max(proximo.Y, MIN);
}
}
}
printf("%d\n", resp);
}
return 0;
}