# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
2647 | tncks0121 | 약속장소 정하기 (GCJ12KOR_appointment) | C++98 | 712 ms | 6316 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 <stdlib.h>
#include <string.h>
#include <math.h>
#include <assert.h>
#include <memory.h>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long llu;
typedef double lf;
typedef long double llf;
const int N_ = 10005;
const int P_ = 105;
const int M_ = 1005;
struct Edge {
int u, c;
Edge(int u = 0, int c = 0): u(u), c(c) { }
bool operator< (const Edge &t) const { return c > t.c; }
};
int TC, TCC;
int N, P, M;
int X[P_], V[P_];
vector<Edge> Gph[N_];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |