A - AtCoder Jumper

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 500500

問題文

本サイトのこの部分にお気づきでしょうか。

これらの番号は、どのページからどのページへも少ないクリック数で到達できるように、なおかつ各ページのリンク数が多くなりすぎないように配慮して選ばれています。 この問題では、似たようなことを 11 ページあたり リンク 22 で実現していただきましょう。

すぬけ君は、11 から NN までの番号が振られた NN ページからなるサイトを作りました。 あなたには、各 ii (1iN1 \leq i \leq N) について 22 つの整数 ai,bia_i, b_i (1ai,biN1 \leq a_i, b_i \leq N) を選び、ページ ii にページ aia_i へのリンクとページ bib_i へのリンクを貼ることで、以下の制約を満たしていただきます。

  • どのページから他のどのページへも、リンクを 1010 回以下クリックすることで到達可能でなければならない。

この問題の制約の下で、これが常に可能であることは証明可能です。

制約

  • 1N10001 \leq N \leq 1000

入力

入力は標準入力から以下の形式で与えられる。

NN

出力

答えを以下の形式で出力せよ。

a1 b1a_1 \ b_1
::
aN bNa_N \ b_N

複数通りの答えが考えられる場合は、そのどれを出力してもよい。


入力例 1

1

出力例 1

1 1

すぬけ君は 11 ページだけの見事なサイトを作りました。 自分自身へのリンクも 22 つあります。


入力例 2

3

出力例 2

2 3
1 3
1 2

ここでは、どのページからどのページへも直接のリンクで到達できます。

Score : 500500 points

Problem Statement

Have you noticed this part of AtCoder website?

Here the numbers are carefully chosen so that we can jump from any page to any page in small number of steps, while each page doesn't contain too many links. In this task you are asked to do a similar thing with only two links on each page!

Snuke made a website with NN pages numbered 11 through NN. For each ii (1iN1 \leq i \leq N), choose two integers aia_i and bib_i (1ai,biN1 \leq a_i, b_i \leq N), and add two links on Page ii: a link to Page aia_i and a link to Page bib_i. The website must satisfy the following constraint:

  • You must be able to jump from any page to any other page by clicking at most 1010 links.

Under the constraints of the problem, we can prove that this is always possible.

Constraints

  • 1N10001 \leq N \leq 1000

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer in the following format:

a1 b1a_1 \ b_1
::
aN bNa_N \ b_N

In case there are multiple possible answers, print any.


Sample Input 1

1

Sample Output 1

1 1

Snuke made an excellent website with only one page. It even contains two links to itself!


Sample Input 2

3

Sample Output 2

2 3
1 3
1 2

Here we can jump from any page to any other page by a direct link.

B - Three Coins

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 800800

問題文

NN 個のマスが一列に並んでおり、左から右に 11 から NN までの番号が振られています。

はじめ、すべてのマスは空です。 あなたは、以下の 22 種類の操作を任意の順に何度でも行うことができます。

  • 連続する 33 マスであってコインが置かれていないものを選び、それぞれにコインを置く。
  • 連続する 33 マスであっていずれにもコインが置かれているものを選び、それぞれからコインを取り除く。

操作を済ませた後、左から ii マス目にコインが置かれているなら、aia_i 点が得られます。 コインがあるマス全てから得られる点数の合計が、あなたの得点です。

得られる最高得点を求めてください。

制約

  • 3N5003 \leq N \leq 500
  • 100ai100-100 \leq a_i \leq 100
  • 入力中の全ての値は整数である。

入力

入力は標準入力から以下の形式で与えられる。

NN
a1a_1
a2a_2
::
aNa_N

出力

答えを出力せよ。


入力例 1

4
1
2
3
4

出力例 1

9

コインが置かれたマスを o で、置かれていないマスを . で表します。 最適な手順の 11 つは次の通りです。

.... \rightarrow .ooo

このようにすれば、2+3+4=92 + 3 + 4 = 9 点を得られます。


入力例 2

6
3
-2
-1
0
-1
4

出力例 2

6

最適な手順の 11 つは次の通りです。

...... \rightarrow ooo... \rightarrow oooooo \rightarrow o...oo

このようにすれば、3+(1)+4=63 + (-1) + 4 = 6 点を得られます。


入力例 3

10
-84
-60
-41
-100
8
-8
-52
-62
-61
-76

出力例 3

0

Score : 800800 points

Problem Statement

NN cells are arranged in a row. The cells are numbered 11 through NN from left to right.

Initially, all cells are empty. You can perform the following two types of operation arbitrary number of times in arbitrary order:

  • Choose three consecutive empty cells, and put a coin on each of the three cells.
  • Choose three consecutive cells with coins, and remove all three coins on the chosen cells.

After you finish performing operations, if the ii-th cell contains a coin, you get aia_i points. Your score is the sum of all points you get from the cells with coins.

Compute the maximum possible score you can earn.

Constraints

  • 3N5003 \leq N \leq 500
  • 100ai100-100 \leq a_i \leq 100
  • All values in the input are integers.

Input

Input is given from Standard Input in the following format:

NN
a1a_1
a2a_2
::
aNa_N

Output

Print the answer.


Sample Input 1

4
1
2
3
4

Sample Output 1

9

We represent a cell with a coin as o and a cell without a coin as . (a dot). One optimal way is as follows:

.... \rightarrow .ooo

We get 2+3+4=92 + 3 + 4 = 9 points this way.


Sample Input 2

6
3
-2
-1
0
-1
4

Sample Output 2

6

One optimal way is as follows:

...... \rightarrow ooo... \rightarrow oooooo \rightarrow o...oo

We get 3+(1)+4=63 + (-1) + 4 = 6 points this way.


Sample Input 3

10
-84
-60
-41
-100
8
-8
-52
-62
-61
-76

Sample Output 3

0
C - Block Game

Time Limit: 4 sec / Memory Limit: 1024 MB

配点 : 10001000

問題文

左右に無限に続くマスの列があります。 これを用いて、あなたとすぬけ君は以下のゲームをプレイします。

  • 審判が、BS からなる「ターン文字列」tt を作り、二人に見せる。
  • まず、すぬけ君がマスのうち 11 つの上に立つ。
  • そして、各 i=1,...,ti = 1, ..., |t| について、この順番に以下が行われる。
    • ttii 文字目が B のとき、あなたのターンである。あなたは、他のブロックやすぬけ君を含まないマスを 11 つ選び、ブロックを置く。設置後、すぬけ君の両隣のマスにともにブロックが置かれている場合、あなたの勝利でゲームが終了する。
    • ttii 文字目が S のとき、すぬけ君のターンである。すぬけ君は、隣の空きマスに移動するか、何もしない。
  • この時点でゲームが終了していない場合、すぬけ君の勝利でゲームが終了する。

B, S, ? からなる文字列 ss が与えられます。 ss に含まれる ? の個数が QQ であるとき、? をそれぞれ B または S で置き換えてターン文字列とする方法は 2Q2^Q 通り存在します。 これらの 2Q2^Q 個のターン文字列のうち、両プレイヤーが最適に行動したときにあなたが勝利するようなものは何個あるでしょうか。 この答えを 998,244,353998,244,353 で割った余りを求めてください。

制約

  • 1s1061 \leq |s| \leq 10^6
  • ssB, S, ? からなる。

入力

入力は標準入力から以下の形式で与えられる。

ss

出力

答えを出力せよ。


入力例 1

BSSBS

出力例 1

0

1,41, 4 ターン目があなたのターンで、2,3,52, 3, 5 ターン目がすぬけ君のターンです。 この場合、両者が最適に行動するとすぬけ君が勝つことがわかります。


入力例 2

?S?B????S????????B??????B??S??

出力例 2

16777197

Score : 10001000 points

Problem Statement

There is a sequence of cells that extends infinitely to both directions. You and Snuke play the following game:

  • The judge chooses a string tt consisting of B and S, called turn string, and show it to both players.
  • First, Snuke stands on one of the cells.
  • Then, for each i=1,...,ti = 1, ..., |t| in this order, the following happens:
    • If the ii-th letter of tt is B, it is your turn. You choose a cell that contains neither other blocks nor Snuke, and put a block on the cell. After that, if both of the two cells adjacent to Snuke's cell are blocked, you win and the game ends.
    • If the ii-th letter of tt is S, it is Snuke's turn. He may move to an adjacent unblocked cell, or doesn't do anything.
  • If the game still hasn't ended, Snuke wins and the game ends.

You are given a string ss consisting of B, S, and ?. If ss contains QQ ?s, there are 2Q2^Q ways to replace each ? with B or S and get a turn string. Among those 2Q2^Q strings, how many will end up with your winning, in case both players play optimally? Find the answer modulo 998,244,353998,244,353.

Constraints

  • 1s1061 \leq |s| \leq 10^6
  • ss consists of B, S, and ?.

Input

Input is given from Standard Input in the following format:

ss

Output

Print the answer.


Sample Input 1

BSSBS

Sample Output 1

0

You take the 11st and the 44th turn, and Snuke takes the 22nd, the 33rd, and the 55th turn. In this case, if both players play optimally, it turns out that Snuke wins.


Sample Input 2

?S?B????S????????B??????B??S??

Sample Output 2

16777197
D - Shopping

Time Limit: 4 sec / Memory Limit: 1024 MB

配点 : 13001300

問題文

11 から NN までの番号が振られた NN 人の人と、11 から KK までの番号が振られた KK 個の商品があります。 これから、ターン制のゲームが行われます。 ターンは、番号 11 の人、番号 22 の人、番号 33 の人、\ldots、番号 NN の人、番号 11 の人 、\ldots、番号 NN の人、番号 11 の人、\ldots、の順に回り、全ての商品が誰かに獲得されるまで続きます。

各ターンには、以下が行われます。

  • 自分のターンが来た人がすでに商品を獲得済みの場合、何も行われない。
  • そうでない場合、その人は、まだ自分が選んでいない商品から 11 つを等確率でランダムに選び、審判であるすぬけ君に秘密裏に伝える。 その商品がすでに他の誰かに獲得されていたなら、何も起こらない。そうでないなら、その商品はその人が獲得する。

ii について、番号 ii の人がいずれかの商品を獲得する確率を mod998,244,353\bmod 998,244,353 で計算してください (注記参照)。

注記

  • 商品をランダムに選ぶ行為は全て独立に行われます。
  • ゲームが有限のターン数で終了することは証明可能です。
  • 参加者が商品を選ぶ場面で、まだその人が選んでいない商品が必ず 11 つ以上存在することも証明可能です。
  • 求めるべき確率が有理数であることも証明可能です。確率を出力する際は、まずその確率を分数 yx\frac{y}{x} として表してください。ここで、x,yx, y は整数であり、xxP=998,244,353P = 998,244,353 で割り切れてはなりません (この問題の制約の下で、そのような表現は必ず可能です)。そして、xzy(modP)xz \equiv y \pmod{P} なる 00 以上 P1P - 1 以下の唯一の整数 zz を出力してください。

制約

  • 1KN401 \leq K \leq N \leq 40
  • 入力中の全ての値は整数である。

入力

入力は標準入力から以下の形式で与えられる。

NN KK

出力

NN 行出力せよ。 ii 行目には、番号 ii の人がいずれかの商品を獲得する確率を mod998,244,353\bmod 998,244,353 で出力すること。


入力例 1

3 2

出力例 1

1
249561089
748683265
  • まず、番号 11 の人が商品を 11 個選んで獲得します。ここで商品 pp が選ばれたとします。
    • そして、1/21/2 の確率で、番号 22 の人がもう一方の商品を選んで獲得し、ゲームが終了します。
    • 1/21/2 の確率で、番号 22 の人も商品 pp を選んでしまって獲得できず、番号 33 の人のターンとなります。
      • 1/41/4 の確率で、番号 33 の人がもう一方の商品を選んで獲得し、ゲームが終了します。
      • 1/41/4 の確率で、番号 33 の人も商品 pp を選んでしまいます。その次は番号 11 の人のターンですが、商品を獲得済みのため何もしません。その次は番号 22 の人のターンであり、商品 pp は前回選んだため今回は必ずもう一方の商品を選んで獲得し、ゲームが終了します。

以上より、番号 1,2,31, 2, 3 の人がいずれかの商品を獲得する確率はそれぞれ 1,34,141, \frac{3}{4}, \frac{1}{4} です。


入力例 2

4 3

出力例 2

1
314262112
767169272
915057324

商品獲得確率はそれぞれ 1,4754,77108,5121, \frac{47}{54}, \frac{77}{108}, \frac{5}{12} です。


入力例 3

40 10

出力例 3

1
868517173
27621563
837064957
222682471
512462123
662169358
927654899
421237429
47896491
462367772
888812171
300869511
63754652
144548024
358216674
895724239
274552277
722622637
946769993
579325471
777654313
142897955
607284898
8038340
863909530
63295741
862961672
335905745
944425523
358698956
299986928
847582651
197657467
180361665
412489246
762713624
410322243
646538576
79047758

Score : 13001300 points

Problem Statement

There are NN people numbered 11 through NN, and KK items numbered 11 through KK. They play a turn-based game. Person 11 takes the first turn, Person 22 takes the next turn, then Person 33, \ldots, Person NN, then Person 11 again, \ldots, Person NN, Person 11 again, \ldots, and so on, until all items are taken.

In each turn, the following happens:

  • If the person already wins an item, nothing happens.
  • Otherwise, he chooses one of the items he hasn't chosen yet uniformly at random, and secretly tells it to Snuke, the judge of the game. If the item is already taken by someone else, nothing happens; otherwise he wins the item.

For each ii, compute the probability that Person ii wins an item, modulo 998,244,353998,244,353 (as described in the Notes section).

Notes

  • All random choices are made independently.
  • We can prove that the game always ends in finite number of steps.
  • We can also prove that, whenever a player is asked to choose an item, he has at least one item he hasn't chosen yet.
  • We can also prove that the probabilities are rational numbers. When you print a probability, first write it as a fraction yx\frac{y}{x}, where x,yx, y are integers and xx is not divisible by P=998,244,353P = 998,244,353 (under the constraints of the problem, such representation is always possible). Then, you need to print the only integer zz between 00 and P1P - 1, inclusive, that satisfies xzy(modP)xz \equiv y \pmod{P}.

Constraints

  • 1KN401 \leq K \leq N \leq 40
  • All values in the input are integers.

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print NN lines. On the ii-th line, print the probability that the ii-th person wins an item, modulo 998,244,353998,244,353.


Sample Input 1

3 2

Sample Output 1

1
249561089
748683265
  • First, Person 11 chooses an item (call it Item pp), and wins it.
    • Then, with 1/21/2 probability, Person 22 chooses the other item in the next turn and wins it, and the game ends.
    • With 1/21/2 probability, Person 22 chooses pp, he doesn't win it, and Person 33 takes the next turn.
      • With 1/41/4 probability, Person 33 chooses the other item, wins it, and the game ends.
      • With 1/41/4 probability, Person 33 chooses pp again. Then, next turn is Person 11's and nothing happens because he has already won an item. Then, in the next turn, Person 22 chooses the other item for sure because he has already chosen pp in his previous turn, so he wins an item this time, and the game ends.

To summarize, Person 1,2,31, 2, 3 will get an item with probability 1,34,141, \frac{3}{4}, \frac{1}{4}, respectively.


Sample Input 2

4 3

Sample Output 2

1
314262112
767169272
915057324

The probabilities are 1,4754,77108,5121, \frac{47}{54}, \frac{77}{108}, \frac{5}{12}.


Sample Input 3

40 10

Sample Output 3

1
868517173
27621563
837064957
222682471
512462123
662169358
927654899
421237429
47896491
462367772
888812171
300869511
63754652
144548024
358216674
895724239
274552277
722622637
946769993
579325471
777654313
142897955
607284898
8038340
863909530
63295741
862961672
335905745
944425523
358698956
299986928
847582651
197657467
180361665
412489246
762713624
410322243
646538576
79047758
E - Three Traffic Lights

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 18001800

問題文

33 機の信号機があり、1,2,31, 2, 3 と番号が振られています。 信号機 ii は、「gig_i 秒間青、rir_i 秒間赤、gig_i 秒間青、rir_i 秒間赤、\ldots」というパターンを永久に繰り返します。

いま、33 機の信号機が一斉に青に変わりました。 続く (g1+r1)(g2+r2)(g3+r3)(g_1 + r_1)(g_2 + r_2)(g_3 + r_3) 秒間のうち、全ての信号機が青く点灯している時間帯は合計で何秒あるでしょうか。 この答えを 998,244,353998,244,353 で割った余りを計算してください。

制約

  • 1g1,r1,g2,r2,g3,r310121 \leq g_1, r_1, g_2, r_2, g_3, r_3 \leq 10^{12}
  • 入力中の全ての値は整数である。

入力

入力は標準入力から以下の形式で与えられる。

g1g_1 r1r_1 g2g_2 r2r_2 g3g_3 r3r_3

出力

答えを出力せよ。


入力例 1

1 1 2 1 3 1

出力例 1

8

続く 2424 秒間のうち、

  • 信号機 11 が青く点灯している時間帯は [0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23][0, 1], [2, 3], [4, 5], [6, 7], [8, 9], [10, 11], [12, 13], [14, 15], [16, 17], [18, 19], [20, 21], [22, 23] です。
  • 信号機 22 が青く点灯している時間帯は [0,2],[3,5],[6,8],[9,11],[12,14],[15,17],[18,20],[21,23][0, 2], [3, 5], [6, 8], [9, 11], [12, 14], [15, 17], [18, 20], [21, 23] です。
  • 信号機 33 が青く点灯している時間帯は [0,3],[4,7],[8,11],[12,15],[16,19],[20,23][0, 3], [4, 7], [8, 11], [12, 15], [16, 19], [20, 23] です。

よって、全ての信号機が青く点灯している時間帯は [0,1],[4,5],[6,7],[10,11],[12,13],[16,17],[18,19],[22,23][0, 1], [4, 5], [6, 7], [10, 11], [12, 13], [16, 17], [18, 19], [22, 23] であり、合計で 88 秒あります。


入力例 2

7 3 5 7 11 4

出力例 2

420

入力例 3

999999999991 999999999992 999999999993 999999999994 999999999995 999999999996

出力例 3

120938286

Score : 18001800 points

Problem Statement

There are three traffic lights numbered 1,2,31, 2, 3. Traffic Light ii eternally repeats the following pattern: green for gig_i seconds, red for rir_i seconds, green for gig_i seconds, red for rir_i seconds, and so on.

All three lights have turned green just now. During the next (g1+r1)(g2+r2)(g3+r3)(g_1 + r_1)(g_2 + r_2)(g_3 + r_3) seconds, what is the total duration of the time when all lights are green? Compute the answer modulo 998,244,353998,244,353.

Constraints

  • 1g1,r1,g2,r2,g3,r310121 \leq g_1, r_1, g_2, r_2, g_3, r_3 \leq 10^{12}
  • All values in the input are integers.

Input

Input is given from Standard Input in the following format:

g1g_1 r1r_1 g2g_2 r2r_2 g3g_3 r3r_3

Output

Print the answer.


Sample Input 1

1 1 2 1 3 1

Sample Output 1

8

During the next 2424 seconds,

  • Light 11 is green during time intervals [0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23][0, 1], [2, 3], [4, 5], [6, 7], [8, 9], [10, 11], [12, 13], [14, 15], [16, 17], [18, 19], [20, 21], [22, 23].
  • Light 22 is green during time intervals [0,2],[3,5],[6,8],[9,11],[12,14],[15,17],[18,20],[21,23][0, 2], [3, 5], [6, 8], [9, 11], [12, 14], [15, 17], [18, 20], [21, 23].
  • Light 33 is green during time intervals [0,3],[4,7],[8,11],[12,15],[16,19],[20,23][0, 3], [4, 7], [8, 11], [12, 15], [16, 19], [20, 23].

Thus, all lights are green during time intervals [0,1],[4,5],[6,7],[10,11],[12,13],[16,17],[18,19],[22,23][0, 1], [4, 5], [6, 7], [10, 11], [12, 13], [16, 17], [18, 19], [22, 23].

The total duration is 88 seconds.


Sample Input 2

7 3 5 7 11 4

Sample Output 2

420

Sample Input 3

999999999991 999999999992 999999999993 999999999994 999999999995 999999999996

Sample Output 3

120938286
F - NAND Tree

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 20002000

問題文

各頂点に 00 または 11 が書かれた木があります。 この木は NN 個の頂点を持ち、それらには 11 から NN までの番号が振られています。 各 ii について、頂点 aia_i と頂点 bib_i を結ぶ辺が存在します。 頂点 ii に書かれた数は cic_i です。

すぬけ君は、この木に以下の操作を繰り返します。

  • 辺を 11 本選んで縮約し、消された 22 個の頂点に書かれていた数の NAND を新たな頂点に書き込む。

N1N - 1 回の操作後、木は 11 個の頂点となります。 このような操作の行い方は (N1)!(N-1)! 通りありますが、そのうち最後の頂点に 11 が書き込まれるものは何通りあるでしょうか。 この答えを 22 で割った余りを計算してください。

注記

  • 演算 NAND の定義は次の通りです: NAND(0,0)=NAND(0,1)=NAND(1,0)=1,NAND(1,1)=0NAND(0, 0) = NAND(0, 1) = NAND(1, 0) = 1, NAND(1, 1) = 0.
  • 頂点 ss と頂点 tt を結ぶ辺を縮約する際は、その辺を取り除くと同時に 22 頂点を併合します。 縮約後の木において、併合により生まれた頂点と頂点 uu を結ぶ辺が存在するのは、縮約前の木において ssuu を結ぶ辺または ttuu を結ぶ辺が存在するときであり、またそのときに限られます。

制約

  • 2N3002 \leq N \leq 300
  • 1ai<biN1 \leq a_i < b_i \leq N
  • 入力が表すグラフは木である。
  • 0ci10 \leq c_i \leq 1
  • 入力中の全ての値は整数である。

入力

入力は標準入力から以下の形式で与えられる。

NN
a1a_1 b1b_1
::
aN1a_{N-1} bN1b_{N-1}
c1c_1 c2c_2 \cdots cNc_N

出力

答えを出力せよ。


入力例 1

4
1 2
2 3
2 4
0 1 1 0

出力例 1

0

66 通りの操作順のうち 44 通りで最後の頂点に 11 が書き込まれることがわかります。よって、答えは 4 mod 2=04 \ mod \ 2 = 0 です。


入力例 2

4
1 2
2 3
3 4
1 1 0 1

出力例 2

1

入力例 3

20
3 15
1 12
10 16
3 19
5 20
1 9
6 13
14 19
2 4
8 11
12 16
6 20
2 17
16 18
17 19
7 10
16 20
2 20
8 20
1 0 0 1 1 0 1 1 1 0 0 1 0 1 0 1 1 1 0 0

出力例 3

0

Score : 20002000 points

Problem Statement

There is a tree whose vertices are labelled with either 00 or 11. The tree has NN vertices numbered 11 through NN. For each ii, there is an edge connecting Vertex aia_i and Vertex bib_i. The label of Vertex ii is cic_i.

Snuke wants to repeat performing the following operation on the tree:

  • Choose an edge, contract it, and label the new vertex with the NAND of the labels of two old vertices.

After performing N1N - 1 operations, the tree ends up with a single vertex. Among (N1)!(N-1)! ways to do so, how many will result in a vertex labelled with 11? Compute the answer modulo 22.

Notes

  • NAND operation is defined as follows: NAND(0,0)=NAND(0,1)=NAND(1,0)=1,NAND(1,1)=0NAND(0, 0) = NAND(0, 1) = NAND(1, 0) = 1, NAND(1, 1) = 0.
  • When we contract an edge between Vertex ss and Vertex tt, we remove the edge, and simultaneously merge the two vertices. There is an edge between the merged vertex and Vertex uu in the new tree iff there is an edge between ss and uu, or an edge between tt and uu, in the old tree.

Constraints

  • 2N3002 \leq N \leq 300
  • 1ai<biN1 \leq a_i < b_i \leq N
  • The input represents a valid tree.
  • 0ci10 \leq c_i \leq 1
  • All values in the input are integers.

Input

Input is given from Standard Input in the following format:

NN
a1a_1 b1b_1
::
aN1a_{N-1} bN1b_{N-1}
c1c_1 c2c_2 \cdots cNc_N

Output

Print the answer.


Sample Input 1

4
1 2
2 3
2 4
0 1 1 0

Sample Output 1

0

It turns out that in 44 of all 66 ways the final label will be 11, so the answer is 4 mod 2=04 \ mod \ 2 = 0.


Sample Input 2

4
1 2
2 3
3 4
1 1 0 1

Sample Output 2

1

Sample Input 3

20
3 15
1 12
10 16
3 19
5 20
1 9
6 13
14 19
2 4
8 11
12 16
6 20
2 17
16 18
17 19
7 10
16 20
2 20
8 20
1 0 0 1 1 0 1 1 1 0 0 1 0 1 0 1 1 1 0 0

Sample Output 3

0