校门外的树 (C++代码) 摘要:解题思路:为何要用线段树?只是为了炫耀你们的学识吗?用树状数组难道不是更好吗?思路:树状数组的经典应用二:区间更新、单点查询,维护的是数列的差分数组(t[i]=a[i]-a[i-1]),区间加就显得很…… 题解列表 2017年12月26日 2 点赞 0 评论 820 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1e5;//太大会爆ll a…… 题解列表 2024年04月22日 0 点赞 0 评论 98 浏览 评分:0.0
校门外的树(C++简单代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long L,M,sum=0,a[1000…… 题解列表 2023年03月16日 0 点赞 0 评论 66 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:注意事项:参考代码:#include "iostream"#include "cstring"using namespace std;int main(){ int l,m,sum; sum…… 题解列表 2019年03月15日 0 点赞 0 评论 317 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int Max=10000+5; …… 题解列表 2018年04月13日 2 点赞 0 评论 672 浏览 评分:0.0
校门外的树 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>void sortTwoArray(int* pArrayA,int*pArrayB,int tot…… 题解列表 2023年12月17日 0 点赞 0 评论 39 浏览 评分:0.0
校门外的树-用两个数组实现-题解(C语言代码) 摘要:/*代码运行结果是对的,但是一直提交都是错误36%,有没有大佬给看看,万分感谢*/ ```c #include #define N 10001 void sort(int *a,int m…… 题解列表 2019年11月21日 0 点赞 0 评论 449 浏览 评分:0.0
感谢群主,我终于知道建地铁时候怎么移树了 摘要:解题思路:注意事项:看了题解完全就是模拟,再没有去判断谁大谁小,直接干就完事了参考代码:l,m=map(int,input().split())##print(l,m)T=[1 for i in ra…… 题解列表 2022年06月29日 0 点赞 0 评论 169 浏览 评分:0.0
编写题解 1099: 校门外的树(C语言) 摘要:解题思路:把路设为有路长+1的元素的数组,初始化为0代表有树,把后续的坐标当做数组的序号,坐标范围内的赋值1代表没树,最后统计0的数目即可。注意事项:参考代码:#include <stdio.h> …… 题解列表 2024年11月17日 0 点赞 0 评论 351 浏览 评分:0.0