이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "game.h"
using namespace std;
const int TAILLE_MAX=1500+5;
int nbSom;
int pere[TAILLE_MAX];
int taille[TAILLE_MAX];
int nbVu[TAILLE_MAX][TAILLE_MAX];
int find(int pos) {
if (pos!=pere[pos]) {
pere[pos]=find(pere[pos]);
}
return pere[pos];
}
void initialize(int n) {
nbSom=n;
for (int i=0;i<nbSom;i++) {
pere[i]=i;
taille[i]=1;
}
}
int hasEdge(int deb, int fin) {
deb=find(deb);
fin=find(fin);
nbVu[deb][fin]++;
nbVu[fin][deb]++;
if (nbVu[deb][fin]==taille[deb]*taille[fin]) {
taille[deb]+=taille[fin];
pere[fin]=deb;
for (int i=0;i<nbSom;i++) {
if (find(i)!=deb) {
nbVu[i][deb]+=nbVu[i][fin];
}
}
for (int j=0;j<nbSom;j++) {
nbVu[deb][j]+=nbVu[fin][j];
}
return 1;
}
else {
return 0;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |