이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 1e6+6;
int n, R, a[N], b[N], c[N], d[N];
map<int, int> f;
signed main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
cin >> n >> R;
for (int i = 0; i < n; i++) {
cin >> a[i] >> b[i] >> c[i] >> d[i];
int x = c[i]-a[i];
int y = d[i]-b[i];
int l = 0;
int r = 1e15;
while (l < r) {
int mid = (l+r)/2;
bool in1 = (abs(a[i] + x*mid) + abs(b[i] + y*mid)) <= R;
bool in2 = (abs(a[i] + x*(mid+1)) + abs(b[i] + y*(mid+1))) <= R;
if (in1 && in2) r = mid;
else {
if (abs(a[i] + x*mid) + abs(b[i] + y*mid) <=
abs(a[i] + x*(mid+1)) + abs(b[i] + y*(mid+1))) {
r = mid;
}
else {
l = mid+1;
}
}
}
int fst = l;
l = 0;
r = 1e15;
while (l < r) {
int mid = (l+r)/2;
bool in1 = (abs(a[i] + x*mid) + abs(b[i] + y*mid)) <= R;
bool in2 = (abs(a[i] + x*(mid+1)) + abs(b[i] + y*(mid+1))) <= R;
if (in1 && in2) l = mid+1;
else {
if (abs(a[i] + x*mid) + abs(b[i] + y*mid) <
abs(a[i] + x*(mid+1)) + abs(b[i] + y*(mid+1))) {
r = mid;
}
else {
l = mid+1;
}
}
}
int lst = l;
bool in1 = (abs(a[i] + x*fst) + abs(b[i] + y*fst)) <= R;
bool in2 = (abs(a[i] + x*lst) + abs(b[i] + y*lst)) <= R;
//assert(in1 == in2);
if (!in1) continue;
f[fst]++;
f[lst+1]--;
}
int ans = 0;
int sum = 0;
for (auto& [x, y] : f) {
sum += y;
ans = max(ans, sum);
}
cout << ans << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
noras.cpp: In function 'int main()':
noras.cpp:64:10: warning: unused variable 'in2' [-Wunused-variable]
64 | bool in2 = (abs(a[i] + x*lst) + abs(b[i] + y*lst)) <= R;
| ^~~
# | 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... |