我一次性AC这道题,一开始没有读懂题。
#include<iostream>
using namespace std;
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
double k;
string a,b;
cin >> k >> a >> b;
int xtcs=0,cd=a.size();
for(int i=0;i<cd;i++)
{
if(a[i]==b[i])
xtcs++;
}
if(xtcs*1.0/cd>=k)
cout << "yes";
else
cout << "no";
// fclose(stdin);
// fclose(stdout);
return 0;
}