木何
木何
全部文章
分类
归档
标签
去牛客网
登录
/
注册
木何的博客
全部文章
(共16篇)
题解 | #农夫、羊、菜和狼的故事#
深度优先遍历 #include<iostream> #include<vector> using namespace std; void result_output(vector<int> result) { int k; int status...
2023-03-11
1
397
题解 | #a+b#
直接保存并提交[狗牛头] #include <iostream> using namespace std; int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case ...
2023-03-05
8
358
题解 | #大整数排序#
#include<iostream> #include<cstring> using namespace std; bool jude(string s1, string s2) { //判断s1是否比s2大 if (s1.size() < s2.size(...
2023-03-05
1
311
题解 | #打印日期#
#include<cstdio> int main() { int y, m, d, n; int flag; int sum; int days[2][12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30,...
2023-03-05
0
223
题解 | #矩阵最大值#
#include<iostream> using namespace std; int main() { int m, n; cin >> m >> n; int** a = new int* [m]; for (int i =...
2023-03-04
1
312
题解 | #遍历链表#
#include<iostream> using namespace std; typedef struct node { int data; struct node* next; } node; void createList(node** L, int k) {...
2023-03-04
0
297
题解 | #成绩排序#
#include<iostream> #include<algorithm> #include<cstring> using namespace std; typedef struct student { string name; int ag...
2023-03-04
0
272
题解 | #特殊排序#
#include<iostream> #include<algorithm> using namespace std; int main() { int n; while (cin >> n) { int* a = new in...
2023-03-03
0
248
题解 | #统计单词#
#include<iostream> #include<string.h> using namespace std; int main() { string s; while (cin >> s) { if (s[s.size(...
2023-03-02
0
240
题解 | #农夫、羊、菜和狼的故事#
限制了长度的深度优先搜索 #include<iostream> #include<vector> using namespace std; bool jude(int b[4], int k) { //判断当前状态下农夫是否可以带着k(k=1、2、...
2023-03-01
0
373
首页
上一页
1
2
下一页
末页