记录编号 386460 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 棋盘上的車 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 0.099 s
提交时间 2017-03-24 16:54:19 内存使用 8.29 MiB
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
LL f[1<<20|1];
int main(){
	freopen("rook.in", "r", stdin);
	freopen("rook.out", "w", stdout);
	int n; scanf("%d", &n);
	f[0] = 1;
	for(int i = 1; i < 1<<n; i++){
		for(int j = i; j; j -= (j&-j)){
			f[i] += f[i&~(j&-j)];
		}
	}
	printf("%lld\n", f[(1<<n)-1]);
	return 0;
}