# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
165619 | beso123 | Geppetto (COCI15_geppetto) | C++14 | 135 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
int ans=0;
int n,m;
vector<int> g[100];
main(){
cin>>n>>m;
for(int k=1;k<=m;k++){
int a,b;
cin>>a>>b;
g[a].push_back(b);
g[b].push_back(a);
}
int N=1<<(n);
for(int k=0;k<=N;k++){
bitset<22> b=k;
int ind=1;
for(int i=0;i<n;i++){
if(b[i])
for(int j=0;j<g[i+1].size();j++){
if(b[g[i+1][j]-1]==1){
ind=0;
break;
}
if(!ind)
break;
}
}
if(ind)
ans++;
}
cout<<ans-1;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |