A - Water Station

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

全長 100  km100\;\mathrm{km} のマラソンコースがあります。 マラソンコースにはスタートから 5  km5\;\mathrm{km} おきに給水所が設置されており、スタート地点・ゴール地点とあわせて 2121 箇所の給水所があります。

高橋くんは、このマラソンコースの N  kmN\;\mathrm{km} 地点にいます。 高橋くんに最も近い給水所は何 km\mathrm{km} 地点の給水所か求めてください。

この問題の制約のもとで、最も近い給水所が 11 つに定まることが証明できます。

制約

  • 0N1000\leq N\leq100
  • NN は整数

入力

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

NN

出力

高橋くんがいる地点に最も近い給水所が何 km\mathrm{km} 地点にあるかを 11 行で出力せよ。


入力例 1

53

出力例 1

55

高橋くんは、マラソンコースの 53  km53\;\mathrm{km} 地点にいます。 55  km55\;\mathrm{km} 地点の給水所までの距離は 2  km2\;\mathrm{km} で、これより近い給水所はありません。 よって、5555 を出力してください。


入力例 2

21

出力例 2

20

高橋くんはマラソンコースを戻ることもできます。


入力例 3

100

出力例 3

100

給水所はスタートやゴールにもあります。 また、高橋くんはすでに給水所にいることもあります。

Score : 100100 points

Problem Statement

There is an ultramarathon course totaling 100  km100\;\mathrm{km}. Water stations are set up every 5  km5\;\mathrm{km} along the course, including the start and goal, for a total of 2121.

Takahashi is at the N  kmN\;\mathrm{km} point of this course. Find the position of the nearest water station to him.

Under the constraints of this problem, it can be proven that the nearest water station is uniquely determined.

Constraints

  • 0N1000\leq N\leq100
  • NN is an integer.

Input

The input is given from Standard Input in the following format:

NN

Output

Print the distance between the start and the water station nearest to Takahashi, in kilometers, in a single line.


Sample Input 1

53

Sample Output 1

55

Takahashi is at the 53  km53\;\mathrm{km} point of the course. The water station at the 55  km55\;\mathrm{km} point is 2  km2\;\mathrm{km} away, and there is no closer water station. Therefore, you should print 5555.


Sample Input 2

21

Sample Output 2

20

Takahashi could also go back the way.


Sample Input 3

100

Sample Output 3

100

There are also water stations at the start and goal. Additionally, Takahashi may already be at a water station.

B - ABCDEFG

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 200200

問題文

直線上に 77 個の点 A,B,C,D,E,F,GA, B, C, D, E, F, G がこの順に並んでいます。(下の図も参考にしてください)
隣り合う点の距離は次の通りです。

  • AA と点 BB の距離は 33
  • BB と点 CC の距離は 11
  • CC と点 DD の距離は 44
  • DD と点 EE の距離は 11
  • EE と点 FF の距離は 55
  • FF と点 GG の距離は 99

image

2 つの英大文字 p,qp, q が与えられます。p,qp, qA,B,C,D,E,F,G のいずれかで、 pqp \neq q が成り立ちます。
pp と点 qq の間の距離を答えてください。

制約

  • p,qp, qA,B,C,D,E,F,G のいずれか
  • pqp \neq q

入力

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

pp qq

出力

pp と点 qq の間の距離を出力せよ。


入力例 1

A C

出力例 1

4

AA と点 CC の距離は 3+1=43 + 1 = 4 です。


入力例 2

G B

出力例 2

20

GG と点 BB の距離は 9+5+1+4+1=209 + 5 + 1 + 4 + 1 = 20 です。


入力例 3

C F

出力例 3

10

Score : 200200 points

Problem Statement

There are 77 points AA, BB, CC, DD, EE, FF, and GG on a straight line, in this order. (See also the figure below.)
The distances between adjacent points are as follows.

  • Between AA and BB: 33
  • Between BB and CC: 11
  • Between CC and DD: 44
  • Between DD and EE: 11
  • Between EE and FF: 55
  • Between FF and GG: 99

image

You are given two uppercase English letters pp and qq. Each of pp and qq is A, B, C, D, E, F, or G, and it holds that pqp \neq q.
Find the distance between the points pp and qq.

Constraints

  • Each of pp and qq is A,B,C,D,E,F, or G.
  • pqp \neq q

Input

The input is given from Standard Input in the following format:

pp qq

Output

Print the distance between the points pp and qq.


Sample Input 1

A C

Sample Output 1

4

The distance between the points AA and CC is 3+1=43 + 1 = 4.


Sample Input 2

G B

Sample Output 2

20

The distance between the points GG and BB is 9+5+1+4+1=209 + 5 + 1 + 4 + 1 = 20.


Sample Input 3

C F

Sample Output 3

10
C - Snuke the Cookie Picker

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300300

問題文

HH マス, 横 WW マスのグリッドがあります。上から ii 行目、左から jj 列目のマスを (i,j)(i, j) と呼びます。
はじめ、グリッド上には、ある 縦横 22 マス以上 の部分長方形の内部にあるマスにクッキーが 1 枚ずつ置かれていて、それ以外のマスにはクッキーが置かれていません。
形式的に説明すると、以下の条件を全て満たす 4 つの整数の組 (a,b,c,d)(a,b,c,d) がただ 1 つ存在します。

  • 1a<bH1 \leq a \lt b \leq H
  • 1c<dW1 \leq c \lt d \leq W
  • グリッド上のマスのうち、aib,cjda \leq i \leq b, c \leq j \leq d を満たす全てのマス (i,j)(i, j) にはクッキーが 1 枚ずつ置かれていて、それ以外のマスにはクッキーが置かれていない。

ところが、すぬけ君がグリッド上のクッキーのどれか 1 枚を取って食べてしまいました。
すぬけ君がクッキーを取ったマスは、クッキーが置かれていない状態に変わります。

すぬけ君がクッキーを食べた後のグリッドの状態が入力として与えられます。
マス (i,j)(i, j) の状態は文字 Si,jS_{i,j} として与えられて、# はクッキーが置かれているマスを, . はクッキーが置かれていないマスを意味します。
すぬけ君が食べたクッキーが元々置かれていたマスを答えてください。(答えは一意に定まります。)

制約

  • 2H,W5002 \leq H, W \leq 500
  • Si,jS_{i,j}# または .

入力

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

HH WW
S1,1S_{1,1}S1,2S_{1,2}\dotsS1,WS_{1,W}
S2,1S_{2,1}S2,2S_{2,2}\dotsS2,WS_{2,W}
\vdots
SH,1S_{H,1}SH,2S_{H,2}\dotsSH,WS_{H,W}

出力

すぬけ君が食べたクッキーが元々置かれていたマスを (i,j)(i, j) とする。i,ji, j をこの順に空白区切りで出力せよ。


入力例 1

5 6
......
..#.#.
..###.
..###.
......

出力例 1

2 4

はじめ、クッキーは (2,3)(2, 3) を左上、(4,5)(4, 5) を右下とする部分長方形の内部にあるマスに置かれていて、すぬけ君は (2,4)(2, 4) にあるクッキーを食べたことがわかります。よって (2,4)(2, 4) を出力します。


入力例 2

3 2
#.
##
##

出力例 2

1 2

はじめ、クッキーは (1,1)(1, 1) を左上、(3,2)(3, 2) を右下とする部分長方形の内部にあるマスに置かれていて、すぬけ君は (1,2)(1, 2) にあるクッキーを食べたことがわかります。


入力例 3

6 6
..####
..##.#
..####
..####
..####
......

出力例 3

2 5

Score : 300300 points

Problem Statement

There is a grid with HH rows and WW columns. Let (i,j)(i, j) denote the square at the ii-th row from the top and the jj-th column from the left.
Initially, there was one cookie on each square inside a rectangle whose height and width were at least 22 squares long, and no cookie on the other squares.
Formally, there was exactly one quadruple of integers (a,b,c,d)(a,b,c,d) that satisfied all of the following conditions.

  • 1a<bH1 \leq a \lt b \leq H
  • 1c<dW1 \leq c \lt d \leq W
  • There was one cookie on each square (i,j)(i, j) such that aib,cjda \leq i \leq b, c \leq j \leq d, and no cookie on the other squares.

However, Snuke took and ate one of the cookies on the grid.
The square that contained that cookie is now empty.

As the input, you are given the state of the grid after Snuke ate the cookie.
The state of the square (i,j)(i, j) is given as the character Si,jS_{i,j}, where # means a square with a cookie, and . means a square without one.
Find the square that contained the cookie eaten by Snuke. (The answer is uniquely determined.)

Constraints

  • 2H,W5002 \leq H, W \leq 500
  • Si,jS_{i,j} is # or ..

Input

The input is given from Standard Input in the following format:

HH WW
S1,1S_{1,1}S1,2S_{1,2}\dotsS1,WS_{1,W}
S2,1S_{2,1}S2,2S_{2,2}\dotsS2,WS_{2,W}
\vdots
SH,1S_{H,1}SH,2S_{H,2}\dotsSH,WS_{H,W}

Output

Let (i,j)(i, j) the square contained the cookie eaten by Snuke. Print ii and jj in this order, separated by a space.


Sample Input 1

5 6
......
..#.#.
..###.
..###.
......

Sample Output 1

2 4

Initially, cookies were on the squares inside the rectangle with (2,3)(2, 3) as the top-left corner and (4,5)(4, 5) as the bottom-right corner, and Snuke ate the cookie on (2,4)(2, 4). Thus, you should print (2,4)(2, 4).


Sample Input 2

3 2
#.
##
##

Sample Output 2

1 2

Initially, cookies were placed on the squares inside the rectangle with (1,1)(1, 1) as the top-left corner and (3,2)(3, 2) as the bottom-right corner, and Snuke ate the cookie at (1,2)(1, 2).


Sample Input 3

6 6
..####
..##.#
..####
..####
..####
......

Sample Output 3

2 5
D - Sleep Log

Time Limit: 3 sec / Memory Limit: 1024 MB

配点 : 450450

問題文

高橋くんは睡眠記録をつけています。 睡眠記録は奇数長の数列 A=(A1(=0),A2,,AN)A=(A _ 1(=0), A _ 2,\ldots,A _ N) で表され、奇数番目は起床時刻を、偶数番目は就寝時刻を表しています。 より厳密には、睡眠記録をつけている間に高橋くんは次のような睡眠をとりました。

  • すべての 1iN121\leq i\leq\dfrac{N-1}2 を満たす整数 ii について、睡眠記録をつけ始めてから A2iA _ {2i} 分後ちょうどに寝て、A2i+1A _ {2i+1} 分後ちょうどに起きた。
  • それ以外の時間に寝ることも起きることもなかった。

次の QQ 個の質問に答えてください。 ii 番目の質問では、0liriAN0\leq l _ i\leq r _ i\leq A _ N を満たす整数の組 (li,ri)(l _ i,r _ i) が与えられます。

  • 睡眠記録をつけ始めてから lil _ i 分後ちょうどから rir _ i 分後ちょうどまでの rilir _ i-l _ i 分のうち、高橋くんが寝ていたのは何分間ですか?

制約

  • 3N<2×1053\leq N\lt2\times10^5
  • NN は奇数
  • 0=A1<A2<<AN1090=A _ 1\lt A _ 2\lt\cdots\lt A _ N\leq10^9
  • 1Q2×1051\leq Q\leq2\times10^5
  • 0liriAN (1iQ)0\leq l _ i\leq r _ i\leq A _ N\ (1\leq i\leq Q)
  • 入力はすべて整数

入力

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

NN
A1A _ 1 A2A _ 2 \ldots ANA _ N
QQ
l1l _ 1 r1r _ 1
l2l _ 2 r2r _ 2
\vdots
lQl _ Q rQr _ Q

出力

答えを QQ 行で出力せよ。 ii 行目には ii 番目の質問の答えを整数として出力せよ。


入力例 1

7
0 240 720 1320 1440 1800 2160
3
480 1920
720 1200
0 2160

出力例 1

480
0
960

高橋くんは、以下の図のように睡眠をとりました。

それぞれの質問の答えは以下のようになります。

  • 睡眠記録をつけ始めてから 480480 分後から 19201920 分後の間、高橋くんは 480480 分後から 720720 分後、13201320 分後から 14401440 分後、18001800 分後から 19201920 分後の 33 つの睡眠をとりました。睡眠時間の合計は 240+120+120=480240+120+120=480 分です。
  • 睡眠記録をつけ始めてから 720720 分後から 12001200 分後の間、高橋くんは睡眠をとりませんでした。睡眠時間の合計は 00 分です。
  • 睡眠記録をつけ始めてから 00 分後から 21602160 分後の間、高橋くんは 240240 分後から 720720 分後、13201320 分後から 14401440 分後、18001800 分後から 21602160 分後の 33 つの睡眠をとりました。睡眠時間の合計は 480+120+360=960480+120+360=960 分です。

よって、それぞれの行に 480,0,960480,0,960 と出力してください。


入力例 2

21
0 20 62 192 284 310 323 324 352 374 409 452 486 512 523 594 677 814 838 946 1000
10
77 721
255 541
478 970
369 466
343 541
42 165
16 618
222 592
730 983
338 747

出力例 2

296
150
150
49
89
20
279
183
61
177

Score : 450450 points

Problem Statement

Takahashi keeps a sleep log. The log is represented as an odd-length sequence A=(A1(=0),A2,,AN)A=(A _ 1(=0), A _ 2,\ldots,A _ N), where odd-numbered elements represent times he got up, and even-numbered elements represent times he went to bed. More formally, he had the following sleep sessions after starting the sleep log.

  • For every integer ii such that 1iN121\leq i\leq\dfrac{N-1}2, he fell asleep exactly A2iA _ {2i} minutes after starting the sleep log and woke up exactly A2i+1A _ {2i+1} minutes after starting the sleep log.
  • He did not fall asleep or wake up at any other time.

Answer the following QQ questions. For the ii-th question, you are given a pair of integers (li,ri)(l _ i,r _ i) such that 0liriAN0\leq l _ i\leq r _ i\leq A _ N.

  • What is the total number of minutes for which Takahashi was asleep during the rilir _ i-l _ i minutes from exactly lil _ i minutes to rir _ i minutes after starting the sleep log?

Constraints

  • 3N<2×1053\leq N\lt2\times10^5
  • NN is odd.
  • 0=A1<A2<<AN1090=A _ 1\lt A _ 2\lt\cdots\lt A _ N\leq10^9
  • 1Q2×1051\leq Q\leq2\times10^5
  • 0liriAN (1iQ)0\leq l _ i\leq r _ i\leq A _ N\ (1\leq i\leq Q)
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN
A1A _ 1 A2A _ 2 \ldots ANA _ N
QQ
l1l _ 1 r1r _ 1
l2l _ 2 r2r _ 2
\vdots
lQl _ Q rQr _ Q

Output

Print the answer in QQ lines. The ii-th line should contain an integer answering to the ii-th question.


Sample Input 1

7
0 240 720 1320 1440 1800 2160
3
480 1920
720 1200
0 2160

Sample Output 1

480
0
960

Takahashi slept as shown in the following figure.

The answers to each question are as follows.

  • Between 480480 minutes and 19201920 minutes after starting the sleep log, Takahashi slept from 480480 minutes to 720720 minutes, from 13201320 minutes to 14401440 minutes, and from 18001800 minutes to 19201920 minutes in 33 sleep sessions. The total sleep time is 240+120+120=480240+120+120=480 minutes.
  • Between 720720 minutes and 12001200 minutes after starting the sleep log, Takahashi did not sleep. The total sleep time is 00 minutes.
  • Between 00 minutes and 21602160 minutes after starting the sleep log, Takahashi slept from 240240 minutes to 720720 minutes, from 13201320 minutes to 14401440 minutes, and from 18001800 minutes to 21602160 minutes in 33 sleep sessions. The total sleep time is 480+120+360=960480+120+360=960 minutes.

Therefore, the three lines of the output should contain 480480, 00, and 960960.


Sample Input 2

21
0 20 62 192 284 310 323 324 352 374 409 452 486 512 523 594 677 814 838 946 1000
10
77 721
255 541
478 970
369 466
343 541
42 165
16 618
222 592
730 983
338 747

Sample Output 2

296
150
150
49
89
20
279
183
61
177
E - Art Gallery on Graph

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 475475

問題文

頂点に 11 から NN の、辺に 11 から MM の番号がついた NN 頂点 MM 辺の単純無向グラフがあります。辺 ii は頂点 aia_i と頂点 bib_i を結んでいます。
11 から KK までの番号がついた KK 人の警備員が頂点上にいます。警備員 ii は頂点 pip_i にいて、体力は hih_i です。ここで全ての pip_i は互いに異なります。

頂点 vv が次の条件を満たす時、頂点 vv警備されている頂点 と呼びます。

  • 頂点 vv と頂点 pip_i の距離が hih_i 以下であるような警備員 ii が少なくとも 1 人存在する。

ここで、頂点 uu と頂点 vv の距離とは、頂点 uu と頂点 vv を結ぶパスに含まれる辺の本数の最小値のことをいいます。

グラフに含まれる頂点のうち、警備されている頂点を 小さい方から順に 全て列挙してください。

制約

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 0Mmin(N(N1)2,2×105)0 \leq M \leq \min \left(\frac{N(N-1)}{2}, 2 \times 10^5 \right)
  • 1KN1 \leq K \leq N
  • 1ai,biN1 \leq a_i, b_i \leq N
  • 入力で与えられるグラフは単純
  • 1piN1 \leq p_i \leq N
  • pip_i は互いに異なる
  • 1hiN1 \leq h_i \leq N
  • 入力で与えられる値は全て整数

入力

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

NN MM KK
a1a_1 b1b_1
a2a_2 b2b_2
\vdots
aMa_M bMb_M
p1p_1 h1h_1
p2p_2 h2h_2
\vdots
pKp_K hKh_K

出力

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

  • 警備されている頂点の個数を GG
  • 警備されている頂点の頂点番号を 昇順に 並べたものを v1,v2,,vGv_1, v_2, \dots, v_G

と定義する。

GG
v1v_1 v2v_2 \dots vGv_G

入力例 1

5 5 2
1 2
2 3
2 4
3 5
1 5
1 1
5 2

出力例 1

4
1 2 3 5

警備されている頂点は 1,2,3,51, 2, 3, 544 頂点です。
これらの頂点が警備されている頂点である理由は以下の通りです。

  • 頂点 11 と頂点 p1=1p_1 = 1 の距離は 00 で、これは h1=1h_1 = 1 以下です。よって頂点 11 は警備されている頂点です。
  • 頂点 22 と頂点 p1=1p_1 = 1 の距離は 11 で、これは h1=1h_1 = 1 以下です。よって頂点 22 は警備されている頂点です。
  • 頂点 33 と頂点 p2=5p_2 = 5 の距離は 11 で、これは h2=2h_2 = 2 以下です。よって頂点 33 は警備されている頂点です。
  • 頂点 55 と頂点 p1=1p_1 = 1 の距離は 11 で、これは h1=1h_1 = 1 以下です。よって頂点 55 は警備されている頂点です。

入力例 2

3 0 1
2 3

出力例 2

1
2

入力で与えられるグラフに辺がない場合もあります。


入力例 3

10 10 2
2 1
5 1
6 1
2 4
2 5
2 10
8 5
8 6
9 6
7 9
3 4
8 2

出力例 3

7
1 2 3 5 6 8 9

Score : 475475 points

Problem Statement

There is a simple undirected graph with NN vertices and MM edges, where vertices are numbered from 11 to NN, and edges are numbered from 11 to MM. Edge ii connects vertex aia_i and vertex bib_i.
KK security guards numbered from 11 to KK are on some vertices. Guard ii is on vertex pip_i and has a stamina of hih_i. All pip_i are distinct.

A vertex vv is said to be guarded when the following condition is satisfied:

  • there is at least one guard ii such that the distance between vertex vv and vertex pip_i is at most hih_i.

Here, the distance between vertex uu and vertex vv is the minimum number of edges in the path connecting vertices uu and vv.

List all guarded vertices in ascending order.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 0Mmin(N(N1)2,2×105)0 \leq M \leq \min \left(\frac{N(N-1)}{2}, 2 \times 10^5 \right)
  • 1KN1 \leq K \leq N
  • 1ai,biN1 \leq a_i, b_i \leq N
  • The given graph is simple.
  • 1piN1 \leq p_i \leq N
  • All pip_i are distinct.
  • 1hiN1 \leq h_i \leq N
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN MM KK
a1a_1 b1b_1
a2a_2 b2b_2
\vdots
aMa_M bMb_M
p1p_1 h1h_1
p2p_2 h2h_2
\vdots
pKp_K hKh_K

Output

Print the answer in the following format. Here,

  • GG is the number of guarded vertices,
  • and v1,v2,,vGv_1, v_2, \dots, v_G are the vertex numbers of the guarded vertices in ascending order.
GG
v1v_1 v2v_2 \dots vGv_G

Sample Input 1

5 5 2
1 2
2 3
2 4
3 5
1 5
1 1
5 2

Sample Output 1

4
1 2 3 5

The guarded vertices are 1,2,3,51, 2, 3, 5.
These vertices are guarded because of the following reasons.

  • The distance between vertex 11 and vertex p1=1p_1 = 1 is 00, which is not greater than h1=1h_1 = 1. Thus, vertex 11 is guarded.
  • The distance between vertex 22 and vertex p1=1p_1 = 1 is 11, which is not greater than h1=1h_1 = 1. Thus, vertex 22 is guarded.
  • The distance between vertex 33 and vertex p2=5p_2 = 5 is 11, which is not greater than h2=2h_2 = 2. Thus, vertex 33 is guarded.
  • The distance between vertex 55 and vertex p1=1p_1 = 1 is 11, which is not greater than h1=1h_1 = 1. Thus, vertex 55 is guarded.

Sample Input 2

3 0 1
2 3

Sample Output 2

1
2

The given graph may have no edges.


Sample Input 3

10 10 2
2 1
5 1
6 1
2 4
2 5
2 10
8 5
8 6
9 6
7 9
3 4
8 2

Sample Output 3

7
1 2 3 5 6 8 9
F - Dungeon Explore

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 525525

問題文

この問題は インタラクティブな問題(あなたが作成したプログラムとジャッジプログラムが標準入出力を介して対話を行う形式の問題)です。

NN 個の頂点と MM 本の辺からなる連結かつ単純な無向グラフがあります。 頂点には 11 から NN までの整数の番号がついています。

あなたは、はじめ頂点 11 にいます。 隣り合う頂点に移動することを最大 2N2N 回まで繰り返して、頂点 NN へ移動してください。

ただし、はじめはグラフの辺をすべて知ることはできず、今いる頂点と隣り合っている頂点の情報を知ることができます。

制約

  • 2N1002\leq N\leq100
  • N1MN(N1)2N-1\leq M\leq\dfrac{N(N-1)}2
  • グラフは連結かつ単純
  • 入力はすべて整数

入出力

最初に、グラフの頂点数 NN と辺数 MM を標準入力から受け取ってください。

NN MM

次に、あなたはジャッジに対して問題文中の操作を 2N2N 回まで繰り返すことができます。

各操作のはじめには、あなたが現在いる頂点に隣接する頂点が次の形式で標準入力から与えられます。

kk v1v _ 1 v2v _ 2 \ldots vkv _ k

ここで、vi (1ik)v _ i\ (1\leq i\leq k)11 以上 NN 以下の整数で、v1<v2<<vkv _ 1\lt v _ 2\lt\cdots\lt v _ k を満たします。

あなたは、vi (1ik)v _ i\ (1\leq i\leq k)11 つ選んで以下の形式で標準出力へ出力してください。

viv _ i

この操作をすることで、あなたは頂点 viv _ i へ移動します。

移動回数が 2N2N 回を上回ったり、不正な出力を行った場合、ジャッジは標準入力に -1 を送ります。

移動する先の頂点が頂点 NN である場合、ジャッジは標準入力に OK を送り、終了します。

-1 もしくは OK を受け取った場合、ただちにあなたのプログラムを終了させてください。

注意点

  • 出力を行うたびに、末尾に改行を入れて標準出力を flush してください。そうしなかった場合、ジャッジ結果が TLE となる可能性があります。
  • 対話の途中で不正な出力を行った、あるいはプログラムが途中で終了した場合のジャッジ結果は不定です。
  • 頂点 NN に到達したらただちにプログラムを終了してください。そうしない場合、ジャッジ結果は不定です。
  • この問題のジャッジはアダプティブです。つまり、制約および以前の出力に矛盾しない範囲でグラフの形が変わる場合があります。

入出力例

以下は、N=4,M=5N=4,M=5 の場合の入出力例です。 この入出力では、グラフは以下の図のようになっています。

入力 出力 説明
4 5 NNMM が与えられます。
2 2 3 はじめ、あなたは頂点 11 にいます。頂点 11 に隣接している頂点が与えられます。
3 移動する頂点として、頂点 v2=3v _ 2=3 を選びます。
3 1 2 4 頂点 33 に隣接している頂点が与えられます。
2 移動する頂点として、頂点 v2=2v _ 2=2 を選びます。
3 1 3 4 頂点 22 に隣接している頂点が与えられます。
4 移動する頂点として、頂点 v3=4v _ 3=4 を選びます。
OK 8(=2×4)8(=2\times4) 回以内で頂点 44 に到達したので、OK が渡されます。

OK を受け取ったあと、ただちにプログラムを終了することで正解と判定されます。

Score : 525525 points

Problem Statement

This is an interactive problem (where your program and the judge program interact through Standard Input and Output).

There is a simple connected undirected graph with NN vertices and MM edges. The vertices are numbered with integers from 11 to NN.

Initially, you are at vertex 11. Repeat moving to an adjacent vertex at most 2N2N times to reach vertex NN.

Here, you do not initially know all edges of the graph, but you will be informed of the vertices adjacent to the vertex you are at.

Constraints

  • 2N1002\leq N\leq100
  • N1MN(N1)2N-1\leq M\leq\dfrac{N(N-1)}2
  • The graph is simple and connected.
  • All input values are integers.

Input and Output

First, receive the number of vertices NN and the number of edges MM in the graph from Standard Input:

NN MM

Next, you get to repeat the operation described in the problem statement at most 2N2N times against the judge.

At the beginning of each operation, the vertices adjacent to the vertex you are currently at are given from Standard Input in the following format:

kk v1v _ 1 v2v _ 2 \ldots vkv _ k

Here, vi (1ik)v _ i\ (1\leq i\leq k) are integers between 11 and NN such that v1<v2<<vkv _ 1\lt v _ 2\lt\cdots\lt v _ k.

Choose one of vi (1ik)v _ i\ (1\leq i\leq k) and print it to Standard Output in the following format:

viv _ i

After this operation, you will be at vertex viv _ i.

If you perform more than 2N2N operations or print invalid output, the judge will send -1 to Standard Input.

If the destination of a move is vertex NN, the judge will send OK to Standard Input and terminate.

When receiving -1 or OK, immediately terminate the program.

Notes

  • In each output, insert a newline at the end and flush Standard Output. Otherwise, the verdict may be TLE.
  • The verdict will be indeterminate if the program prints invalid output or quits prematurely in the middle of the interaction.
  • Terminate the program immediately after reaching vertex NN. Otherwise, the verdict will be indeterminate.
  • The judge for this problem is adaptive. This means that the graph may change without contradicting the constraints or previous outputs.

Sample Interaction

In the following sample interaction, we have N=4N=4, M=5M=5, and the graph in the figure below.

Input Output Description
4 5 NN and MM are given.
2 2 3 You start at vertex 11. The vertices adjacent to vertex 11 are given.
3 You choose to go to vertex v2=3v _ 2=3.
3 1 2 4 The vertices adjacent to vertex 33 are given.
2 You choose to go to vertex v2=2v _ 2=2.
3 1 3 4 The vertices adjacent to vertex 22 are given.
4 You choose to go to vertex v3=4v _ 3=4.
OK Since you have reached vertex 44 within 8(=2×4)8(=2\times4) moves, OK is passed.

You will be judged as correct if you immediately terminate the program after receiving OK.

G - Banned Substrings

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 550550

問題文

a, b からなる長さ 66 以下の空でない文字列の集合 S={s1,s2,,sM}S=\lbrace s _ 1,s _ 2,\ldots,s _ M\rbrace が与えられます。 以下の条件を満たす a, b からなる長さ NN の文字列 TT はいくつあるか求めてください。

  • 任意の siSs _ i\in S に対して、TTsis _ i を連続する部分文字列として含まない

ただし、答えは非常に大きくなる可能性があるので、答えを 998244353998244353 で割った余りを求めてください。

制約

  • 1N10181\leq N\leq10^{18}
  • 1M1261\leq M\leq126
  • N,MN,M は整数
  • sis _ ia, b からなる長さ 66 以下の空でない文字列
  • sisj (1i<jM)s _ i\neq s _ j\ (1\leq i\lt j\leq M)

入力

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

NN MM
s1s _ 1
s2s _ 2
\vdots
sMs _ M

出力

答えを 998244353998244353 で割ったあまりを 11 行で出力せよ。


入力例 1

4 3
aab
bbab
abab

出力例 1

10

a, b からなる長さ 44 の文字列で、連続する部分列として aab, bbab, abab をもたないようなものは aaaa, abaa, abba, abbb, baaa, baba, babb, bbaa, bbba, bbbb1010 個なので、1010 を出力してください。


入力例 2

20 1
aa

出力例 2

17711

入力例 3

1000000007 28
bbabba
bbbbaa
aabbab
bbbaba
baaabb
babaab
bbaaba
aabaaa
aaaaaa
aabbaa
bbaaaa
bbaabb
bbabab
aababa
baaaba
ababab
abbaba
aabaab
ababaa
abbbba
baabaa
aabbbb
abbbab
baaaab
baabbb
ababbb
baabba
abaaaa

出力例 3

566756841

998244353998244353 で割ったあまりを出力してください。

Score : 550550 points

Problem Statement

You are given a set S={s1,s2,,sM}S=\lbrace s _ 1,s _ 2,\ldots,s _ M\rbrace of non-empty strings of length at most 66 consisting of a and b. Find the number of strings TT of length NN consisting of a and b that satisfy the following condition:

  • TT does not contain sis _ i as a consecutive substring for any siSs _ i\in S.

Since the answer can be enormous, find it modulo 998244353998244353.

Constraints

  • 1N10181\leq N\leq10^{18}
  • 1M1261\leq M\leq126
  • NN and MM are integers.
  • sis _ i is a non-empty string of length at most 66 consisting of a and b.
  • sisj (1i<jM)s _ i\neq s _ j\ (1\leq i\lt j\leq M)

Input

The input is given from Standard Input in the following format:

NN MM
s1s _ 1
s2s _ 2
\vdots
sMs _ M

Output

Print the answer modulo 998244353998244353 in a single line.


Sample Input 1

4 3
aab
bbab
abab

Sample Output 1

10

There are 1010 strings of length 44 consisting of a and b that do not contain aab, bbab, or abab as consecutive substrings: aaaa, abaa, abba, abbb, baaa, baba, babb, bbaa, bbba, and bbbb. Thus, you should print 1010.


Sample Input 2

20 1
aa

Sample Output 2

17711

Sample Input 3

1000000007 28
bbabba
bbbbaa
aabbab
bbbaba
baaabb
babaab
bbaaba
aabaaa
aaaaaa
aabbaa
bbaaaa
bbaabb
bbabab
aababa
baaaba
ababab
abbaba
aabaab
ababaa
abbbba
baabaa
aabbbb
abbbab
baaaab
baabbb
ababbb
baabba
abaaaa

Sample Output 3

566756841

Print the answer modulo 998244353998244353.

Ex - Shojin

Time Limit: 3 sec / Memory Limit: 1024 MB

配点 : 650650

問題文

あなたは 精進 をすることにしました。精進とは、AtCoder の問題を大量に解くことをいいます。
精進は何日か掛けて行われます。1 日における精進は次の手順で行われます。

  • その日に MM 問の問題を解くとする。各問題には非負整数対 (A,B)(A, B)難易度 と呼ばれる値としてついている。
  • まず、MM 問を自由な順番に並べ替える。そして、並び替えた後の順に問題を 1 問ずつ解いていく。
  • あなたは 疲労度 という値を持っている。1 日のはじめの疲労度は 00 であり、難易度が (A,B)(A, B) である問題を解くごとに疲労度が xx から Ax+BAx + B に変化する。
  • MM 問すべて解いた時点での疲労度を、その日の 消費した体力 と呼ぶ。

NN 問の AtCoder の問題が並んでいて、順に問題 11, 問題 22, \dots, 問題 NN と呼びます。問題 ii の難易度は (Ai,Bi)(A_i, B_i) です。
あなたは精進を行うことで NN 問の問題を全て解くことにしました。
精進は次の手順で行います。以下では問題 LL, 問題 L+1L+1, ......, 問題 RR からなる問題の列を [L,R][L, R] と呼びます。

  • 11 以上 NN 以下の整数 KK を自由に選ぶ。精進する日数を KK 日とする。
  • NN 問の問題の列を、KK 個の非空な連続部分列に分割して、前から ii 番目の列を SiS_i とする。
    形式的に説明すると、狭義単調増加な非負整数列 x0,x1,,xKx_0, x_1, \dots, x_K のうち 1=x01 = x_0 かつ xK=N+1x_K = N + 1 を満たすものを 1 つ選び、1iK1 \leq i \leq K について Si=[xi1,xi1]S_i = [x_{i-1}, x_i - 1] とする。
  • そして、i=1,2,,Ki=1, 2, \dots, K について、 ii 日目の精進では SiS_i に含まれる問題全てを解く。

あなたは、精進全体での消費した体力の総和が XX 以下になるように精進をすることにしました。
このような精進の日数 KK として取り得る最小の値を DD とします。(ここで XX について、i=1NBiX\sum_{i = 1}^N B_i \leq X が保証されています。この制約下において条件を満たす DD は必ず存在します。)
また、K=DK=D である精進において、精進全体での消費した体力の総和として取り得る最小の値を MM とします。

DD および MM を求めてください。

制約

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 1X1081 \leq X \leq 10^8
  • 1Ai1051 \leq A_i \leq 10^5
  • 1Bi1 \leq B_i
  • i=1NBiX\sum_{i=1}^N B_i \leq X
  • 入力される値は全て整数

入力

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

NN XX
A1A_1 B1B_1
A2A_2 B2B_2
\vdots
ANA_N BNB_N

出力

DD および MM を空白区切りで出力せよ。


入力例 1

3 100
2 2
3 4
5 7

出力例 1

1 52

このテストケースでは XX に関する条件を満たしながら 11 日で全ての問題を解くことが可能です。
以下の手順で精進を行うことで、精進全体での消費した体力は 5252 になり、これが最小です。

  • K=1K=1 として、11 日目に [1,3][1, 3] を解くとする。
  • 11 日目の精進は以下の手順で行う。
    • 問題を (問題 33, 問題 22, 問題 11) の順に並べる。
    • はじめ、疲労度は 00 である。
    • 問題 33 を解く。疲労度は 5×0+7=75 \times 0 + 7 = 7 に変化する。
    • 問題 22 を解く。疲労度は 3×7+4=253 \times 7 + 4 = 25 に変化する。
    • 問題 11 を解く。疲労度は 2×25+2=522 \times 25 + 2 = 52 に変化する。
    • 全ての問題を解いた時点での疲労度は 5252 である。よってこの日の消費した体力は 5252 となる。
  • 精進全体での消費した体力の総和もまた 5252 である。

入力例 2

3 30
2 2
3 4
5 7

出力例 2

2 17

このテストケースは、1 番目のテストケースの XX100100 から 3030 に変えたものです。よって、 XX に関する条件を満たしながら 11 日で全ての問題を解くことは不可能です。

以下の手順に従って精進を 22 日間行うことで M=17M=17 を達成できます。

  • K=2K = 2 として、11 日目に [1,2][1, 2], 22 日目に [3,3][3, 3] を解くとする。
  • 11 日目の精進は以下の手順で行う。
    • 問題を (問題 11, 問題 22) の順に並べる。
    • はじめ、疲労度は 00 である。
    • 問題 11 を解く。疲労度は 2×0+2=22 \times 0 + 2 = 2 に変化する。
    • 問題 22 を解く。疲労度は 3×2+4=103 \times 2 + 4 = 10 に変化する。
    • 全ての問題を解いた時点での疲労度は 1010 である。よって 11 日目の消費した体力は 1010 となる。
  • 22 日目の精進は以下の手順で行う。
    • 問題を (問題 33) の順に並べる。
    • はじめ、疲労度は 00 である。
    • 問題 33 を解く。疲労度は 5×0+7=75 \times 0 + 7 = 7 に変化する。
    • 全ての問題を解いた時点での疲労度は 77 である。よって 22 日目の消費した体力は 77 となる。
  • 精進全体での消費した体力の総和は 10+7=1710 + 7 = 17 である。

入力例 3

5 50000000
100000 10000000
100000 10000000
100000 10000000
100000 10000000
100000 10000000

出力例 3

5 50000000

1111 問ずつ解いていく精進が答えとなります。


入力例 4

10 100000000
5 88
66 4
52 1
3 1
12 1
53 25
11 12
12 2
1 20
47 10

出力例 4

2 73647

入力例 5

15 100000000
2387 3178
2369 5772
1 29
36 3
52 2981
196 1
36 704
3 3
1501 5185
23 628
3623 810
80 101
6579 15
681 7
183 125

出力例 5

4 54468135

Score : 650650 points

Problem Statement

You have decided to practice. Practice means solving a large number of problems in AtCoder.
Practice takes place over several days. The practice for one day is carried out in the following steps.

  • Let MM be the number of problems to be solved on that day. Each problem has a value called difficulty, which is a pair of non-negative integers (A,B)(A, B).
  • First, rearrange the MM problems in any order. Then, solve the problems one by one in that order.
  • You have a value called fatigue. The fatigue at the beginning of the day is 00, and it changes from xx to Ax+BAx + B when solving a problem with difficulty (A,B)(A, B).
  • The fatigue at the end of solving all MM problems is called the energy consumed for that day.

There is a sequence of NN problems in AtCoder, called problem 11, problem 22, \dots, problem NN in order. The difficulty of problem ii is (Ai,Bi)(A_i, B_i).
You have decided to solve all NN problems through practice.
Practice is carried out in the following steps. Below, let [L,R][L, R] denote the following sequence of problems: problem LL, problem L+1L+1, ......, problem RR.

  • Choose an integer KK freely between 11 and NN, inclusive. The practice will last KK days.
  • Divide the sequence of NN problems into KK non-empty continuous subsequences, and let SiS_i be the ii-th sequence.
    Formally, choose a strictly increasing non-negative integer sequence x0,x1,,xKx_0, x_1, \dots, x_K such that 1=x01 = x_0 and xK=N+1x_K = N + 1, and let Si=[xi1,xi1]S_i = [x_{i-1}, x_i - 1] for 1iK1 \leq i \leq K.
  • Then, for i=1,2,,Ki=1, 2, \dots, K, solve all problems in SiS_i on the ii-th day of practice.

You have decided to practice so that the total energy consumed throughout the practice is at most XX.
Let DD be the minimum possible value of KK, the number of days, for such a practice. (Here, it is guaranteed that i=1NBiX\sum_{i = 1}^N B_i \leq X. Under this constraint, such DD always exists.)
Also, let MM be the minimum possible total energy consumed throughout a practice such that K=DK=D.

Find DD and MM.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 1X1081 \leq X \leq 10^8
  • 1Ai1051 \leq A_i \leq 10^5
  • 1Bi1 \leq B_i
  • i=1NBiX\sum_{i=1}^N B_i \leq X
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN XX
A1A_1 B1B_1
A2A_2 B2B_2
\vdots
ANA_N BNB_N

Output

Print DD and MM separated by a space.


Sample Input 1

3 100
2 2
3 4
5 7

Sample Output 1

1 52

In this test case, you can solve all problems in one day while satisfying the condition for XX.
By following the steps below, the total energy consumed during the practice will be 5252, which is the minimum.

  • Set K=1K=1 and solve [1,3][1, 3] on the first day.
  • Carry out the practice on the first day in the following steps.
    • Arrange the problems in the order (problem 33, problem 22, problem 11).
    • Initially, the fatigue is 00.
    • Solve problem 33. The fatigue changes to 5×0+7=75 \times 0 + 7 = 7.
    • Solve problem 22. The fatigue changes to 3×7+4=253 \times 7 + 4 = 25.
    • Solve problem 11. The fatigue changes to 2×25+2=522 \times 25 + 2 = 52.
    • The fatigue at the end of solving all problems is 5252. Therefore, the energy consumed on this day is 5252.
  • The total energy consumed throughout the practice is also 5252.

Sample Input 2

3 30
2 2
3 4
5 7

Sample Output 2

2 17

This test case is obtained by changing XX from 100100 to 3030 in the first test case. Therefore, it is impossible to solve all problems in one day while satisfying the condition for XX.

By following the steps below, you can achieve M=17M=17 by practicing for two days.

  • Set K=2K = 2, and solve [1,2][1, 2] on the first day and [3,3][3, 3] on the second day.
  • Carry out the practice on the first day in the following steps.
    • Arrange the problems in the order (problem 11, problem 22).
    • Initially, the fatigue is 00.
    • Solve problem 11. The fatigue changes to 2×0+2=22 \times 0 + 2 = 2.
    • Solve problem 22. The fatigue changes to 3×2+4=103 \times 2 + 4 = 10.
    • The fatigue at the end of solving all problems is 1010. Therefore, the energy consumed on the first day is 1010.
  • Carry out the practice on the second day in the following steps.
    • Arrange the problems in the order (problem 33).
    • Initially, the fatigue is 00.
    • Solve problem 33. The fatigue changes to 5×0+7=75 \times 0 + 7 = 7.
    • The fatigue at the end of solving all problems is 77. Therefore, the energy consumed on the second day is 77.
  • The total energy consumed throughout the practice is 10+7=1710 + 7 = 17.

Sample Input 3

5 50000000
100000 10000000
100000 10000000
100000 10000000
100000 10000000
100000 10000000

Sample Output 3

5 50000000

The optimal practice is to solve one problem per day.


Sample Input 4

10 100000000
5 88
66 4
52 1
3 1
12 1
53 25
11 12
12 2
1 20
47 10

Sample Output 4

2 73647

Sample Input 5

15 100000000
2387 3178
2369 5772
1 29
36 3
52 2981
196 1
36 704
3 3
1501 5185
23 628
3623 810
80 101
6579 15
681 7
183 125

Sample Output 5

4 54468135