CodeForces 97B Superset
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
A set of points on a plane is called good, if for any two points at least one of the three conditions is true:
those two points lie on same horizontal line;
those two points lie on same vertical line;
the rectangle, with corners in these two points, contains inside or on its borders at least one point of the set, other than these two. We mean here a rectangle with sides parallel to coordinates' axes, the so-called bounding box of the two points.
You are given a set consisting of n points on a plane. Find any good superset of the given set whose size would not exceed 2·105points.
Input
The first line contains an integer n (1 ≤ n ≤ 104) — the number of points in the initial set. Next n lines describe the set's points. Each line contains two integers xi and yi ( - 109 ≤ xi, yi ≤ 109) — a corresponding point's coordinates. It is guaranteed that all the points are different.
Output
Print on the first line the number of points m (n ≤ m ≤ 2·105) in a good superset, print on next m lines the points. The absolute value of the points' coordinates should not exceed 109. Note that you should not minimize m, it is enough to find any good superset of the given set, whose size does not exceed 2·105.
All points in the superset should have integer coordinates.
Sample test(s)
input
2
1 1
2 2
output
3
1 1
2 2
1 2
세 가지 조건 중 하나를 충족시키면 돼, 최소한의 집합도 필요 없어.즉, 임의의 두 점이 같은 수평이나 수직선, 또는 긴 사각형 프레임에 있지만 이 프레임의 내부나 가장자리에 있는 다른 점도 있지만 최대 2*100000을 초과할 수 없기 때문에 강제로 채울 수 없다.
#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<set>
#define X first
#define Y second
using namespace std;
typedef pair<int,int>ii;//pair <int,int> // int , int
set<ii>s;// set, // s
ii a[10020];
int n;
void F(int l,int r)
{
if(l+1==r)
return;
int m=l+r>>1;
for(int i=l;i<r;i++)
s.insert(ii(a[m].X,a[i].Y));
F(l,m),F(m,r);
}
int main()
{
scanf("%d",&n);
for(int i=0;i<n;i++)
scanf("%d %d",&a[i].X,&a[i].Y),s.insert(a[i]);
sort(a,a+n);
F(0,n);
printf("%d
",s.size());
for(set<ii>::iterator i=s.begin();i!=s.end();i++)
printf("%d %d
",i->X,i->Y);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.