_洋洋_
_洋洋_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
_洋洋_的博客
全部文章
(共8篇)
题解 | #子串计算#
#include<bits/stdc++.h> using namespace std; map<string,int> m; int main(){ char str[101]; fgets(str,101,stdin); string str1 =...
2024-03-25
0
169
题解 | #搬水果#
#include <iostream> #include<bits/stdc++.h> using namespace std; int main() { int n; priority_queue<int> mq; while(scanf(&...
2024-03-25
0
191
题解 | #堆栈的使用#
//KY180 堆栈的使用 #include<bits/stdc++.h> #include<cstdio> #include<stack> using namespace std; int main(){ stack<int> s;//栈要定...
2024-03-25
0
177
题解 | #树查找#
//KY194 树查找 //有一棵树,输出某一深度的所有节点,有则输出这些节点,无则输出EMPTY。该树是完全二叉树。 #include<bits/stdc++.h> using namespace std; int main() { int n ; int arr[1...
2024-03-22
0
199
题解 | #进制转换#
//KY80 进制转换 #include<bits/stdc++.h> using namespace std; int main(){ char arr[100]; vector<int> arr1; while(scanf("%s&qu...
2024-03-22
0
164
题解 | #进制转换2#
//KY235 进制转换2 //将M进制的数X转换为N进制的数输出。 #include<cstdio> #include<bits/stdc++.h> #include <cmath> using namespace std; int main(){ ch...
2024-03-21
0
195
题解 | #二进制数#
//十进制->二进制 //核心:①n%2②n/2 #include<cstdio> #include<bits/stdc++.h> using namespace std; int main(){ int n; vector<int> arr...
2024-03-21
0
165
题解 | #Hello World for U#
#include<iostream> #include<cstdio> #include<string> using namespace std; int main(){ char arr[100][100]; char buff[100];//暂...
2024-03-20
1
207