QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#373013 | #2434. Single Cut of Failure | TWTP_TCTF# | WA | 253ms | 42184kb | C++14 | 4.5kb | 2024-03-31 23:05:44 | 2024-03-31 23:05:45 |
Judging History
answer
#include<iostream>
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define IO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
using namespace std;
const int N = 2e6 + 2, MOD = 998244353;
ld eps = 1e-5;
struct pt {
long long x, y;
pt() {}
pt(long long _x, long long _y) : x(_x), y(_y) {}
pt operator-(const pt &p) const { return pt(x - p.x, y - p.y); }
long long cross(const pt &p) const { return x * p.y - y * p.x; }
long long cross(const pt &a, const pt &b) const { return (a - *this).cross(b - *this); }
};
int sgn(const long long &x) { return x >= 0 ? x ? 1 : 0 : -1; }
bool inter1(long long a, long long b, long long c, long long d) {
if (a > b)
swap(a, b);
if (c > d)
swap(c, d);
return max(a, c) <= min(b, d);
}
bool check_inter(const pt &a, const pt &b, const pt &c, const pt &d) {
if (c.cross(a, d) == 0 && c.cross(b, d) == 0)
return inter1(a.x, b.x, c.x, d.x) && inter1(a.y, b.y, c.y, d.y);
return sgn(a.cross(b, c)) != sgn(a.cross(b, d)) &&
sgn(c.cross(d, a)) != sgn(c.cross(d, b));
}
vector<pair<pt, pt>> v;
bool check(pt a, pt b) {
for (auto i: v) {
if (!check_inter(a, b, i.first, i.second))return false;
}
return true;
}
vector<ld> solve(int w, int h) {
ll l1 = 0, r1 = h, l2 = 0, r2 = h;
for (int i = 0; i < v.size(); i++) {
if (v[i].first.x > v[i].second.x)swap(v[i].first, v[i].second);
}
vector<pair<ll, ll> > rem;
for (auto i: v) {
if (i.first.x > 0 && i.second.x < w)continue;
if (i.first.x == 0 && i.second.y == h) {
l1 = max(l1, i.first.y);
} else if (i.first.x == 0 && i.second.y == 0) {
r1 = min(r1, i.first.y);
} else if (i.first.x == 0) {
rem.push_back({i.first.y, i.second.y});
} else if (i.first.y == h) {
l2 = max(l2, i.second.y);
} else if (i.first.y == 0) {
r2 = min(r2, i.second.y);
} else {
assert(false);
}
}
if (l1 >= r1 || l2 >= r2)return {};
if (rem.empty()) {
return {0, (l1 + r1) / 2.0, (ld) w, (l2 + r2) / 2.0};
}
sort(rem.begin(), rem.end());
stack<ll> st;
st.push(0);
for (int i = rem.size() - 1; i >= 0; i--) {
st.push(max(st.top(), rem[i].second));
}
if (rem[0].first > l1 && st.top() < r2) {
return {0, l1 + eps, (ld) w, r2 - eps};
}
for (int i = 0; i < rem.size(); i++) {
st.pop();
l1 = max(l1, rem[i].first);
r2 = min(r2, rem[i].second);
if (l1 >= r1 || l2 >= r2)return {};
if (i + 1 < rem.size() && rem[i + 1].first <= l1)continue;
if (st.top() < r2) {
return {0, l1 + eps, (ld) w, r2 - eps};
}
}
return {};
}
void doWork() {
int n, w, h;
cin >> n >> w >> h;
int cnt = 0;
for (int i = 0; i < n; i++) {
pt a, b;
cin >> a.x >> a.y;
cin >> b.x >> b.y;
v.push_back({a, b});
cnt += check_inter({0, 0}, {w, h}, v[i].first, v[i].second) ||
check_inter({0, h}, {w, 0}, v[i].first, v[i].second);
}
assert(cnt == n);
if (check({0, 0}, {w, h})) {
cout << "1\n";
cout << fixed << eps << " " << 0 << " " << w - eps << " " << h;
return;
}
if (check({0, h}, {w, 0})) {
cout << "1\n";
cout << fixed << eps << " " << h << " " << w - eps << " " << 0;
return;
}
vector<ld> temp = solve(w, h);
if (!temp.empty()) {
cout << "1\n";
for (auto i: temp)cout << fixed << i << " ";
return;
}
for (int i = 0; i < v.size(); i++) {
swap(v[i].first.x, v[i].first.y);
swap(v[i].second.x, v[i].second.y);
}
temp = solve(h, w);
if (!temp.empty()) {
cout << "1\n";
swap(temp[0], temp[1]);
swap(temp[2], temp[3]);
for (auto i: temp)cout << fixed << i << " ";
return;
}
cout << "2\n";
cout << fixed << eps << " " << 0 << " " << w - eps << " " << h;
cout << "\n";
cout << fixed << eps << " " << h << " " << w - eps << " " << 0;
}
int main() {
IO
int t = 1;
// cin >> t;
for (int i = 1; i <= t; i++) {
// cout << "Case #" << i << ": ";
doWork();
}
}
// cout << 0.2 + 0.8 / 2 * (0.1 + 0.9 * 0.9 / 10) + 0.8 / 2 / 10;
Details
Test #1:
score: 100
Accepted
time: 1ms
memory: 3748kb
Test #2:
score: 0
Accepted
time: 0ms
memory: 3816kb
Test #3:
score: 0
Accepted
time: 0ms
memory: 3756kb
Test #4:
score: 0
Accepted
time: 0ms
memory: 3976kb
Test #5:
score: 0
Accepted
time: 0ms
memory: 3772kb
Test #6:
score: 0
Accepted
time: 0ms
memory: 4044kb
Test #7:
score: 0
Accepted
time: 0ms
memory: 3796kb
Test #8:
score: 0
Accepted
time: 1ms
memory: 3904kb
Test #9:
score: 0
Accepted
time: 39ms
memory: 12488kb
Test #10:
score: 0
Accepted
time: 46ms
memory: 11944kb
Test #11:
score: 0
Accepted
time: 47ms
memory: 11468kb
Test #12:
score: 0
Accepted
time: 57ms
memory: 12568kb
Test #13:
score: 0
Accepted
time: 52ms
memory: 13156kb
Test #14:
score: 0
Accepted
time: 63ms
memory: 12488kb
Test #15:
score: 0
Accepted
time: 58ms
memory: 11548kb
Test #16:
score: 0
Accepted
time: 51ms
memory: 12000kb
Test #17:
score: 0
Accepted
time: 47ms
memory: 12104kb
Test #18:
score: 0
Accepted
time: 58ms
memory: 12980kb
Test #19:
score: 0
Accepted
time: 59ms
memory: 12944kb
Test #20:
score: 0
Accepted
time: 59ms
memory: 11860kb
Test #21:
score: 0
Accepted
time: 68ms
memory: 11320kb
Test #22:
score: 0
Accepted
time: 52ms
memory: 15144kb
Test #23:
score: 0
Accepted
time: 54ms
memory: 13212kb
Test #24:
score: -100
Wrong Answer
time: 253ms
memory: 42184kb