mp方法(sf12d) 摘要:解题思路:注意事项:容易超时参考代码:#include<bits/stdc++.h>using namespace std;int main(){ map<string,string…… 题解列表 2025年06月02日 0 点赞 0 评论 93 浏览 评分:0.0
全排列next_permuntation()(sf12e) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[9]={1,2,3,4,5,6,7,8,9};//7254=…… 题解列表 2025年06月02日 0 点赞 0 评论 95 浏览 评分:0.0
全排列(sf12f) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s1; …… 题解列表 2025年06月02日 0 点赞 0 评论 90 浏览 评分:0.0
截取字符串的某段(sf12g) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; st…… 题解列表 2025年06月02日 0 点赞 0 评论 88 浏览 评分:0.0
map办法(sf12h) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; cin>>s; …… 题解列表 2025年06月02日 0 点赞 0 评论 92 浏览 评分:0.0
getline输入字符串可包含空格(sf12i) 摘要:解题思路:注意事项:' '和" "不同参考代码:#include<bits/stdc++.h>using namespace std;int main(…… 题解列表 2025年06月02日 0 点赞 0 评论 93 浏览 评分:0.0
stringstream /set去重(sf12j) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ strin…… 题解列表 2025年06月02日 0 点赞 0 评论 105 浏览 评分:0.0
最长字符(sf12k) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s;&n…… 题解列表 2025年06月02日 0 点赞 0 评论 110 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:结构体注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;struct year_month_day{int yea…… 题解列表 2025年06月03日 1 点赞 0 评论 128 浏览 评分:10.0
dfs深度(sf13e) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,m,cnt=0;int a[102];int visited…… 题解列表 2025年06月01日 0 点赞 0 评论 124 浏览 评分:0.0