题解 1099: 校门外的树

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

筛选

优质题解

Manchester- 校门外的树

摘要:解题思路:定义一个数组;数组下标代表数轴上的每个整数点即0,1,2,……,n(长度为500的公路有501颗树);把这个数组初始化全为1(为1代表有树,0代表被移除);输入移除区域(x,y),把这个区域……

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

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

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

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int L,M; cin>>L>>M; int qishi[100],……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>                      int main()                             {      …

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

摘要:解题思路:删去所以车段的交集,每个车段需要“砍树”为:(末-起+1),原本可以植树总共为 :(l+1),结果是:(总-砍)注意事项:参考代码:#include<stdio.h>#define M 10……

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

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

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

摘要:使用数组的时候,数组要大一些才行,定义在主函数外,防止栈溢出 #include<iostream> #include<cstdio> using namespace std; int ……

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

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