题解 1099: 校门外的树

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

筛选

校门外的树-题解(C语言代码)

摘要:解题思路:用数组来贮存每一棵树的位置,并对其标记为1。因为建地铁而被除去树标记为0,最后对数组里的每一个数进行相加。注意事项:参考代码:#includeint main(){ int l,m,x,a[……

校门外的树-题解(C语言代码)

摘要://其实吧,此题可以用一个一位数组模拟树,然后此题就变得简单了,但要看请题目 //给定的条件,千万要记住不要忽视任何条件。 //记住是从0开始计数 //还有L的范围是1————10000 //……

1099 数组实现 c++

摘要:解题思路:              用数组模拟数轴              可以将一开始的初值全部设置为零              将要修路的路段用for循环将1填到要修的路段上      &nbs

校门外的树 题解

摘要:解题思路:标记移走的树,再用总数减去移走的树的数量。注意事项:从0开始的。参考代码:#include<bits/stdc++.h>using namespace std;int n,k,x,y,a[1……

校门外的树

摘要:解题思路:注意事项:参考代码:#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……

校门外的树 (C++代码)

摘要:解题思路:注意事项:参考代码:#include "iostream"#include "cstring"using namespace std;int main(){ int l,m,sum; sum……

校门外的树 (C语言代码)

摘要:解题思路:注意事项:此题最为重要的是不能直接两个端点相减,因为有重复的地方,所以用一个数组记录树的状态,在0,拔去1,即可参考代码:    #include<stdio.h>        int m……

校门外的树 (C语言代码)

摘要:解题思路:我们只需要用数组模拟一下即可。参考代码:#include <stdio.h> #include <string.h> int main() {     int l, m;     ……