# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
977389 | faruk | 사이버랜드 (APIO23_cyberland) | C++17 | 1103 ms | 80840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cyberland.h"
#include <bits/stdc++.h>
#define all(a) a.begin(), a.end()
using namespace std;
const double INF = 1e18;
struct edge {
double cost;
int t;
int inc;
edge() {}
edge(double cost, int t, bool inc) : cost(cost), t(t), inc(inc) { }
};
struct node {
double cost;
int idx, uses;
node() {}
node(double cost, int idx, int uses) : cost(cost), idx(idx), uses(uses) {
}
bool operator<(const node &b) const {
return cost > b.cost;
}
};
const int maxK = 80;
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |