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