This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
____ ____ ____ ____ ____
||a |||t |||o |||d |||o ||
||__|||__|||__|||__|||__||
|/__\|/__\|/__\|/__\|/__\|
**/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N_MAX = 100002;
const double EPS = 1e-10;
int n;
ll L, R, Y;
long double getx (ll v, ll h, ll x)
{
return x + (long double)Y * h / v;
}
map <ll, int> mp;
ll ans[N_MAX];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
cin >> L >> R >> Y;
for(int i = 1; i <= n; i++)
{
ll v, h, x;
cin >> x >> v >> h;
ll l = ceil(getx(-v, h, x) + EPS);
ll r = floor(getx(v, h, x) - EPS);
l = max(L, l);
r = min(R, r);
mp[l]++;
mp[r + 1]--;
}
mp[R + 1];
ll last = L;
int cnt = 0;
for(pair <ll, int> p : mp)
{
ans[cnt] += p.first - last;
cnt += p.second;
last = p.first;
}
for(int i = 1; i <= n; i++)
ans[i] += ans[i - 1];
for(int i = 0; i <= n; i++)
cout << ans[i] << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |