牛客592953507号
牛客592953507号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客592953507号的博客
全部文章
/ 题解
(共5篇)
题解 | #下厨房#
双指针 #include<bits/stdc++.h> using namespace std; int main() { set<string> material_set; string str; int sum=0; while( cin...
C++
2021-09-15
0
452
题解 | #下厨房#
双指针 #include<bits/stdc++.h> using namespace std; int main() { set<string> material_set; string str; int sum=0; while( cin...
C++
2021-09-15
0
377
题解 | #下厨房#
定义set记录已出现材料,每次输入材料:(1)查询该材料是否在set中出现过,若出现过则直接看下一个输入,避免重复计数(2)若未出现则插入set,且计数+1 #include using namespace std; int main() { set material_set; st...
C++
哈希表
2021-09-15
0
501
题解 | #计算字符串的距离#
#include<bits/stdc++.h> using namespace std; int main() { string word1, word2; while( cin>>word1>>word2 ) { in...
C++
动态规划
2021-09-15
0
492
题解 | #找出字符串中第一个只出现一次的字符#
#include<bits/stdc++.h> using namespace std; int main() { string str; while( getline( cin , str ) ) { unordered_map< int ...
C++
哈希表
2021-09-15
0
315