COCI '18 Contest 2 #2 Kocka

View as PDF

Submit solution

Points: 7 (partial)
Time limit: 0.6s
Memory limit: 64M

Problem type

I'm again in the cube!

I'm again in the cube!

While watching the kids' playground in the early morning hours, the author of this task caught sight of an interesting object: a cube made out of metal bars, composed of many unit-sized cubes made out of metal bars.

While observing the cube, an interesting problem came to his mind. Here follows the two-dimensional version of the problem, since nobody likes problems involving 3D objects:

You're given N×N matrix (square for reference). Some of the fields in the square are blocked and some are empty. The author was watching the square from each of its 4 sides. Firstly, he looked at the square from its left side, and for each of its N rows he wrote how many empty fields there were in the row in front of the first blocked field he could see. If there were no blocked fields in a row, he wrote down the number -1. Then he repeated the same procedure looking at the square from its right, top and bottom side, in that order.

By doing so, he wrote 4N numbers in total, as he wrote N numbers for each side of the square. However, unknown villains destroyed his square and the only thing left were the numbers he had written down. The author of the task wonders if those numbers make any sense, i.e. if it is possible to form a square for which the same sequence of numbers will be obtained by doing the described procedure.

Input Specification

The first line contains a positive integer N (1N100000), dimension of the square.

The second line contains N integers Li (1Li<N), numbers obtained by watching the square from its left side, in order from 1st to Nth row.

The third line contains N integers Ri (1Ri<N), numbers obtained by watching the square from its right side, in order from 1st to Nth row.

The fourth line contains N integers Ui (1Ui<N), numbers obtained by watching the square from its top side, in order from 1st to Nth column.

The fifth line contains N integers Di (1Di<N), numbers obtained by watching the square from its bottom side, in order from 1st to Nth column.

Output Specification

If it is possible to form a square which satisfies the given conditions, print DA (Croatian for yes), otherwise print NE (Croatian for no).

Scoring

In test cases worth 40% of total points, it will hold that N1000.

Sample Input 1

Copy
3
-1 2 0
-1 0 1
2 2 1
0 0 1

Sample Output 1

Copy
DA

Explanation for Sample Output 1

Sample Input 2

Copy
3
-1 0 1
-1 2 1
-1 2 -1
1 0 -1

Sample Output 2

Copy
NE

Comments


  • 0
    sjay05  commented on Aug. 16, 2021, 6:29 p.m.

    Since the original data were weak, a case has been added to prevent incorrect solutions from passing.


    • 0
      vishnus  commented on Aug. 16, 2021, 9:01 p.m.

      rip 7 points :(