# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
404127 | thomas_li | 다리 (APIO19_bridges) | C++17 | 3091 ms | 146296 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pi;
const int MM = 5e4+5,SZ = 1e3;
struct DSU{
struct op{
int u,su,v,sv;
};
stack<op> ev;
vector<int> p, sz;
DSU(int n) : p(n), sz(n, 1) { iota(p.begin(), p.end(),0); }
void clear(){
for(int i = 0; i < p.size(); i++) p[i] = i, sz[i] = 1;
}
// no path compression due to undo operation
int find(int u) { return u == p[u] ? u : find(p[u]); }
void join(int u, int v){
u = find(u); v = find(v);
if(sz[u] > sz[v]) swap(u,v);
ev.push({u,sz[u], v,sz[v]});
if(u == v) return;
sz[v] += sz[u];
p[u] = v;
}
void undo(){
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |