煮饼ipc
煮饼ipc
全部文章
分类
题解(21)
归档
标签
去牛客网
登录
/
注册
煮饼ipc的博客
全部文章
(共21篇)
c++题解 | #单词倒排 10行代码#
#include <iostream> #include <vector> using namespace std; int main(){ vector<string> str(100); int j = 0; string ss; ...
C++
2022-03-09
0
326
c++题解 | #字符串合并处理 30行代码#
#include <iostream> #include <string> #include <algorithm> using namespace std; int main(){ string str, str1, str2; string a...
C++
2022-03-09
0
391
c++题解 | #字符串加解密 10行代码#
直接用字典法,简单快捷 #include <iostream> using namespace std; int main(){ string str1, str2; cin >> str1 >> str2; string a("abcde...
C++
2022-03-08
79
1198
c++题解 | #查找兄弟单词 30行代码#
#include <iostream> #include <vector> #include <string> #include <algorithm> using namespace std; int main (){ int N, k; ...
C++
2022-03-08
0
390
C++题解 | #字符串排序 10行代码#
#include <iostream> using namespace std; int main(){ string str; char out[1000]; int k = 0; getline(cin, str); for(int i = 0...
C++
2022-03-08
77
1721
C++题解 | #合唱队#
直接从前求一遍最长递增子序列,从后再求一遍,然后对应累加-1求最大值max即可,最后输出N-max #include <iostream> #include <vector> using namespace std; int main (){ int N, max ...
C++
2022-03-08
0
382
题解 | #删除字符串中出现次数最少的字符#
#include <iostream> using namespace std; int main(){ string str; cin >> str; int num[26]={0}, min = 20; for(int i = 0; i &...
C++
2022-03-07
9
328
C++题解 | #汽水瓶 10行代码#
#include <iostream> using namespace std; int main(){ int N; while(cin >> N){ if(N == 0) return 0; int count = 0; ...
C++
2022-03-07
0
325
题解 | #简单密码#
#include <iostream> #include <map> using namespace std; int main (){ string str; map<char,string> dictionary{{'a',"2"}, {'b...
C++
2022-03-07
0
375
c++ | #密码验证合格程序 30行代码#
#include <iostream> using namespace std; int main (){ string str; while(getline(cin, str)){ if(str.size() <= 8) {...
C++
2022-03-07
5
776
首页
上一页
1
2
3
下一页
末页