1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
| #include <bits/stdc++.h>
using namespace std;
const double eps = 1e-10; const double pi = 3.1415926535897932384626433832795; const double eln = 2.718281828459045235360287471352;
#define f(i, a, b) for (int i = a; i <= b; i++) #define scan(x) scanf("%d", &x) #define mp make_pair #define pb push_back #define lowbit(x) (x&(-x))
#define fi first #define se second #define SZ(x) int((x).size()) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define summ(a) (accumulate(all(a), 0ll))
typedef unsigned long long ull; typedef pair<int,int> pii; typedef vector<int> vi;
using ll=long long;
ll tt,n; string s; map<char,int> cov; map<int,char> qsb; int main() { ios::sync_with_stdio(false); cin.tie(0); cin>>tt; cov['n']=1,cov['i']=2,cov['w']=3; qsb[1]='n',qsb[2]='i',qsb[3]='w'; f(sb,1,tt){ cin>>n; map<int,map<int,vi>>tmp; f(i,1,n){ cin>>s; map<char,int> cnt; for(auto it:s)cnt[it]+=1; for(auto [aa,bb]:cnt){ if(bb==2){ if(cnt['n']==0)tmp[cov[aa]][1].push_back(i); if(cnt['i']==0)tmp[cov[aa]][2].push_back(i); if(cnt['w']==0)tmp[cov[aa]][3].push_back(i); break; } if(bb==3){ if(cnt['n']==0)tmp[cov[aa]][1].push_back(i); if(cnt['i']==0)tmp[cov[aa]][2].push_back(i); if(cnt['w']==0)tmp[cov[aa]][3].push_back(i); break; } } } vector<array<int,4>> ans; f(i,1,3){ for(auto &[__,vv]:tmp[i]){ while(!vv.empty()){ if(!tmp[__][i].empty()){ ans.push_back({i,vv[0],__,tmp[__][i][0]}); vv.erase(vv.begin()),tmp[__][i].erase(tmp[__][i].begin()); }else break; } } } f(i,1,3){ for(auto &[__,vv]:tmp[i]){ while(!vv.empty()){ for(auto &[aa,bb]:tmp[__]){ if(!bb.empty()){ ans.push_back({i,vv[0],__,bb[0]}); vv.erase(vv.begin()); if(aa!=i)tmp[i][aa].push_back(bb[0]); bb.erase(bb.begin()); } } } } } cout<<ans.size()<<"\n"; for(auto [aa,bb,cc,dd]:ans)cout<<bb<<" "<<qsb[aa]<<" "<<dd<<" "<<qsb[cc]<<"\n"; } return 0; }
|