题解 1099: 校门外的树

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 1099: 校门外的树(C语言)

摘要:解题思路:把路设为有路长+1的元素的数组,初始化为0代表有树,把后续的坐标当做数组的序号,坐标范围内的赋值1代表没树,最后统计0的数目即可。注意事项:参考代码:#include <stdio.h> ……

1099: 校门外的树

摘要:解题思路:不要重复区域就行了注意事项:参考代码:#include<stdio.h>int main(){    int m,l,i;    scanf("%d",&l);    int arr[l+1……

校门外的树

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define SIZE 10001 void cal(int start, int end, int length_tree[SIZ……

对题1099:数组的使用以及数组的置零

摘要:解题思路:首先建立一个arr[10001]的空数组,在输入L之后将arr[r + 1]里面的元素置为1.至于为什么数组下标要加1,是因为给出的区间左右均是闭区间,所以数组下标的范围应该为0~r,共包括……

校门外的树

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int L,M; scanf("%d%d",&L,&M); int n=L+1,sum=0;  //n:树量  ……

1099: 校门外的树

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int L,M;    int start,end;    scanf("%d %d",&L,&M);  ……

题解 1099: 校门外的树

摘要:解题思路:e……注意事项:注意事项:注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>using namespace std;int i,j,k……