题解 1099: 校门外的树

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

筛选

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

摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main(int argc, char* argv[]){ int a[100][2],b[10000],L,M,i,j,k,……

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

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

笨蛋方法(c语言)

摘要:解题思路:把数轴转化成足够长的数组并初始化为0,在每一次输入区域范围时,位于范围内的a[i]J减一,最后统计数值为0的a[i]注意事项:a[i]的长度要足够,不然会崩。参考代码:#include <s……

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

摘要:解题思路:很简单,有树的为1,没有树的地方为0,废话不多说,看代码!!!注意事项:参考代码:#include <stdio.h>int main() {    int M, N, i, j;    i……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int L,M,i,a,b,s[10001],count=0; scanf("%d %d",&L,&M); fo……

1099: 校门外的树

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

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

摘要:参考代码:#include<stdio.h>int main(void){     int a[100][2],count=0, l, j,m;     //a[100][2]用来存储m个区域的起始位……