CF690B3.Recover Polygon (hard)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Zombies have found out about the Zombie Contamination level checker and managed to damage it! Now detecting the shape of their main compound will be a real challenge for Heidi. As before, a lair can be represented as a strictly convex polygon on a lattice. Each vertex of the polygon occupies a point on the lattice. However, the damaged Zombie Contamination level checker can only tell, for each cell, whether the level of Zombie Contamination for that cell is in the set 1,2,3{1,2,3} . In other words, Heidi knows all the cells of the lattice for which the Contamination level is not 00 and not 44 .

Given this information, Heidi still wants to know the exact shape of the lair to rain destruction on the zombies. Help her!

输入格式

The input contains multiple test cases.

The first line of each test case contains two space-separated integers NN and MM , where NN is the size of the lattice grid ( 5<=N<=1000005<=N<=100000 ) and MM is the number of lattice points for which the Zombie Contamination level is 1, 2, or 3 ( 8<=M<=2000008<=M<=200000 ).

The second line of each test case contains MM pairs of integers x1,y1,...,xM,yMx_{1},y_{1},...,x_{M},y_{M} – coordinates of the cells with Zombie Contamination level not equal to 0 nor 4. It is guaranteed that 1<=xi,yi<=N1<=x_{i},y_{i}<=N . All pairs xi,yix_{i},y_{i} are different.

Cells are enumerated based on the coordinates of their upper right corner. This means that the bottommost leftmost cell that touches the origin has coordinates (1,1)(1,1) , and the uppermost leftmost cell is identified as (1,N)(1,N) .

The last line of the file contains two zeroes. This line should not be treated as a test case. The sum of the MM values for all tests in one file will not exceed 200000200000 .

输出格式

For each test case, the following output is expected:

The first line of the output should contain one integer VV , the number of vertices of the polygon that is the secret lair. The next VV lines each should contain two integers, denoting the vertices of the polygon in the clockwise order, starting from the lexicographically smallest vertex.

输入输出样例

  • 输入#1

    8 19
    2 3 2 4 2 5 3 3 3 5 4 3 4 5 4 6 5 2 5 3 5 6 6 2 6 3 6 4 6 5 6 6 6 7 7 6 7 7
    5 8
    2 2 2 3 2 4 3 2 3 4 4 2 4 3 4 4
    0 0
    

    输出#1

    4
    2 3
    2 4
    6 6
    5 2
    4
    2 2
    2 3
    3 3
    3 2
    

说明/提示

It is guaranteed that the solution always exists and is unique. It is guaranteed that in the correct solution the coordinates of the polygon vertices are between 11 and N1N-1 . A vertex (x1,y1)(x_{1},y_{1}) is lexicographically smaller than vertex (x2,y2)(x_{2},y_{2}) if x1<x2x_{1}<x_{2} or .

首页