# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
913934 | vjudge1 | Wish (LMIO19_noras) | C++17 | 2 ms | 344 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
#define ent "\n"
const int inf = (int)1e9 + 100;
const int maxn = 5e5 + 100;
const ll INF = (ll)1e18;
const int MOD = 1e9 + 7;
const int maxl = 62500;
const ll P = 31, T = 0;
ll n, R;
ll a[maxn];
ll b[maxn];
ll c[maxn];
ll d[maxn];
bool ok(ll x, ll y){
if(max(abs(x), abs(y)) > R) return 0;
return x * x + y * y <= R * R;
}
void test(){
cin >> n >> R;
for(int i = 1; i <= n; i++){
cin >> a[i] >> b[i] >> c[i] >> d[i];
c[i] -= a[i]; d[i] -= b[i];
if(a[i] < 0) a[i] *= -1, c[i] *= -1;
if(b[i] < 0) b[i] *= -1, d[i] *= -1;
}
vector<pll> v;
for(int i = 1; i <= n; i++){
ll s = -1;
if(ok(a[i], b[i])){
s = 0;
} else{
for(ll l = 0, r = 2e9; l <= r;){
ll mid = (l + r) >> 1;
__int128 x = a[i] + c[i] * mid;
__int128 y = b[i] + d[i] * mid;
if(ok(x, y)){
s = mid; r = mid - 1;
} else{
__int128 x1 = a[i] + c[i] * (mid + 1);
__int128 y1 = b[i] + d[i] * (mid + 1);
if(x * x + y * y < x1 * x1 + y1 * y1) r = mid - 1;
else l = mid + 1;
}
}
}
if(s != -1){
ll t = -1;
for(ll l = s, r = 2e9; l <= r;){
ll mid = (l + r) >> 1;
ll x = a[i] + c[i] * mid;
ll y = b[i] + d[i] * mid;
if(ok(x, y)){
t = mid; l = mid + 1;
} else r = mid - 1;
}
v.push_back({s, 1});
v.push_back({t+1, -1});
}
}
int ans = 0, cnt = 0;
sort(v.begin(), v.end());
for(int i = 0; i < v.size();){
int j = i;
while(j < v.size() && v[j].first == v[i].first){
cnt += v[j].second; j++;
}
ans = max(ans, cnt);
i = j;
}
cout << ans;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int t = 1;
if(T) cin >> t;
while(t--) test();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |