Algorithm
BOJ 11724 c++ 연결 요소의 개수
BOJ 11724 연결 요소의 개수 c++ 백준 11724 연결 요소의 개수 c++ #include using namespace std; int v, e; // v는 정점의 개수, e는 간선의 개수. vector adj[1005]; int vis[1005]; int dfs() { int ret = 0; stack s; for (int i = 1; i > v >> e; int x, y; while (e--) { cin >> x >> y; adj[x].push_back(y); adj[y].push_back(x); } cout
2020. 7. 22. 19:56
최근댓글