CF331D2.Escaping on Beaveractor

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Don't put up with what you're sick of! The Smart Beaver decided to escape from the campus of Beaver Science Academy (BSA). BSA is a b×bb×b square on a plane. Each point x,yx,y (0<=x,y<=b)(0<=x,y<=b) belongs to BSA. To make the path quick and funny, the Beaver constructed a Beaveractor, an effective and comfortable types of transport.

The campus obeys traffic rules: there are nn arrows, parallel to the coordinate axes. The arrows do not intersect and do not touch each other. When the Beaveractor reaches some arrow, it turns in the arrow's direction and moves on until it either reaches the next arrow or gets outside the campus. The Beaveractor covers exactly one unit of space per one unit of time. You can assume that there are no obstacles to the Beaveractor.

The BSA scientists want to transport the brand new Beaveractor to the "Academic Tractor" research institute and send the Smart Beaver to do his postgraduate studies and sharpen pencils. They have qq plans, representing the Beaveractor's initial position (xi,yi)(x_{i},y_{i}) , the initial motion vector wiw_{i} and the time tit_{i} that have passed after the escape started.

Your task is for each of the qq plans to determine the Smart Beaver's position after the given time.

输入格式

The first line contains two integers: the number of traffic rules nn and the size of the campus bb , 0<=n0<=n , 1<=b1<=b . Next nn lines contain the rules. Each line of the rules contains four space-separated integers x0x_{0} , y0y_{0} , x1x_{1} , y1y_{1} — the beginning and the end of the arrow. It is guaranteed that all arrows are parallel to the coordinate axes and have no common points. All arrows are located inside the campus, that is, 0<=x0,y0,x1,y1<=b0<=x_{0},y_{0},x_{1},y_{1}<=b holds.

Next line contains integer qq — the number of plans the scientists have, 1<=q<=1051<=q<=10^{5} . The ii -th plan is represented by two integers, xix_{i} , yiy_{i} are the Beaveractor's coordinates at the initial time, 0<=xi,yi<=b0<=x_{i},y_{i}<=b , character wiw_{i} , that takes value U, D, L, R and sets the initial direction up, down, to the left or to the right correspondingly (the Y axis is directed upwards), and tit_{i} — the time passed after the escape started, 0<=ti<=10150<=t_{i}<=10^{15} .

  • to get 30 points you need to solve the problem with constraints n,b<=30n,b<=30 (subproblem D1);
  • to get 60 points you need to solve the problem with constraints n,b<=1000n,b<=1000 (subproblems D1+D2);
  • to get 100 points you need to solve the problem with constraints n,b<=105n,b<=10^{5} (subproblems D1+D2+D3).

输出格式

Print qq lines. Each line should contain two integers — the Beaveractor's coordinates at the final moment of time for each plan. If the Smart Beaver manages to leave the campus in time tit_{i} , print the coordinates of the last point in the campus he visited.

输入输出样例

  • 输入#1

    3 3
    0 0 0 1
    0 2 2 2
    3 3 2 3
    12
    0 0 L 0
    0 0 L 1
    0 0 L 2
    0 0 L 3
    0 0 L 4
    0 0 L 5
    0 0 L 6
    2 0 U 2
    2 0 U 3
    3 0 U 5
    1 3 D 2
    1 3 R 2
    

    输出#1

    0 0
    0 1
    0 2
    1 2
    2 2
    3 2
    3 2
    2 2
    3 2
    1 3
    2 2
    1 3
    
首页