# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
95847 | easrui | 절취선 (JOI14_ho_t5) | C++14 | 333 ms | 263168 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 sz first
#define col second
using namespace std;
const int MN = 1e5+9;
typedef pair<int,int> pii;
struct line{
int A,B,C,D;
line(){};
line(int a, int b, int c, int d){
A = a, B = b , C = c, D = d;
}
} L[MN];
struct event{
int s,e,t,v;
event(){};
event(int a, int b, int c, int d){
s = a, e = b, t = c, v = d;
}
bool operator < (const event &A) const{
if(t==A.t){
return A.v<v;
}
return t<A.t;
}
} E[2*MN];
int W,H,N,A,B,C,D,par[MN],cnt,comp,nume;
long long inter;
# | 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... |