ICPC 2019 Asia Regional – Seoul Problem D- Ladder Game > 문제은행 : 정보올림피아드&알고리즘

공지   새로운 정올 베타버전이 공개되었습니다.    자세히보기


4387 : Ladder Game

제한시간
1000 ms   
메모리제한
512 MB   
해결횟수
0 회   
시도횟수
1 회   

문제

Consider a situation that we need to distribute n gifts to n people fairly and randomly. For this purpose one ancient technique is popular in Asia, and is usually used to represent a random permutation. Chinese call it Ghost Leg (畫鬼腳), Japanese Budda Lots (あみだくじ) and Korean Ladder Game (사다리타기). We first start with some terms. This ladder consists of several vertical poles and horizontal bars connecting two adjacent vertical poles. From the top of each vertical pole, a path is traced through the ladder using the following three steps:

 

 




  1. When tracing a vertical pole, continue downwards until an end of the first bar is reached, then continue along the bar.

  2. When tracing a bar, continue along it until the end of the bar is reached, then continue down the vertical pole.

  3. Repeat Step 1 and Step 2 until the bottom of a vertical pole is reached.



 

 

Figure D.1(a) shows a ladder L with three vertical poles and three bars. The vertical poles are numbered with 1, … , n from left to right. The paths of tracing these three vertical poles are shown in (b), (c), and (d). The input (1, 2, 3) is permuted finally to πL = (3, 2, 1) by the ladder L. Note that we do not allow the case that two immediately adjacent horizontal bars meet at some point (like w in Figure D.1(e)) because there is no unique way in tracing at the point.

 

 


 

 

You are given a ladder L which achieves a permutation πL. If the permutation πL is unchanged after removing a set of bars containing a particular bar, then the bar is said to be redundant for πL. Your task is to find all redundant bars for πL. This is equivalent to constructing a minimal ladder by removing all redundant bars from L. In the minimal ladder of L, the removal of any non-empty set of bars from the ladder gives a different permutation from πL.

 


입력형식

Your program is to read from standard input. The input starts with a line containing one integers n (3 ≤ n ≤ 50), where n is the number of vertical poles. The vertical poles are ordered from left to right. Let di,j denote the depth of the j-th bar between the i-th and (i + 1)-th poles from the top, which is an integer between 1 and 1,000. In the following n − 1 lines, the i-th line contains the sequence of depths di,j, where 1 ≤ i < n, j ≥ 1 and di,j < di,j+1. Notice that this depth sequence is ended with zero (0), which is not a depth but just a marker to indicate the end of the sequence. See Figure D.2 for illustration.

 


 


출력형식

Your program is to write to standard output. Print a set of the bars to be remained in a minimal ladder for πL. The first line should contain k, the number of the bars remained in the minimal ladder. Then, each line of the following k lines should contain two indices i and j of di,j of the bar in the minimal ladder. Note that the minimal ladder is not unique. 

 

The following shows sample input and output for two test cases in Figure D.2(b) and Figure D.2(c).  


입력 예

복사하기

6
2 5 8 0
6 0
1 10 0
4 6 11 0
5 7 9 0

출력 예

복사하기

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

입력 예

복사하기

5
2 6 9 0
3 7 8 11 0
2 4 9 0
6 10 0

출력 예

복사하기

6
1 1
3 1
2 1
4 1
3 3
2 4


경기도 안양시 동안구 평촌대로 109 협성골드프라자 601호

TEL : 031-360-4144 FAX : 031-388-0996 E-mail : hancomc@hotmail.com, comkiwer@naver.com

Copyrightⓒ 2010 jungol. All right reserved.

TOP