Skip to content

Instantly share code, notes, and snippets.

@fpdjsns
Created May 28, 2019 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fpdjsns/3bbe557bae7185d9d7b1eeb06302c946 to your computer and use it in GitHub Desktop.
Save fpdjsns/3bbe557bae7185d9d7b1eeb06302c946 to your computer and use it in GitHub Desktop.
[algospot][완전탐색] 소풍 : https://algospot.com/judge/problem/read/PICNIC
#include <string>
#include <vector>
#include <set>
#include <algorithm>
#include<iostream>
using namespace std;
int n;
int ans = 0;
vector<int> check;
vector<set<int>> friends;
/*
* 시간복잡도 : O(N!)
*/
void solve(int ind) {
if (ind == n) {
ans++;
return;
}
if (check[ind]) { //이미 짝인 경우
solve(ind + 1); // 다음 인덱스 탐색
return;
}
for (int i = ind+1; i < n; i++) {
// 짝이 가능한 경우
if (!check[i] && friends[ind].find(i) != friends[ind].end()){
check[i] = true;
solve(ind+1); // 다음 탐색
check[i] = false;
}
}
}
int main() {
int C;
cin >> C;
while (C--) {
int m;
cin >> n >> m;
check = vector<int>(n, false);
ans = 0;
friends = vector<set<int>>(n);
int a, b;
for (int i = 0; i < m; i++) {
cin >> a >> b;
friends[a].insert(b);
friends[b].insert(a);
}
solve(0);
cout << ans << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment