# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1168118 | wii | Swapping Cities (APIO20_swap) | C++20 | 133 ms | 17096 KiB |
#include "swap.h"
#include <bits/stdc++.h>
using namespace std;
const int MaxN = 2e5 + 5;
const int LOG = __lg(MaxN);
#define all(x) (x).begin(), (x).end()
#define foru(i,a,b) for(int i = (a); i <= (b); ++i)
#define ford(i,a,b) for(int i = (a); i >= (b); --i)
template<typename T> bool maximize(T &res, const T &val) { if (res < val) { res = val; return true; } return false; }
template<typename T> bool minimize(T &res, const T &val) { if (val < res) { res = val; return true; } return false; }
const int Inf = 1e9 + 1e8;
int id[MaxN];
vector<int> w;
namespace Dsu {
int f[MaxN];
int size[MaxN];
int cache_time = -1;
int time_changed[MaxN];
int cycle_time[MaxN];
int deg[MaxN];
vector<pair<int, int>> max_deg[MaxN];
void init(int n) {
# | 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... |