CF1578B.Building Forest Trails

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn villages lying equidistant on a circle in the middle of a thick, impassable forest. From ancient times, it was impossible to move from one village to another, but technical progress has changed a lot. Now, there is a technology to build passable trails in the forest.

The building process consists of mm events. Each event is either building a trail or querying if two villages are connected. Trails are built as straight lines connecting two villages. After a trail is built, anybody can walk along the trail from one village to another.

Moreover, if two trails cross, anybody can turn at the intersection, and if other trails leave a village you have just reached, they can also be used to walk along. So, for example, if villages are numbered 11 to 66 in the order around the circle, and there are trails 11 to 33 , 22 to 44 , and 44 to 66 , then all villages, except the 55 -th, are reachable from the 11 -st village.

Given a list of mm events, for each query, find if two given villages are reachable from each other at that moment.

输入格式

The first line contains two integers nn ( 2n21052 \le n \le 2\cdot 10^5 ) and mm ( 1m31051 \le m \le 3\cdot 10^5 ) — the number of villages and the number of events respectively.

Next mm lines contain events. Each event description consists of three integers ee ( ee is 11 or 22 ), vv ( 1vn1 \le v \le n ), and uu ( 1un1 \le u \le n , uvu \ne v ). If e=1e = 1 , then the event is building a trail between villages vv and uu . If e=2e = 2 , then the event is a query if the villages vv and uu are connected. It is guaranteed that each trail is built at most once.

Villages are numbered 11 to nn in clockwise order around the circle.

输出格式

For each query print one character '0' if villages are not reachable, and '1' if villages are reachable from each other. Print answers for all queries as a single string in one line.

输入输出样例

  • 输入#1

    6 9
    1 1 3
    1 4 6
    2 3 4
    1 2 4
    2 1 2
    2 1 3
    2 1 4
    2 6 1
    2 5 3

    输出#1

    011110
  • 输入#2

    2 5
    2 1 2
    2 2 1
    1 1 2
    2 1 2
    2 2 1

    输出#2

    0011
首页