Problem 626
Counting Binary Matrices
A binary matrix is a matrix consisting entirely of 0s and 1s. Consider the following transformations that can be performed on a binary matrix:
- Swap any two rows
- Swap any two columns
- Flip all elements in a single row (1s become 0s, 0s become 1s)
- Flip all elements in a single column
Two binary matrices
via the sequence of two transformations “Flip all elements in column 3” followed by “Swap rows 1 and 2”.
Define
Find
01矩阵计数
01矩阵指的是只由0或1构成的矩阵。对于任意01矩阵,可以进行以下变形:
- 交换任意两行
- 交换任意两列
- 翻转一行中所有元素(1变成0,0变成1)
- 翻转一列中所有元素
现有两个01矩阵
只需先翻转
在所有
求
Gitalking ...