# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4947 | hana5505 | 탐사 (KOI13_probe) | C++98 | 771 ms | 504 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<algorithm>
#include<vector>
using namespace std;
struct pp{
int x, y, r;
};
struct qq{
int x, idx;
};
vector<qq> son;
vector<pp> que, que2, bac;
bool cmp1(struct pp a, struct pp b){
if (a.x == b.x) return a.y<b.y;
return a.x<b.x;
}
bool cmp2(struct pp a, struct pp b){
if (a.y == b.y) return a.x>b.x;
return a.y>b.y;
}
bool cmp3(struct qq a, struct qq b){
if (a.x == b.x) return a.idx<b.idx;
return a.x>b.x;
}
int k, n, is_ans;
void back(int c, int ar[])
{
int i, j, cnt = 0, cnt2 = 0, t = 0;
if (is_ans) return;
if (c == son.size()){
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |