QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#373024 | #2434. Single Cut of Failure | TWTP_TCTF | WA | 253ms | 42416kb | C++14 | 4.3kb | 2024-03-31 23:39:40 | 2024-03-31 23:39:41 |
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 = 0.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 + eps, (ld) w, l2 + eps};
}
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;
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});
}
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: 3860kb
Test #2:
score: 0
Accepted
time: 0ms
memory: 3788kb
Test #3:
score: 0
Accepted
time: 0ms
memory: 3796kb
Test #4:
score: 0
Accepted
time: 0ms
memory: 3804kb
Test #5:
score: 0
Accepted
time: 0ms
memory: 3796kb
Test #6:
score: 0
Accepted
time: 0ms
memory: 3900kb
Test #7:
score: 0
Accepted
time: 1ms
memory: 3928kb
Test #8:
score: 0
Accepted
time: 1ms
memory: 3808kb
Test #9:
score: 0
Accepted
time: 46ms
memory: 11540kb
Test #10:
score: 0
Accepted
time: 60ms
memory: 12060kb
Test #11:
score: 0
Accepted
time: 58ms
memory: 11628kb
Test #12:
score: 0
Accepted
time: 50ms
memory: 12696kb
Test #13:
score: 0
Accepted
time: 55ms
memory: 11508kb
Test #14:
score: 0
Accepted
time: 64ms
memory: 12676kb
Test #15:
score: 0
Accepted
time: 55ms
memory: 11996kb
Test #16:
score: 0
Accepted
time: 58ms
memory: 11424kb
Test #17:
score: 0
Accepted
time: 58ms
memory: 12616kb
Test #18:
score: 0
Accepted
time: 56ms
memory: 11792kb
Test #19:
score: 0
Accepted
time: 55ms
memory: 12200kb
Test #20:
score: 0
Accepted
time: 54ms
memory: 13156kb
Test #21:
score: 0
Accepted
time: 55ms
memory: 11608kb
Test #22:
score: 0
Accepted
time: 45ms
memory: 14864kb
Test #23:
score: 0
Accepted
time: 59ms
memory: 13016kb
Test #24:
score: -100
Wrong Answer
time: 253ms
memory: 42416kb