# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
103534 | leonarda | Geppetto (COCI15_geppetto) | C++14 | 524 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define first ff
#define second ss
typedef pair<int, int> pi;
typedef long long int lint;
const int inf = 0x3f3f3f3f;
int n, m;
bool a[23][23];
int z[23];
int ans = 0;
vector<int> bin(int x) {
vector<int> t;
if(x == 0) t.pb(0);
while(x) {
t.pb(x % 2);
x /= 2;
}
return t;
}
int main ()
{
ios::sync_with_stdio(0);
cin >> n >> m;
for(int i = 0; i < m; ++i) {
// a[i][i] = 1;
int x, y;
cin >> x >> y;
a[x - 1][y - 1] = a[y - 1][x - 1] = 1;
}
/*
for(int i = 0; i < n; ++i) {
for(int j = 0; j < n; ++j)
cout << a[i][j];
cout << endl;
}
*/
int k = 0;
for(int i = 0; i < n; ++i) {
int broj = 0;
for(int j = 0; j < n; ++j) {
if(a[i][j])
broj += 1 << j;
}
z[k++] = broj;
}
/*
cout << endl;
for(int i = 0; i < k; ++i)
cout << z[i] << " ";
cout << endl;
*/
for(int i = 0; i < 1 << n; ++i) {
bool ok = 1;
vector<int> v = bin(i);
for(int j = 0; j < v.size(); ++j) {
if(v[j] == 1) {
if(__builtin_popcount(i & z[j]) > 0) {
ok = 0;
break;
}
}
}
if(ok) {
++ans;
}
// cout << endl;
}
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |