校门外的树-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int a[10001]; int l,m,c,b; int i,j,n; n=0…… 题解列表 2021年02月19日 0 点赞 0 评论 133 浏览 评分:0.0
校门外的树-题解(C语言代码) 摘要: #include int main() { int a[10000]; int L,M,x,y,sum=0; int i,j; …… 题解列表 2019年08月11日 0 点赞 0 评论 368 浏览 评分:0.0
校门外的树 摘要:解题思路:把马路的长当作数组长,在数组中全录入1,代表栽了树;在后续输入的数据中,两两为一组,在上一个数组中把一组的值变为0即可,则不需要考虑重复区域的问题,最后计算1的数量即可注意事项:参考代码:#…… 题解列表 2024年03月09日 0 点赞 0 评论 66 浏览 评分:0.0
校门外的树 (C++代码) 简单的dp 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int dp[10000];int main(){ int n,c; cin>>n>…… 题解列表 2018年09月21日 0 点赞 0 评论 463 浏览 评分:0.0
校门外的树 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int L,M,i,a,b,s[10001],count=0; scanf("%d %d",&L,&M); fo…… 题解列表 2017年12月16日 1 点赞 0 评论 973 浏览 评分:0.0
校门外的树(设一数组,长度为L,数组元素值全为1,表示树在,为0时树被移走了,统计元素值为1的元素数,就为剩下的树) 摘要:解题思路:把数组元0素序看作数轴,变化其上的元素,判断树是否在注意事项:参考代码:#include<stdio.h> int main() { int l,m; scanf("%d%d",…… 题解列表 2023年10月11日 0 点赞 0 评论 45 浏览 评分:0.0
校门外的树-题解(C语言代码) 摘要:思想: 使用一个大数组表示学校外树木的状态,存在写0,被占用写1,每次占用的模块,直接从数组中遍历,写1即可, 最后遍历大数组,读取其中的0个数即可 第一次错误64%: 原因:建立的状态数…… 题解列表 2019年07月24日 0 点赞 0 评论 390 浏览 评分:0.0
笨蛋方法(c语言) 摘要:解题思路:把数轴转化成足够长的数组并初始化为0,在每一次输入区域范围时,位于范围内的a[i]J减一,最后统计数值为0的a[i]注意事项:a[i]的长度要足够,不然会崩。参考代码:#include <s…… 题解列表 2022年02月14日 0 点赞 0 评论 223 浏览 评分:0.0
校门外的树(C++简单代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long L,M,sum=0,a[1000…… 题解列表 2023年03月16日 0 点赞 0 评论 72 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int L,M; int start,end; scanf("%d %d",&L,&M); …… 题解列表 2024年07月17日 0 点赞 0 评论 66 浏览 评分:0.0