爱吃鱼的懒羊羊等一个offer
爱吃鱼的懒羊羊等一个offer
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱吃鱼的懒羊羊等一个offer的博客
全部文章
(共7篇)
题解 | 今年的第几天?
#include <iostream> using namespace std; int main() { int y, m, d; int day[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; ...
2025-03-19
1
40
题解 | Problem B
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int m; vector<int> vec; ...
2025-03-14
0
42
题解 | 互换最大最小数
#include <iostream> using namespace std; #include <vector> #include <algorithm> int main() { vector<int> vec; int n,n...
2025-03-14
0
35
题解 | 回文字符串
#include <iostream> #include <algorithm> using namespace std; int main() { string str,r_str; while(getline(cin,str)){ r_s...
2025-03-13
0
48
题解 | 字母统计
#include <iostream> using namespace std; #include <string> int main() { int count[26]; for(int i=0;i<26;i++){ count[i]=0; } stri...
2025-03-08
0
43
题解 | 字符串内排序
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { string str...
2025-03-08
0
39
题解 | 后缀子串排序
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { string str...
2025-03-08
0
53