题解 1099: 校门外的树

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

筛选

校门外的树(c++)

摘要:解题思路:树是连续的可以用数组来存储,根据区间来遍历,更改数组状态。注意事项:用来存储树的数组需要比极限略微大一点的空间,否则会有段错误。参考代码:#include<bits/stdc++.h> #……

校门外的数

摘要:```cpp #include #include using namespace std; int main() { int n,m; cin>>n>>m; int c[1000……

1099: 校门外的树

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

校门外的树 (C++代码)用数组的方式解决

摘要:解题思路:先定义一个一维数组,将其全部赋值为1,数组模拟出马路中有多少课树(1为有树),然后每修建铁路的时候需要铲除掉的树设置为0,注意两端问题,这里的循环要用i<=结束,来表示。不多说直接上代码参考……

校门外的树

摘要:解题思路:从0到500依次标记,筛选出符合区间内的数记为-1;统计总数-值为负的数注意事项:共501参考代码:#include <stdio.h>#include <stdlib.h>#define ……

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

摘要:解题思路:利用标记数组注意事项:明确端点是否包含其中参考代码:#include <iostream>using namespace std;int main (){ int l,m; cin>>l>>……

校门外的树 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 校门外的树 {  public static void main(String[] ar……