题解
2024-12-07 19:54:41
发布于:广东
24阅读
0回复
0点赞
本题顺着思路来就可以了。需要正确运用find函数。
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
string a,b,c,d;
cin >> a >> b >> c >> d;
for(int i = 0;i < n;i ++){
string s;
cin >> s;
if(s.find(a) != s.npos and s.find(b) != s.npos and s.find(c) != s.npos and s.find(d) == s.npos){
cout << i + 1;
return 0;
}
}
cout << -1;
return 0;
}
这里空空如也
有帮助,赞一个