# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
292448 | 7_7_7 | Geppetto (COCI15_geppetto) | C++17 | 404 ms | 520 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n;
int m;
int used[50][50];
int main()
{
ios_base::sync_with_stdio(false);
cin >> n >> m;
for(int i = 1; i <= m; i ++){
int x, y;
cin >> x >> y;
used[x][y] = 1;
used[y][x] = 1;
}
int res = 0;
for(int i = 0; i < (1 << n); i ++){
vector<int> t;
for(int j = 0; j < n; j ++){
if(i & (1 << j)) t.push_back(j + 1);
}
int good = 1;
for(int j = 0; j < (int)t.size(); j ++){
for(int k = j + 1; k < (int)t.size(); k ++){
good &= (used[t[j]][t[k]] == 0);
}
}
res += good;
}
cout << res << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |