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 |
Tags
- 유니티
- 다익스트라
- 누적 합
- 백준
- Team Fortress 2
- XR Interaction Toolkit
- 자료구조
- 문자열
- VR
- ue5
- 투 포인터
- DFS
- 스택
- 트리
- 시뮬레이션
- 그래프
- BFS
- 다이나믹 프로그래밍
- 수학
- 우선순위 큐
- 구현
- c++
- 그리디 알고리즘
- 브루트포스
- 정렬
- 백트래킹
- Unreal Engine 5
- 유니온 파인드
- 알고리즘
- 재귀
Archives
- Today
- Total
1일1알
백준 13265번 색칠하기 C++ 본문
https://www.acmicpc.net/problem/13265
dfs로 2개의 색을 번갈아가며 칠하다가 불가능한 경우가 나오면 dfs 종료
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
bool ans;
vector<vector<int>> graph;
vector<int> colors;
void Dfs(int curr, int currColor) {
colors[curr] = currColor;
for (auto next : graph[curr]) {
if (colors[next] == 0) {
Dfs(next, (currColor + 1) % 2);
}
else {
if (colors[next] != currColor) continue;
ans = false;
return;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
ans = true;
cin >> n >> m;
graph = vector<vector<int>>(n + 1, vector<int>());
colors = vector<int>(n + 1, 0);
for (int i = 0; i < m; i++) {
int x, y;
cin >> x >> y;
graph[x].push_back(y);
graph[y].push_back(x);
}
for (int i = 1; i <= n; i++) {
if (colors[i] != 0) continue;
Dfs(i, 0);
}
if (ans) cout << "possible\n";
else cout << "impossible\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 24230번 트리 색칠하기 C++ (0) | 2023.02.18 |
---|---|
백준 1913번 달팽이 C++ (0) | 2023.02.17 |
백준 4097번 수익 C++ (0) | 2023.02.13 |
백준 19638번 센티와 마법의 뿅망치 C++ (0) | 2023.02.12 |
백준 21921번 블로그 C++ (0) | 2023.02.11 |