heK10
heK10
全部文章
分类
归档
标签
去牛客网
登录
/
注册
heK10的博客
全部文章
(共3篇)
题解 | 单词替换
#include <iostream> using namespace std; int main() { string s; while (getline(cin, s)) { string a, b; getline(cin, a); getline(cin,...
2025-03-17
1
38
题解 | 后缀子串排序
#include <algorithm> #include <iostream> using namespace std; int main() { string s;cin>>s; string str[100]; int len=s....
2025-03-17
1
33
题解 | 查找第K小数
#include <iostream> #include <string> #include <algorithm> #include <cmath> using namespace std; //第K小的数 int main() { int ...
2025-03-03
0
50