/* HW其他6 数据分类处理 */ #include<bits/stdc++.h> using namespace std; vector<int>R; vector<string>temp,I; map<int,vector<int>>myhash; string tostr(int x) //数字转字符串 { string ans=""; if(x==0)return "0"; while(x){ ans+=(x%10)+'0'; x/=10; } return string(ans.rb...