# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
604778 | MilosMilutinovic | Geppetto (COCI15_geppetto) | C++14 | 536 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: wxhtzdy
* created: 25.07.2022 11:41:41
**/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, m;
cin >> n >> m;
vector<vector<bool>> g(n, vector<bool>(n));
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
--a; --b;
g[a][b] = g[b][a] = true;
}
int ans = 0;
for (int t = 0; t < (1 << n); t++) {
bool ok = true;
for (int i = 0; i < n; i++) {
if (t >> i & 1) {
for (int j = 0; j < n; j++) {
if (t >> j & 1) {
ok = (ok & !g[i][j]);
}
}
}
}
if (ok) {
ans += 1;
}
}
cout << ans << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |