比赛 |
20120316 |
评测结果 |
WWWWWWWWWW |
题目名称 |
棋盘放車 |
最终得分 |
0 |
用户昵称 |
11111111 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2012-03-16 22:02:24 |
显示代码纯文本
#include<iostream>
#include<fstream>
using namespace std;
int n,m,q[21][21]={0};
unsigned long long answer=0;
bool w[21][21]={0},used[21]={0};
void dfs(int x)
{
if (x==n+1)
{
answer++;
return;
}
else
{
for (int i=1;i<=n;i++)
{
if (used[i]||w[x][i])
continue;
used[i]=1;
q[x][i]=1;
x++;
dfs(x);
x--;
q[x][i]=0;
used[i]=0;
}
}
}
int main()
{
ifstream fin("examone.in");
ofstream fout("examone.out");
cin>>n>>m;
for (int i=0;i<m;i++)
{
int a,b;
cin>>a>>b;
w[a][b]=true;
}
dfs(1);
cout<<answer;
fin.close();
fout.close();
return 0;
}