# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1166348 | fabijan_cikac | Rail (IOI14_rail) | C++20 | 1059 ms | 99020 KiB |
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
#define pb push_back
struct S{
int loc, id, t;
};
const int MAXN = 5010;
int N;
vector<S> b;
int dist[MAXN][MAXN];
/*int getDistance(int x, int y){
cout << "? " << x << ' ' << y << endl;
int z; cin >> z; return z;
}*/
int D(int x, int y){
if (dist[x][y] != -1) return dist[x][y];
if (x == y) return dist[x][y] = 0;
return dist[x][y] = getDistance(x, y);
}
bool cmp1(int x, int y){ return D(0, x) < D(0, y); }
bool cmp2(S x, S y){ return x.loc < y.loc; }
# | 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... |