# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
43839 | heon | Geppetto (COCI15_geppetto) | C++11 | 6 ms | 552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n,m;
vector <int> relation[25];
bool bio[25];
int solve(int a){
if(a == n) return 1;
int ret = solve(a+1);
bool ok = 1;
for(auto x : relation[a]){
if(bio[x]) ok = 0;
}
if(ok){
bio[a] = 1;
ret += solve(a+1);
bio[a] = 0;
}
return ret;
}
int main(){
cin >> n >> m;
for(int i = 0; i < m; i++){
int a,b;
cin >> a >> b;
a--,b--;
relation[a].push_back(b);
relation[b].push_back(a);
}
cout << solve(0);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |