# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
518687 | fleimgruber | 열쇠 (IOI21_keys) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "algolib/union-find.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 300005;
int n;
vector<int> ans;
struct Edge {
int to, key; // key required
bool operator<(const Edge& o) const {
// cannot just use key, otherwise edges get lost (set)
return tie(key, to) < tie(o.key, o.to);
}
};
vector<int> out_can[MAX_N]; // only the to
set<Edge> out_blocked[MAX_N];
set<int> keys[MAX_N];
int par[MAX_N]; // parent in tree
UnionFind weakly(MAX_N); // weakly connected components
UnionFind<int> compressed(MAX_N);
// merge i into j, smaller to larger style
void merge(int i, int j) {
if (compressed.size(i) > compressed.size(j)) {
out_can[i].swap(out_can[j]);
out_blocked[i].swap(out_blocked[j]);