Submission #539140

# Submission time Handle Problem Language Result Execution time Memory
539140 2022-03-18T13:16:36 Z joelau Planine (COCI21_planine) C++14
20 / 110
2000 ms 46372 KB
#include <bits/stdc++.h>
using namespace std;

long long N,H;
pair<long long,long long> A[1000005];
vector< pair<long double,long double> > lst;
vector<long long> v;

int main() {
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    cin >> N >> H;
    for (long long i = 0; i < N; ++i) cin >> A[i].first >> A[i].second;
    for (long long i = 2; i < N-1; i += 2) {
        while (v.size() >= 2 && (A[i-1].second - A[v[v.size()-2]].second) * (A[i-1].first - A[v.back()].first) <= (A[i-1].second - A[v.back()].second) * (A[i-1].first - A[v[v.size()-1]].first))
            v.pop_back();
        v.push_back(i-1);
        long long low = 0, high = v.size()-1;
        while (high - low > 1) {
            long long mid = (low+high)/2;
            if ((A[i].second - A[v[mid-1]].second) * (A[i].first - A[v[mid]].first) <= (A[i].second - A[v[mid]].second) * (A[i].first - A[v[mid-1]].first)) high = mid;
            else low = mid;
        }
        lst.emplace_back(0,A[i].first - (long double) (A[i].first - A[v[high]].first) * (H - A[i].second) / (A[v[high]].second - A[i].second));
    }
    v.clear();
    for (long long i = N-3; i > 0; i -= 2) {
        while (v.size() >= 2 && (A[i+1].second - A[v[v.size()-2]].second) * (A[i+1].first - A[v.back()].first) >= (A[i+1].second - A[v.back()].second) * (A[i+1].first - A[v[v.size()-2]].first))
            v.pop_back();
        v.push_back(i+1);
        long long low = 0, high = v.size()-1;
        while (high - low > 1) {
            long long mid = (low+high)/2;
            if ((A[i].second - A[v[mid-1]].second) * (A[i].first - A[v[mid]].first) >= (A[i].second - A[v[mid]].second) * (A[i].first - A[v[mid-1]].first)) high - mid;
            else low = mid;
        }
        lst[i/2-1].first = A[i].first + (long double) (A[v[high]].first - A[i].first) * (H - A[i].second) / (A[v[high]].second - A[i].second);
    }
    sort(lst.begin(),lst.end());
    long long ans = 0;
    long double n = -1e18;
    for (auto x: lst) if (n < x.second) ans++, n = x.first;
    cout << ans;

    return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:33:162: warning: statement has no effect [-Wunused-value]
   33 |             if ((A[i].second - A[v[mid-1]].second) * (A[i].first - A[v[mid]].first) >= (A[i].second - A[v[mid]].second) * (A[i].first - A[v[mid-1]].first)) high - mid;
      |                                                                                                                                                             ~~~~~^~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 980 KB Output is correct
2 Correct 4 ms 980 KB Output is correct
3 Correct 3 ms 960 KB Output is correct
4 Correct 25 ms 5048 KB Output is correct
5 Correct 27 ms 5280 KB Output is correct
6 Correct 32 ms 5408 KB Output is correct
7 Correct 233 ms 42444 KB Output is correct
8 Correct 287 ms 44512 KB Output is correct
9 Correct 284 ms 46372 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Execution timed out 2052 ms 356 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 980 KB Output is correct
2 Correct 4 ms 980 KB Output is correct
3 Correct 3 ms 960 KB Output is correct
4 Correct 25 ms 5048 KB Output is correct
5 Correct 27 ms 5280 KB Output is correct
6 Correct 32 ms 5408 KB Output is correct
7 Correct 233 ms 42444 KB Output is correct
8 Correct 287 ms 44512 KB Output is correct
9 Correct 284 ms 46372 KB Output is correct
10 Correct 1 ms 344 KB Output is correct
11 Execution timed out 2052 ms 356 KB Time limit exceeded
12 Halted 0 ms 0 KB -