牛客563547075号
牛客563547075号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客563547075号的博客
全部文章
(共4篇)
题解 | #A + B#
#include <cmath> #include <iostream> #include <map> #include <string> #include <vector> using namespace std; /*收集处理 “ + ...
2023-03-28
0
276
题解 | #成绩排序#
#include <iostream> #include <map> using namespace std; struct score { int num; int score; }; score* bubleSort(score* s, int n ) {...
2023-03-24
0
187
题解 | #开门人和关门人#
#include <iostream> using namespace std; //记录一个最大最小值就可以了 int main() { string a,b,c,min="99999999",max="0",ansx,ansn; cin >> a;//接收...
2023-03-05
3
407
题解 | #小白鼠排队#
#include <stdio.h> #include <stdlib.h> typedef struct{ int weight; char head[11]; } mouse; int cmp(const void *a,const void *b){ ...
2023-03-04
1
380