题解列表

筛选

质子(sf12a)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=10010;int cheak(int x){ ……

dfs深度(sf13e)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,m,cnt=0;int a[102];int visited……

结构体之时间设计

摘要:解题思路:结构体注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;struct year_month_day{int yea……

最长字符(sf12k)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s;&n……

map办法(sf12h)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; cin>>s; ……

全排列(sf12f)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s1; ……