题解 1099: 校门外的树

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

筛选

校门外的树-题解(Java代码)

摘要:解题思路:  利用ArrayList存储树的位置,删除各区域的位置,得出剩余的位置的数组的大小注意事项:  时间复杂度太高,存在局限性参考代码:import java.util.ArrayList; ……

利用区间合并的思想求解

摘要:解题思路: 将区间合并之后即可解决区间重合问题注意事项: 注意数据类型参考代码:#include<iostream>#include<algorithm>#include<vector>using n……

1099: 校门外的树,使用列表切片

摘要:解题思路:运用列表的切片操作,将区间内的点都设为0注意事项:给的区间可能会有重叠参考代码:L,m = map(int,input().strip().split())tree =[1]*(L+1)fo……

1099: 校门外的树

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>typedef long long ll;const int N=1e7;using namespace std;int ……

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

摘要:解题思路:定义数组表示树,初始化为0,若被挖去,则赋值为1,最后统计数组中1的个数。注意事项:参考代码:#include<stdio.h>int main(){    int *a;    int l……

校门外的数

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

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

摘要:解题思路:注意事项:参考代码://修建地铁的区域可能有重复,传统算法不能实现,//应用数组0_1代表有树无树两种情况,巧妙处理了//重复减去的问题#include<stdio.h>int main (……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void chushihua(int *a,int n){ for(int i=0;i<=n;i++) a[i]=1; return ;……

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

摘要:解题思路:将区域分段解决改为字符标记,输入地铁区域,将其标记,可重复标记,这样就不必考虑区域重复注意事项:将区域分段解决改为字符标记参考代码:#include<stdio.h>int main(){ ……

校门外的树

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