# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
68851 | duality | Bulldozer (JOI17_bulldozer) | C++11 | 1292 ms | 17128 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>
using namespace std;
#define mp make_pair
#define pb push_back
typedef long long int LLI;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vpii;
const double PI = acos(-1.0);
#define x first
#define y second
struct point { int x,y,w; };
bool comp(point a,point b) {
if (a.y == b.y) return a.x > b.x;
else return a.y < b.y;
}
point p[2000];
struct event { int i,j; };
vector<event> events;
LLI cross(event a,event b) {
pii av = mp(p[a.j].x-p[a.i].x,p[a.j].y-p[a.i].y);
pii bv = mp(p[b.j].x-p[b.i].x,p[b.j].y-p[b.i].y);
return (LLI) av.x*bv.y-(LLI) av.y*bv.x;
}
bool comp2(event a,event b) {
LLI c = cross(a,b);
if (c == 0) {
if (a.i == b.i) return a.j < b.j;
else return a.i < b.i;
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... |