이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N,H;
pair<int,int> A[1000005];
vector< pair<long double,long double> > lst;
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL);
cin >> N >> H;
for (int i = 0; i < N; ++i) cin >> A[i].first >> A[i].second;
for (int i = 2; i < N-1; i += 2) {
long double x1 = -1e18, x2 = 1e18;
for (int j = 1; j < i; j += 2)
if (A[j].second > A[i].second)
x1 = max(x1, A[i].first - (long double) (A[i].first - A[j].first) / (A[j].second - A[i].second) * (H - A[i].second));
for (int j = i+1; j < N; j += 2)
if (A[j].second > A[i].second)
x2 = min(x2, A[i].first + (long double) (A[j].first - A[i].first) / (A[j].second - A[i].second) * (H - A[i].second));
lst.emplace_back(x2,x1);
}
sort(lst.begin(),lst.end());
int ans = 0;
long double n = -1e18;
for (auto x: lst) if (n < x.second) ans++, n = x.first;
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |