-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMany Segments.cpp
49 lines (45 loc) · 1.14 KB
/
Many Segments.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
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#define int long long int
#define INF 1e18
using namespace __gnu_pbds;
using namespace std;
template<typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
int power(int x, int y, int MOD = INF) {
if (y == 0) {
return 1;
}
if (y % 2 == 0) {
return power((x * x) % MOD, y / 2) % MOD;
} else {
return (x * power((x * x) % MOD, (y - 1) / 2) % MOD) % MOD;
}
}
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int n = 1;
cin >> n;
pair<double_t,double_t> ar[n];
for (int i = 0; i < n; ++i) {
double_t t,l,r;
cin>>t>>l>>r;
if (t==2 || t==4){
r-=0.5;
}
if (t==3 || t==4){
l+=0.5;
}
ar[i] = make_pair(l,r);
}
int ans = 0;
for (int i = 0; i < n; ++i) {
for (int j = i+1; j < n; ++j) {
ans += max(ar[i].first,ar[j].first) <= min(ar[i].second,ar[j].second);
}
}
cout<<ans<<"\n";
}