摘要:
#include<iostream>#include<stdio.h>#include<cstring>#include<algorithm>#define max( a,b ) ( (a)>(b)?(a):(b) )using namespace std;long long N,M,dp[12][4097];void DFS( int sta, int c,long long stu,long long ans ){ if( sta >= M )return; DFS( sta+1,c,stu,ans ); if( !(stu&am 阅读全文
posted @ 2013-05-13 13:43
浪舟
阅读(205)
评论(0)
推荐(0)