牛客652687585号
牛客652687585号
全部文章
分类
题解(56)
归档
标签
去牛客网
登录
/
注册
牛客652687585号的博客
全部文章
(共56篇)
题解 | #找x#
#include<iostream> #include<cstdio> using namespace std; const int MAXN=202; int main(){ ...
C++
C
C++14
数组
2022-01-26
0
402
题解 | #查找#
#include<iostream> #include<cstdio> using namespace std; const int MAXN=101; int main(){ ...
C++
C
C++14
数组
2022-01-26
0
320
题解 | #奥运排序问题#
#include<iostream> #include<cstdio> using namespace std; int main() { int n, m, ...
C++
C
数组
模拟
2022-01-25
0
413
题解 | #小白鼠排队#
#include<iostream> #include<cstdio> #include<string> #include<algorithm> using namespace std; struct Mouse{ &nb...
C++
C
C++14
数组
2022-01-25
0
335
题解 | #整数奇偶排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; bool Descend(int a,int b){ &nb...
C++
C
C++14
数组
2022-01-25
0
368
题解 | #特殊排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main(){ int&...
C++
C
C++14
数组
2022-01-25
0
474
题解 | #成绩排序#
#include<iostream> #include<cstdio> #include<algorithm> #include<string> using namespace std; struct Student{ &...
C++
C
C++14
数组
2022-01-25
0
413
题解 | #成绩排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; struct Student{ ...
C++
C
C++14
数组
2022-01-24
0
360
题解 | #排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int array[100]; int main() { &...
C++
C
C++14
数组
2022-01-24
0
365
题解 | #坠落的蚂蚁#
1.蚂蚁之间不能互相穿过,因此各个蚂蚁的相对位置不变。 2.各个蚂蚁除了速度和位置,其余是无差别的,因此两个蚂蚁相撞可以等效为这两个蚂蚁互相穿过,并交换无差别的“躯壳”。 3.可以假设各个蚂蚁相互独立,不会相撞,可以分别得出每个蚂蚁坠落的时间和方向。 4.每当有一个蚂蚁从左边坠落,...
C++
C
C++14
模拟
数组
设计
2022-01-24
4
690
首页
上一页
1
2
3
4
5
6
下一页
末页