# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
208396 | ArKCa | Geppetto (COCI15_geppetto) | C++17 | 12 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define pb push_back
#define fri(a) freopen(a,"r",stdin);
#define fro(a) freopen(a,"w",stdout);
using namespace std;
int n,m,a,b,ans;
vector<int>v[30];
void fun(int x,int y){
ans++;
// printf("%d\n", x);
if(y==(n+1))
return ;
int flag=0;
for(int i=y;i<=n;i++){
flag=0;
for(int j=0;j<v[i].size();j++){
if(((1<<v[i][j])&x)!=0){
flag=1;
}
}
if(flag==0)
fun(x^(1<<i),i+1);
}
}
int main(){
//fri("in.txt");
//fro("out.txt");
cin>>n>>m;/**/
for(int i=0;i<m;i++){
scanf("%lld %lld",&a,&b);
v[a].pb(b);
v[b].pb(a);
}
fun(0,1);
cout<<ans<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |