a = 4的倍数个数
b = 2的倍数个数(不包括4的倍数)
c = 奇数个数
if a >= b return true;
if a == b - 1 && c > 1 return true;
return false;