牛客995515196号
牛客995515196号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客995515196号的博客
全部文章
(共8篇)
题解 | #第一题#
#include <stdio.h> #并查集 typedef struct { int x; int y; } Line; int getEnd(int x,int root[]) { int n=x; while(root[n]!=0)n=root[n...
2023-02-23
0
280
题解 | #False coin#
#include <iostream> using namespace std; int all_in(int x,int left[1000][1000],int right[1000][1000],int n) { int flag_l=1; for(int i=1...
2023-02-14
0
260
题解 | #棋盘游戏#
#include <stdio.h> int fun(int startx,int starty,int endx,int endy,int board[6][6],int status) { if(startx==endx&&starty==endy)return 0; ...
2023-02-11
0
326
题解 | #合唱队形#
#include <stdio.h> void fun_up(int *stu,int i,int n,int *up) { int max=1; for(int j=0;j<i;j++) { if(up[...
2023-02-06
0
300
题解 | #子串计算#
#include <stdio.h> #include <string.h> int compare(char* pattern,char* string,int n) { int flag=0; int mark=0; for (int i=0;i&...
2023-02-05
0
246
题解 | #Freckles#
#include <stdio.h> #include <math.h> #include <stdlib.h> /*重点是用getEnds判断是否形成回路,getEnds得到的结果是每条子树的最后一个节点*/ typedef struct Graph { ...
2023-02-02
0
321
题解 | #Powerful Calculator#
#C语言 #include <math.h> #include <stdio.h> #include <string.h> void reverse(char a[],int n) { int m=n; char *c=(char*)malloc(...
2023-01-30
0
294
题解 | #火星A+B#
#萌新 纯C #include <stdio.h> #include <stdlib.h> int* find_tsusu() { int *a=(int*)malloc(sizeof(int)*25); int i=0; int num=2; ...
2023-01-29
0
308