HDU - 2473 - Junk - Mail 필터 (및 검색 집합)
4107 단어 데이터 구조
We want to extract the set of common characteristics from the N sample junk emails available at the moment, and thus having a handy data-analyzing tool would be helpful. The tool should support the following kinds of operations:
a) “M X Y”, meaning that we think that the characteristics of spam X and Y are the same. Note that the relationship defined here is transitive, so relationships (other than the one between X and Y) need to be created if they are not present at the moment.
b) “S X”, meaning that we think spam X had been misidentified. Your tool should remove all relationships that spam X has when this command is received; after that, spam X will become an isolated node in the relationship graph.
Initially no relationships exist between any pair of the junk emails, so the number of distinct characteristics at that time is N. Please help us keep track of any necessary information to solve our problem. Input There are multiple test cases in the input file. Each test case starts with two integers, N and M (1 ≤ N ≤ 10 5 , 1 ≤ M ≤ 10 6), the number of email samples and the number of operations. M lines follow, each line is one of the two formats described above. Two successive test cases are separated by a blank line. A case with N = 0 and M = 0 indicates the end of the input file, and should not be processed by your program. Output For each test case, please print a single integer, the number of distinct common characteristics, to the console. Follow the format as indicated in the sample below. Sample Input 5 6 M 0 1 M 1 2 M 1 3 S 1 M 1 2 S 3
3 1 M 1 2
0 0 Sample Output Case #1: 3 Case #2: 2
현재 우리 생활 에서 스 팸 메 일이 자주 발생 한다. 우 리 는 스 팸 메 일 을 판별 할 수 있 는 방법 을 강구 해 야 한다. 그래서 n 개의 메 일 에서 공공 적 인 특징 을 추출 하고 이 특징 에 부합 되면 두 개의 메 일 을 한 가지 로 합 쳐 야 한다. 그러나 우리 가 잘못 판단 한 경우 도 있다. 그러면 이 메 일 을 분리 해서 고립 점 이 되 어야 한다.그래서 n 통 의 메 일 에 대해 우 리 는 m 가지 조작 을 한다.하 나 는 M a b 작업 인 데 a, b 메 일 을 하나의 유형 으로 분류 하 는 것 이다. 그리고 S a 는 a 를 분류 에서 꺼 내 고립 점 이 되 는 것 이다.
뚜렷 하고 집합 을 찾 습 니 다. 여기 서 집중 적 으로 노드 를 삭제 하 는 것 과 관련 되 기 때문에 하나의 배열 을 열 어 이 노드 의 현재 진정한 번호 가 얼마 인지 기록 해 야 합 니 다. 우리 의 집합 과 검색 으로 인해 나무 모양 의 상황 이 발생 할 수 있 습 니 다 (Find () 함수 가 경 로 를 줄 이 고 조회 할 때 만 잎 노드 를 뿌리 노드 에 직접 걸 수 있 기 때 문 입 니 다).그래서 이 점 을 트 리 에서 직접 삭제 할 수 없습니다. 그렇지 않 으 면 갈 라 진 부분 을 잃 을 수 있 습 니 다. 그래서 우 리 는 가상 노드 를 만 듭 니 다. 원래 의 노드 가 현재 있 는 위 치 는 바로 이 가상 노드 입 니 다.이렇게 하면 우 리 는 합병 할 때 실제 노드 를 합병 하면 된다.이렇게 말 하 는 것 이 추상 적일 지 코드 에 따라 한 번 생각하면 차이 가 많 지 않다.
AC 코드:
#include
#include
#define maxn 1000010
using namespace std;
int f[maxn], r[maxn], flag[maxn]; //f ,r
int n, m, bb;
void init()
{
for(int i = 0; i < maxn; i++)
f[i] = r[i] = i;
return ;
}
int getf(int x)
{
return (f[x] == x) ? x : (f[x] = getf(f[x]));
}
void unit(int a, int b)
{
int x = getf(a), y = getf(b);
f[y] = x;
}
void del(int x)
{
r[x] = bb;
f[bb] = r[bb];
bb++;
}
int main()
{
int num = 0;
while(scanf("%d%d", &n, &m), n + m)
{
init();
bb = n;
for(int i = 0; i < m; i++)
{
char c;
getchar();
c = getchar();
if(c == 'M')
{
int a, b;
scanf("%d%d", &a, &b);
unit(r[a], r[b]);
}
else if(c == 'S')
{
int a;
scanf("%d", &a);
del(a);
}
//for(int i = 0; i < n; i++)
//printf("f[%d]: %d, r[%d]: %d
", i, f[i], i, r[i]);
}
int cnt = 0;
memset(flag,0,sizeof(flag));
for(int i=0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.