반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 경력
- softeer
- 6987
- upper_bound
- compose
- 오퍼레터
- 연결요소
- 처우산정
- 백트래킹
- 기술면접
- BOJ
- incr
- 이분탐색
- 물채우기
- msSQL
- 파라메트릭
- Docker
- Kafka
- 성적평가
- 매개변수탐색
- BFS
- OFFSET
- 처우협의
- boj #19237 #어른 상어
- dfs
- 13908
- 소프티어
- 퇴사통보
- 백준
- @P0
Archives
- Today
- Total
기술 블로그
1953번 팀배분 본문
728x90
반응형
https://www.acmicpc.net/problem/1953
이분 그래프 문제이다.
참고 문제 : https://www.acmicpc.net/problem/1707
참고 풀이 : https://hsdevelopment.tistory.com/74
#include<bits/stdc++.h>
using namespace std;
#define MAX 101
int N, M, T;
vector<int> v[MAX];
vector<int> a, b;
int color[MAX];
bool go(int now, int next)
{
for (auto i : v[now]) {
if (i == next) {
return false;
}
}
return true;
}
void dfs(int vertex, int nodeColor)
{
color[vertex] = nodeColor;
for (auto hateNode : v[vertex]) {
if (color[hateNode] == 0) {
dfs(hateNode, nodeColor * -1);
}
}
}
int main()
{
//freopen("C:\\Users\\park7\\Desktop\\lazy_bronze\\2.in", "r", stdin);
cin.tie(0);
scanf("%d", &N);
for (int i = 1; i <= N; i++) {
int cnt = 0, hate = 0;
scanf("%d", &cnt);
for (int j = 0; j < cnt; j++) {
scanf("%d", &hate);
v[i].push_back(hate);
v[hate].push_back(i);
}
}
for (int i = 1; i <= N; i++) {
if (color[i] == 0) {
dfs(i, 1);
}
}
printf("%d\n", count(color, color + MAX, 1));
for (int i = 1; i <= N; i++) {
if (color[i] == 1) {
printf("%d ", i);
}
}
printf("\n");
printf("%d\n", count(color, color + MAX, -1));
for (int i = 1; i <= N; i++) {
if (color[i] == -1) {
printf("%d ", i);
}
}
printf("\n");
return 0;
}
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1525번 퍼즐 (0) | 2021.09.11 |
---|---|
2571번 색종이 - 3 (0) | 2021.09.04 |
17836번 공주님을 구해라! (0) | 2021.08.31 |
16493번 최대 페이지 수 (0) | 2021.08.30 |
3067번 Coins (0) | 2021.08.30 |