시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB64466.667%

문제

Where roads intersect, there are often traffic lights that tell pedestrians (people walking) when they should cross the street. A clever pedestrian may try to optimize her path through a city based on when those lights turn green.

The city in this problem is a grid, N rows tall by M columns wide. Our pedestrian wants to get from the northeast corner of the southwest block to the southwest corner of the northeast block. Your objective is to help her find her way from corner to corner in the fastest way possible.

The pedestrian can cross a street in 1 minute, but only if the traffic light is green for the entire crossing. The pedestrian can move between two streets, along one edge of a block, in 2 minutes. The pedestrian can only move along the edges of the block; she cannot move diagonally from one corner of a block to the opposite corner.

Traffic lights follow the following pattern: at intersection i, the north-south lights stay green for Si minutes, while the east-west lights stay red. Then the north-south lights turn red, the east-west lights turn green, and they stay that way for Wi minutes. Then they start the same cycle again. The pedestrian starts moving at t=0 minutes; traffic light i starts a cycle by turning green in the north-south direction at t=Ti minutes. There are cycles before t=Tias well.

For example, intersection 0 could have the following values:

S0 = 3, W0 = 2, T0 = 0

The north-south direction turns green after 0 minutes. That lasts 3 minutes, during which time the pedestrian can cross in the north-south direction and not the east-west direction. Then the lights switch, and for the next 2 minutes the pedestrian can cross in the east-west direction and not the north-south direction. Then, 5 minutes after it started, the cycle starts again. This is exactly the same as the following configuration:

S0 = 3, W0 = 2, T0 = 10

입력

The first line in the input contains the number of test cases, C. This is followed by C test cases in the following format:

A single line containing "N M", where N and M are the number of horizontal roads (rows) and vertical roads (columns), as above. This is followed by N lines. The ith of those lines contains information about intersections on the ith row, where the 0th row is the northmost. Each of those lines will contain 3M integers, separated by spaces, in the following form:

Si,0 Wi,0 Ti,0 Si,1 Wi,1 Ti,1... Si,M-1 Wi,M-1 Ti,M-1

Si,jWi,j and Ti,j all refer to the intersection in the ith row from the north and the jth column from the west.

Limits

  • CNMSi,jWi,jTi,j are all non-negative integers.
  • C ≤ 100
  • 1 ≤ NM ≤ 20
  • 0 < Si,jWi,j ≤ 107
  • 0 ≤ Ti,j ≤ 108

출력

For each test case, output a single line containing the text "Case #x: t", where x is the number of the test case and t is the minimum number of minutes it takes the pedestrian to get from the southwest corner to the northeast corner.

예제 입력 1

2
1 1
3 2 10
1 2
1 5 3 1 5 2

예제 출력 1

Case #1: 4
Case #2: 7

힌트

The first case is described above. The pedestrian crosses to the North (1 minute), waits 2 minutes and then crosses to the East (1 minute), for a total of 4 minutes.

The second case is depicted in the diagram below. The pedestrian crosses to the East (1 minute), waits 2 minutes and crosses to the North (1 minute). Then she walks east a block (2 minutes) and crosses to the East (1 minute) for a total of 7 minutes.

출처

Contest > Google > Code Jam > Google Code Jam 2009 > Round 1A B2번

채점 및 기타 정보

  • 예제는 채점하지 않는다.