题解 | 剩下的树 标志动态数组/容器

剩下的树

https://www.nowcoder.com/practice/f5787c69f5cf41499ba4706bc93700a2

#include <iostream>
#include <vector>
using namespace std;

int main() {
	int L, M, start, end, count;
	// 用标志数组表示有树无树
	vector<int> interval;
	vector<int>::iterator it;
	while (cin >> L >> M) { 
		// 多轮一定要记得清空必要的上一轮数据
		count = 0;
		interval.clear();

		// 动态数组填充值
		while (L >= 0) {
			interval.push_back(1);  // 1 表示有树 0 表示无树
			L--;
		}
		for (int i = 0; i < M; i++) {
			cin >> start >> end;
			for (int j = start; j <= end; j++) {
				if (interval[j] != 0) {
					interval[j] = 0;
				}
			}
		}
		for (it = interval.begin(); it != interval.end();it++) {
			if (*it == 1) {
				count++;
			}
		}
		cout << count << endl;
	}
	return 0;
}

#考研##复试练习#
2025考研复试 文章被收录于专栏

复试ing,努力中。。。

全部评论

相关推荐

11-13 14:37
门头沟学院 Java
程序员牛肉:是的,我觉得你最先需要的是多接触计算机圈子。我感觉你这个写的太幼稚了,根本没换位思考面试官。 你对实习的描述还是我写了前后端,我写了Restful接口,我用了EChatrs。你这让面试官怎么问你?问你什么是前后端?问你什么是Restful?讲真的兄弟,你这个简历在面试官眼里就是啥也不懂的好学生。所以一定要尽快加入一个圈子跟大家多聊聊,看看正儿八经的简历是怎么写的。 可以看一下我首页的简历怎么写那篇文章来学一下,你这里面的坑点我那篇文章里面都有讲过。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务