# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
537501 |
2022-03-15T07:27:11 Z |
joelau |
Planine (COCI21_planine) |
C++14 |
|
2000 ms |
1908 KB |
#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 |
1 |
Correct |
106 ms |
764 KB |
Output is correct |
2 |
Correct |
106 ms |
768 KB |
Output is correct |
3 |
Correct |
108 ms |
704 KB |
Output is correct |
4 |
Execution timed out |
2078 ms |
1908 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
380 KB |
Output is correct |
2 |
Correct |
6 ms |
400 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
6 ms |
340 KB |
Output is correct |
5 |
Correct |
1 ms |
328 KB |
Output is correct |
6 |
Correct |
6 ms |
360 KB |
Output is correct |
7 |
Correct |
1 ms |
328 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
106 ms |
764 KB |
Output is correct |
2 |
Correct |
106 ms |
768 KB |
Output is correct |
3 |
Correct |
108 ms |
704 KB |
Output is correct |
4 |
Execution timed out |
2078 ms |
1908 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |