忘了线性代数的知识了,只能参考博客
#include<bits/stdc++.h>
#define maxn 105
using namespace std;
int n;
int x[maxn],y[maxn];
int match[maxn],vis[maxn];
bool maps[maxn][maxn];
bool dfs(int u){
for(int i=1;i<=n;i++){
if(maps[u][i]&&!vis[i]){
vis[i]=1;
if(!match[i]||dfs(match[i])){
match[i]=u;
return true;
}
}
}
return false;
}
int main(){
// freopen("in.txt","r",stdin);
while(~scanf("%d",&n)){
memset(maps,false,sizeof maps);
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
int x;
scanf("%d",&x);
if(x){
maps[i][j]=true;
}
}
}
int sum=0;
memset(match,0,sizeof match);
for(int i=1;i<=n;i++){
memset(vis,0,sizeof vis);
if(dfs(i)){
sum++;
}
}
if(sum<n){
printf("-1\n");
continue;
}
int tot=0,i,j;
for(i=1;i<=n;i++){
for(j=1;j<=n&&match[j]!=i;j++);
if(i!=j){
x[tot]=i,y[tot++]=j;
swap(match[i],match[j]);
}
}
printf("%d\n",tot);
for(int i=0;i<tot;i++){
printf("C %d %d\n",x[i],y[i]);
}
}
return 0;
}