#include <bits/stdc++.h>
typedef long double ld;
using namespace std;
int nums; ld h;
const ld error = 1e-9;
struct pt{
ld x, y;
};
struct hull{
vector<pt> v;
ld intersect(pt a, pt b){
return (h - b.y) / (a.y - b.y) * (a.x - b.x);
}
void insert(pt p){
while (!v.empty() && v.back().y <= p.y) v.pop_back();
v.push_back(p);
}
ld query(pt p){
while (v.size() >= 2 && abs(intersect(p, v.back()) - p.x) >= abs(intersect(p, v[v.size() - 2]) - p.x)) v.pop_back();
return intersect(p, v.back());
}
};
bool cmp(pair<ld, ld> a, pair<ld, ld> b){
return a.second < b.second;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> nums >> h;
pt vec[nums];
for (int i = 0; i < nums; i++) cin >> vec[i].x >> vec[i].y;
int valley = (nums - 3) / 2;
pair<ld, ld> range[valley];
hull left;
for (int i = 1, j = 0; i < nums - 1; i++){
if (i % 2) left.insert(vec[i]);
else {
range[j].first = left.query(vec[i]);
j++;
}
}
hull right;
for (int i = nums - 2, j = valley - 1; i >= 1; i--){
if (i % 2) right.insert(vec[i]);
else {
range[j].second = right.query(vec[i]);
j--;
}
}
sort(range, range + valley, cmp);
int ans = 0; ld last_pos = -1e18;
for (int i = 0; i < valley; i++)
if (range[i].first > last_pos + error){
ans++;
last_pos = range[i].second;
}
cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
7 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
7 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |