How many ways there are to divide $n$ couples ($2n$ people) to $n$ different rooms such that in each room there is exactly 2 people and couples can't be in the same room. (It is possible to have $2$ males or $2$ females inside a room).
It is probably inclusion-exclusion rule but I don't really understand how to use it.
For now I will assume that the rooms are interchangeable.
There are $\frac{(2n)!}{2^nn!}$ ways to pair up the $2n$ people; see this answer. Now number the couples from $1$ through $n$. For $k\in[m]$ let $A_k$ be the set of pairings that put couple $k$ in the same room. We want to avoid all of the pairings in $\bigcup_{k\in[n]}A_k$, so the answer to the question is
$$\frac{(2n)!}{2^nn!}-\left|\bigcup_{k\in[n]}A_k\right|\;.$$
We can use the inclusion-exclusion principle to compute $\left|\bigcup_{k\in[n]}A_k\right|$:
$$\begin{align*} \left|\bigcup_{k\in[n]}A_k\right|&=\sum_{\varnothing\ne I\subseteq[n]}(-1)^{|I|+1}\left|\bigcap_{k\in I}A_k\right|\\ &=\sum_{\varnothing\ne I\subseteq[n]}(-1)^{|I|+1}\frac{(2(n-|I|))!}{2^{2(n-|I|)}(n-|I|)!}\\ &=\sum_{k=1}^n(-1)^{k+1}\binom{n}k\frac{(2(n-k))!}{2^{n-k}(n-k)!}\;, \end{align*}$$
since for each $k\in[n]$ there are $\binom{n}k$ subsets of $[n]$ of cardinality $k$. Thus,
$$\begin{align*} \frac{(2n)!}{2^nn!}-\left|\bigcup_{k\in[n]}A_k\right|&=\frac{(2n)!}{2^nn!}-\sum_{k=1}^n(-1)^{k+1}\binom{n}k\frac{(2(n-k))!}{2^{n-k}(n-k)!}\\ &=\sum_{k=0}^n(-1)^k\binom{n}k\frac{(2(n-k))!}{2^{n-k}(n-k)!}\\ &=\sum_{k=0}^n(-1)^{n-k}\binom{n}k\frac{(2k)!}{2^kk!}\;. \end{align*}$$
Since the rooms are in fact numbered, the actual answer desired is $n!$ times this.