程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #查找兄弟单词#
#include <bits/stdc++.h> using namespace std; //20.54 bool isbro(string s1, string s2) { /*兄弟单词:首先长度要一样,其次每个字母出现的频数要一样*/ if (s1 == s2) r...
2023-01-29
0
350
题解 | #字符串排序#
#include <bits/stdc++.h> #include <cctype> #include <vector> using namespace std; int main() { string s; while(getline(cin,s...
2023-01-29
0
317
题解 | #数据分类处理#
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; //看看a包不包含t bool t_in_I(int t,int a) { string ...
2023-01-29
0
344
题解 | #合唱队#
#include <bits/stdc++.h> #include <vector> using namespace std; int N; int max_people=0; vector<int> long_(vector<int>h) { ...
2023-01-29
0
282
题解 | #删除字符串中出现次数最少的字符#
#include <algorithm> #include <bits/stdc++.h> #include <vector> using namespace std; //11:35 int main() { string s; while(ge...
2023-01-29
0
309
题解 | #汽水瓶#
#include <iostream> using namespace std; int main() { int empty_bottles; int drink; int ans=0; while(cin>>empty_bottles&&e...
2023-01-29
0
288
题解 | #简单密码#
#include <bits/stdc++.h> #include <cctype> using namespace std; //16:34 int main() { string s; while(getline(cin,s)) { ...
2023-01-29
0
248
题解 | #简单错误记录#
#include <bits/stdc++.h> using namespace std; struct rec { pair<string, string> re; //记录 int times;//错误次数 }; rec Q[200];//储存八条我们要选...
2023-01-29
0
309
题解 | #识别有效的IP地址和掩码并进行分类统计#
#include <bits/stdc++.h> #include <sstream> #include <vector> using namespace std; //11.27 int A = 0, B = 0, C = 0, D = 0, E = 0, wr...
2023-01-29
0
336
题解 | #坐标移动#
#include <bits/stdc++.h> #include <cctype> #include <sstream> using namespace std; //11.14 int x=0,y=0; void cal(string t) { if(...
2023-01-29
0
296
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页