# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
25760 | zigui | 별자리 2 (JOI14_constellation2) | C++14 | 1483 ms | 1480 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<stdio.h>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
pii operator-(const pii &l, const pii &r){
return pii(l.first - r.first, l.second - r.second);
}
ll operator/(const pii &l, const pii &r){
return (ll)l.first * r.second - (ll)l.second * r.first;
}
int sign(pii x){ return pii(0, 0) < x ? 1 : -1; }
const int MX = 3005;
struct star{
star(){}
star(pii p, int c):p(p), c(c){}
pii p;
int c;
}D[MX];
int N;
ll getm(int x[3], int y[3], int c1, int c2){
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... |