牛客674554120号
牛客674554120号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客674554120号的博客
全部文章
(共4篇)
题解 | #找最小数#
#include<bits/stdc++.h> using namespace std; struct numbers{ int a; int b; }; struct numbers num[1000]; bool cmp(numbers n1,numbers n2){ ...
2024-03-23
0
193
题解 | #查找#
#include<bits/stdc++.h> using namespace std; const int MAX=100; int main(){ int n;//数组长度 while(cin>>n){ vector<int> v1; for(i...
2024-03-22
0
170
题解 | #守形数#
#include<bits/stdc++.h> using namespace std; //11 121 int main() { int N; while (cin >> N) { int a = N * N, b = N; ...
2024-03-22
0
201
题解 | #小白鼠排队#
#include<bits/stdc++.h> using namespace std; int main(){ int n; map<int,string> m; while(cin>>n){ //map<key,value>用来保存...
2024-03-22
0
161