题解 1099: 校门外的树

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

筛选

校门外的树

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

校门外的坤

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>int l,m,tree[10000000];using namespace std;int main(){    int……

1099: 校门外的树

摘要:参考代码:L, M = map(int, input().split()) arr = [&#39;t&#39; for _ in range(L + 1)] for _ in range(M):……

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

摘要:解题思路: 将有树的点标记为1,没有树的点标记为0注意事项:  【马路的一端在数轴0的位置,另一端在L的位置;数轴上的每个整数点,**即0,1,2,……,L,都种有一棵树。】说明由L+1棵树【现在要把……

1099: 校门外的树

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