# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
41070 | IvanC | 전압 (JOI14_voltage) | C++14 | 375 ms | 64020 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
const int MAXN = 1e5 + 10;
const int MAXM = 2*1e5 + 10;
int e1[MAXM],e2[MAXM],pai[MAXN],ligapai[MAXN],peso[MAXN],N,M,ans;
int possivel,last,oldw[MAXM],oldz[MAXM],oldpai[MAXM],oldliga[MAXM],oldpeso[MAXM],oldpossivel[MAXM];
int find(int x){
if(x == pai[x]) return x;
return find(pai[x]);
}
int parity(int x){
if(x == pai[x]) return 0;
return (ligapai[x] ^ parity(pai[x]));
}
void join(int x,int y){
int w = find(x), z = find(y),px = parity(x),py = parity(y);
if(peso[w] < peso[z]){
swap(w,z);
swap(px,py);
swap(x,y);
}
last++;
oldw[last] = w;
oldz[last] = z;
oldpai[last] = pai[z];
oldliga[last] = ligapai[z];
oldpeso[last] = peso[w];
oldpossivel[last] = possivel;
if(w == z){
Compilation message (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... |