文章
2
粉丝
22
获赞
0
访问
1.3k
#include <bits/stdc++.h>
using namespace std;
typedef struct node{
string first,second;
int dis;
}NODE;
bool cmt(const NODE &a, const NODE &b)
{
if (a.dis == b.dis)
{
if (a.first == b.first)
return a.second < b.second;
return a.first < b.first;
}
return a.dis < b.dis;
}
int find_dis( string a, string b){
int cnt = 0;
for(int i=0;i<a.length();i++){
if(a[i]!=b[i]){
cnt++;
}
}
return cnt;
}
int main(){
vector<NODE>Res;
int n;
cin>>n;
...
登录后发布评论
输出的时候不一定有6组,有可能小于6