校门外的树-题解(C语言代码) 摘要:这道题看了一下,感觉有点小问题,具体实现代码太多了就不写了。 题目应该没有考虑到三个区域都有重复的情况? 这种情况下,正常不好写; 题解有种方法,是把数组都初始化为1,在区域就置0,这种方法就不…… 题解列表 2019年08月29日 0 点赞 1 评论 257 浏览 评分:2.0
校门外的树 (C语言代码)比较高效(处理了重复的部分) 摘要:解题思路:我们可以使用一个大数组来保存 当前马路上树的情况,数组大小至少要为10001,因为L最大是10000(记得置0),接下来就是读入初始状态的数据了,每读入一个数据,就把数组对应坐标的元素置为1…… 题解列表 2018年11月04日 6 点赞 1 评论 503 浏览 评分:2.0
校门外的树-题解(C语言代码) 摘要:```c #include int arr[10001]={0}; //初始化数组为0,设0为未砍的树 int main(){ int L,M,a,b,count=0; sc…… 题解列表 2020年01月15日 0 点赞 0 评论 286 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1e5;//太大会爆ll a…… 题解列表 2024年04月22日 0 点赞 0 评论 103 浏览 评分:0.0
校门外的树-题解(C语言代码) 摘要: #include int main() { int a[10000]; int L,M,x,y,sum=0; int i,j; …… 题解列表 2019年08月11日 0 点赞 0 评论 368 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:利用标记数组注意事项:明确端点是否包含其中参考代码:#include <iostream>using namespace std;int main (){ int l,m; cin>>l>>…… 题解列表 2017年07月14日 4 点赞 0 评论 1154 浏览 评分:0.0
题解 1099: 校门外的树 摘要:解题思路:注意事项:参考代码:l,m=map(int,input().split())x=[]for i in range(0,m): a,b=map(int,input().split()) …… 题解列表 2024年03月26日 0 点赞 0 评论 87 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:咳咳,其实这就是道找规律题,手工计算前6天得到1 2 3 4 6 9 可以发现每一天的母牛数等于大前天加昨天的母牛数用代码表示就是 cow[i] = cow[i - 3] + cow [i …… 题解列表 2018年04月30日 0 点赞 0 评论 379 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:为何要用线段树?只是为了炫耀你们的学识吗?用树状数组难道不是更好吗?思路:树状数组的经典应用二:区间更新、单点查询,维护的是数列的差分数组(t[i]=a[i]-a[i-1]),区间加就显得很…… 题解列表 2017年12月26日 2 点赞 0 评论 828 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int L,M; cin>>L>>M; …… 题解列表 2024年11月07日 0 点赞 0 评论 135 浏览 评分:0.0