# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
229980 | dennisstar | 절취선 (JOI14_ho_t5) | C++17 | 2073 ms | 166248 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>
#define fi first
#define se second
#define em emplace
#define eb emplace_back
#define all(V) (V).begin(), (V).end()
using namespace std;
using ll = long long;
using pii = pair<int, int>;
const int MX = 7<<15;
struct line {
int x1, x2, y, t;
line (int A, int B, int C, int D) {
if (B==D) x1=A, x2=C, y=B, t=0;
else x1=B, x2=D, y=A, t=1;
}
};
int W, H, N;
vector<line> L;
struct seg {
set<pii> st[1<<19];
int l, r, y, x1;
pii v;
void U(int i=1, int s=0, int e=MX) {
if (e<l||r<s) return ;
if (l<=s&&e<=r) { st[i].em(v); return ; }
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... |