# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1157469 | Doncho_Bonboncho | Towns (IOI15_towns) | C++20 | 20 ms | 328 KiB |
#include "towns.h"
#include <bits/stdc++.h>
#include <random>
#include <utility>
using namespace std;
#ifndef LOCAL
#define cerr if(false) cerr
#endif
template<class T, class T2>
inline bool chkmax(T &a, const T2 &b) { return a < b ? a = b, true : false; }
template<class T, class T2>
inline bool chkmin(T &a, const T2 &b) { return a > b ? a = b, true : false; }
typedef long long ll;
const int MAX_N = 128;
const ll inf = 1e18;
int n;
map<pair<int,int>, ll> q;
ll makeQuery(int a, int b) {
if(a > b) swap(a, b);
if(a == b) return 0;
pair<int,int> key = {a, b};
if(q.find(key) == q.end())
q[key] = getDistance(a, b);
return q[key];
}
# | 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... |