# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149174 | distutpia (#200) | Crosses on the Grid (FXCUP4_cross) | C++17 | 131 ms | 6876 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 "cross.h"
#include <queue>
#include <vector>
#include <algorithm>
#include <stdio.h>
using namespace std;
struct cross{
int d0;
int d1;
};
struct cross C[200000];
bool comp0(struct cross a, struct cross b){
return a.d0>b.d0;
}
bool comp1(struct cross a, struct cross b){
return a.d1>b.d1;
}
long long SelectCross(int K, std::vector<int> I, std::vector<int> O) {
vector<struct cross> C;
priority_queue<int, vector<int>, greater<int> > PQ;
struct cross temp;
int N = I.size();
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |