CF975E.Hag's Khashba

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Hag is a very talented person. He has always had an artist inside him but his father forced him to study mechanical engineering.

Yesterday he spent all of his time cutting a giant piece of wood trying to make it look like a goose. Anyway, his dad found out that he was doing arts rather than studying mechanics and other boring subjects. He confronted Hag with the fact that he is a spoiled son that does not care about his future, and if he continues to do arts he will cut his 25 Lira monthly allowance.

Hag is trying to prove to his dad that the wooden piece is a project for mechanics subject. He also told his dad that the wooden piece is a strictly convex polygon with nn vertices.

Hag brought two pins and pinned the polygon with them in the 11 -st and 22 -nd vertices to the wall. His dad has qq queries to Hag of two types.

  • 11 ff tt : pull a pin from the vertex ff , wait for the wooden polygon to rotate under the gravity force (if it will rotate) and stabilize. And then put the pin in vertex tt .
  • 22 vv : answer what are the coordinates of the vertex vv .

Please help Hag to answer his father's queries.

You can assume that the wood that forms the polygon has uniform density and the polygon has a positive thickness, same in all points. After every query of the 1-st type Hag's dad tries to move the polygon a bit and watches it stabilize again.

输入格式

The first line contains two integers nn and qq ( 3n100003\leq n \leq 10\,000 , 1q2000001 \leq q \leq 200000 ) — the number of vertices in the polygon and the number of queries.

The next nn lines describe the wooden polygon, the ii -th line contains two integers xix_i and yiy_i ( xi,yi108|x_i|, |y_i|\leq 10^8 ) — the coordinates of the ii -th vertex of the polygon. It is guaranteed that polygon is strictly convex and the vertices are given in the counter-clockwise order and all vertices are distinct.

The next qq lines describe the queries, one per line. Each query starts with its type 11 or 22 . Each query of the first type continues with two integers ff and tt ( 1f,tn1 \le f, t \le n ) — the vertex the pin is taken from, and the vertex the pin is put to and the polygon finishes rotating. It is guaranteed that the vertex ff contains a pin. Each query of the second type continues with a single integer vv ( 1vn1 \le v \le n ) — the vertex the coordinates of which Hag should tell his father.

It is guaranteed that there is at least one query of the second type.

输出格式

The output should contain the answer to each query of second type — two numbers in a separate line. Your answer is considered correct, if its absolute or relative error does not exceed 10410^{-4} .

Formally, let your answer be aa , and the jury's answer be bb . Your answer is considered correct if abmax(1,b)104\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-4}

输入输出样例

  • 输入#1

    3 4
    0 0
    2 0
    2 2
    1 1 2
    2 1
    2 2
    2 3
    

    输出#1

    3.4142135624 -1.4142135624
    2.0000000000 0.0000000000
    0.5857864376 -1.4142135624
    
  • 输入#2

    3 2
    -1 1
    0 0
    1 1
    1 1 2
    2 1
    

    输出#2

    1.0000000000 -1.0000000000
    

说明/提示

In the first test note the initial and the final state of the wooden polygon.

Red Triangle is the initial state and the green one is the triangle after rotation around (2,0)(2,0) .

In the second sample note that the polygon rotates 180180 degrees counter-clockwise or clockwise direction (it does not matter), because Hag's father makes sure that the polygon is stable and his son does not trick him.

首页