[BOJ] 1976 여행 가자

Time Lapse :9min 44sec

1976.cpp

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
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int n, m, tmp;
queue<pair<int,int>> q;
int gr[200];
int getG(int n) {
return gr[n] == n ? n : gr[n] = getG(gr[n]);
}
void makeG(int f, int e) {
gr[getG(f)] = gr[getG(e)] = min(getG(e),getG(f));
}
int main() {
scanf("%d %d",&n, &m);
for(int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
scanf("%d", &tmp);
if (tmp)
q.push({i, j});
}
gr[i] = i;
}
while(!q.empty()) {
pair<int,int> p = q.front();
q.pop();
makeG(p.first,p.second);
}
int prev, cur;
scanf("%d",&prev);
for(int i = 1; i < m; i++) {
scanf("%d", &cur);
if(gr[prev-1] != gr[cur-1]){
printf("NO");
exit(0);
}
prev = cur;
}
printf("YES");
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/09/07/PS/BOJ/1976/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.