L1-078 吉老师的回归
作者:
lvjj
,
2024-04-06 15:08:54
,
所有人可见
,
阅读 6
//扫描所有行是否有qiandao或easy,把没有的那一行都加到数组里面
//这样就得到了所有吉老师一定做了的题目的题目集
//接着用m作为我要访问题目集下标的指针,输出对应指针下的值即可
#include <bits/stdc++.h>
using namespace std;
string str;
vector<string> s;
int main(){
int n,m;
cin>>n>>m;
//cin.ignore();//先用cin后用getline的时候要用ignore或getchar
getchar();
while(n--){
getline(cin,str);
//find找到了会返回出现的次数,否则返回-1
if(str.find("qiandao")==-1&&str.find("easy")==-1) s.push_back(str);
}
//由于vector是支持下标访问,所以可不用自定义一个指针
if(m>=s.size())cout<<"Wo AK le";//特判:当做完题目时候就要输出ak了
else cout<<s[m];
return 0;
}