Posts 1043 거짓말
Post
Cancel

1043 거짓말

1043 거짓말

알고리즘(DFS)

1
2
3
1. 처음 진실을 알고있는 사람과 연결돼있는 파티 그룹과, 절대 연결되지 않은 그룹을 나눠야함.

2. 나는 단순히 변화가 발생하지 않을 때까지 반복하였음. 그리고 그런 사람이 없는 그룹의 개수만 세서 출력함.

다른 풀이

1
2
3
4
5
6
1. 내꺼에서 좀더 최적화된 풀이
2. 처음에 입력을 받으면서, 각 사람들이 어디 파티와 연결되어있는지 벡터에 저장.
3. 처음부터 진실을 알고 있는 사람들이 있는 그룹을 큐에 넣고, 거짓말을 할 수 있는 그룹인지 체크하는 배열에 표시
4. 큐에 넣어진 그룹들을 하나씩 빼가며, 그 그룹에 있는 사람들이 속한 그룹도 큐에 추가.
	이미 검사한 사람이거나, 검사한 그룹이면 패스
5. 그렇게해서 탐색이 끝나면, 표시안된 그룹의 개수를 세서 출력

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <iostream>

using namespace std;

int N, M, party[51][51];
bool knowTruth[51], alreadyCheck[51];

int getAns();
void makeKnow();

int main() {
	cin >> N >> M;
	int t;
	cin >> t;
	while(t--) {
		int a;
		cin >> a;
		knowTruth[a] = true;
	}

	for (int i = 0; i < M; i++) {
		int n;
		cin >> n;
		for (int j = 0; j < n; j++)
			cin >> party[i][j];
	}
	makeKnow();
	cout << getAns();
}

void makeKnow() {
	bool change = true;
	while (change) {
		change = false;

		for (int i = 0; i < M; i++) {
			if (alreadyCheck[i])
				continue;

			int index = 0;
			bool check = false;
			while (party[i][index] != 0) {
				if (knowTruth[party[i][index]]) {
					check = true;
					break;
				}
				index++;
			}

			if (check) {
				change = true;
				alreadyCheck[i] = true;
				index = 0;
				while (party[i][index] != 0) {
					knowTruth[party[i][index]] = true;
					index++;
				}
			}
		}
	}
}

int getAns() {
	int result = 0;
	for (int i = 0; i < M; i++) {
		int index = 0;
		bool check = true;
		while (party[i][index] != 0) {
			if (knowTruth[party[i][index]]) {
				check = false;
				break;
			}
			index++;
		}
		if (check)
			result++;
	}
	return result;
}
This post is licensed under CC BY 4.0 by the author.

10217 KCM Travel

10775 airport

Comments powered by Disqus.