domers
domers
全部文章
分类
归档
标签
去牛客网
登录
/
注册
domers的博客
全部文章
(共106篇)
题解 | #牛群的活动区域#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param board char字符型vector<vector<>> ...
2023-09-20
0
315
题解 | #牛的生长情况#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型vector * @return int整型vec...
2023-09-20
0
321
题解 | #寻找完成任务所需最短时间#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @param t string字符串 ...
2023-09-19
0
324
题解 | #牛群分组II#
#include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param candidates int整型vect...
2023-09-19
0
232
题解 | #旋转排列之找出最矮的牛#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param heights int整型vector * @return int整型 ...
2023-09-19
0
247
题解 | #牛牛的时钟#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf(...
2023-09-18
0
357
题解 | #牛牛的平面向量#
#include <stdio.h> typedef struct vec { int x, y; }vec_t; int main() { int n; while (scanf("%d", &n) != EOF) { // 注...
2023-09-18
0
322
题解 | #牛牛的书#
#include <stdio.h> typedef struct book { int price; char name[50]; }book_t; int main() { int n; while (scanf("%d", ...
2023-09-18
0
402
题解 | #KiKi定义电子日历类#
#include <stdio.h> typedef struct date { int day; int month; int year; }date_t; void init(date_t* d) { d->day = 0; d-&g...
2023-09-18
1
451
题解 | #牛牛的链表添加节点#
#include <stdio.h> typedef struct Node { int val; struct Node* next; }node; int main() { int n, k; while (scanf("%d %d&qu...
2023-09-18
0
355
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页