第二题 大佬求助,为啥我这个解法是错误的呢?0%通过lü'b数据范围: n <= 1e5;思路: 统计odd、even。然后求组合数。 #include #include #include using namespace std; typedef long long LL; const int N = 1e5 + 10, mod = 1e9 + 7; int fact[N],infact[N]; int n; int a[N]; //快速幂求逆元 int qmi(int a, int k, int p) { int res = 1; while(k){ ...