博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces A. Points in Segments
阅读量:5042 次
发布时间:2019-06-12

本文共 2044 字,大约阅读时间需要 6 分钟。

 

You are given a set of nn segments on the axis OxOx, each segment has integer endpoints between 11 and mm inclusive. Segments may intersect, overlap or even coincide with each other. Each segment is characterized by two integers lili and riri (1lirim1≤li≤ri≤m) — coordinates of the left and of the right endpoints.

Consider all integer points between 11 and mm inclusive. Your task is to print all such points that don't belong to any segment. The point xxbelongs to the segment [l;r][l;r] if and only if lxrl≤x≤r.

Input

The first line of the input contains two integers nn and mm (1n,m1001≤n,m≤100) — the number of segments and the upper bound for coordinates.

The next nn lines contain two integers each lili and riri (1lirim1≤li≤ri≤m) — the endpoints of the ii-th segment. Segments may intersect, overlap or even coincide with each other. Note, it is possible that li=rili=ri, i.e. a segment can degenerate to a point.

Output

In the first line print one integer kk — the number of points that don't belong to any segment.

In the second line print exactly kk integers in any order — the points that don't belong to any segment. All points you print should be distinct.

If there are no such points at all, print a single integer 00 in the first line and either leave the second line empty or do not print it at all.

Examples
input
Copy
3 5 2 2 1 2 5 5
output
Copy
2 3 4
input
Copy
1 7 1 7
output
Copy
0

代码:

#include 
using namespace std;int N, M;int vis[110], num[110];int main() { memset(vis, 0, sizeof(vis)); scanf("%d%d", &N, &M); for(int i = 1; i <= N; i ++) { int l, r; scanf("%d%d", &l, &r); for(int j = l; j <= r; j ++) vis[j] = 1; } int ans = 0; for(int i = 1; i <= M; i ++) { if(!vis[i]) { ans ++; num[ans] = i; } } printf("%d\n", ans); for(int i = 1; i <= ans; i ++) { printf("%d", num[i]); printf("%s", i != ans ? " " : "\n"); } return 0;}

  

转载于:https://www.cnblogs.com/zlrrrr/p/9845795.html

你可能感兴趣的文章
html5实现移动端下拉刷新(原理和代码)
查看>>
iPhone开发中从一个视图跳到另一个视图有三种方法:
查看>>
pytho logging
查看>>
一个Java程序员应该掌握的10项技能
查看>>
c#英文大小写快捷键
查看>>
tpframe免费开源框架又一重大更新
查看>>
一.go语言 struct json相互转换
查看>>
什么是架构设计
查看>>
程序员学习能力提升三要素
查看>>
PHP 微信错误状态返回码说明
查看>>
【4.1】Python中的序列分类
查看>>
ubuntu 移动文件
查看>>
Easy Mock
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
SqlServer 遍历修改字段长度
查看>>
Eclipse快捷键:同时显示两个一模一样的代码窗口
查看>>
《架构之美》阅读笔记05
查看>>
《大道至简》读后感——论沟通的重要性
查看>>