林北在写日记1
林北在写日记1
全部文章
题解
归档
标签
去牛客网
登录
/
注册
林北在写日记1的博客
全部文章
/ 题解
(共2篇)
题解 |I题是个签到题
判断时候注意分类清楚 #include <stdio.h> int main() { int n, m; scanf("%d %d", &n, &m); int a[13]; // 数组大小根据n的最大值13设定 for (int i = 0; i < n; i...
C
2025-11-12
1
12
题解 | #andy的树被砍了#
我来一个C语言的题解 #include <stdio.h> #include <stdlib.h> int main() { int n; scanf("%d", &n); int* h = (int*)malloc(n * sizeof(int)); int* c ...
C
二分查找
2025-11-08
0
12