시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB63212136.842%

문제

Taiwan has a big railway line connecting the western and eastern shores of the island. The line consists of m blocks. The consecutive blocks are numbered 0, ..., m - 1, starting from the western end. Each block has a one-way west-bound track on the north, a one-way east-bound track on the south, and optionally a train station between them.

There are three types of blocks. A type C block has a train station that you must enter from the northern track and exit to the southern track, a type D block has a train station that you must enter from the southern track and exit to the northern track, and a type empty block has no train station. For example, in the following figure block 0 is type empty, block 1 is type C, and block 5 is type D. Blocks connect to each other horizontally. Tracks of adjacent blocks are joined by connectors, shown as shaded rectangles in the following figure.

The railsystem has n stations numbered from 0 to n - 1. We assume that we can go from any station to any other station by following the track. For example we can go from station 0 to station 2 by starting from block 2, then passing through blocks 3 and 4 by the southern track, and then passing through station 1, then passing through block 4 by the northern track, and finally reaching station 2 at block 3.

Since there are multiple possible routes, the distance from one station to another is defined as the minimum number of connectors the route passes through. For example the shortest route from station 0 to 2 is through blocks 2-3-4-5-4-3 and passes through 5 connectors, so the distance is 5.

A computer system manages the railsystem. Unfortunately after a power outage the computer no longer knows where the stations are and what types of blocks they are in. The only clue the computer has is the block number of station 0, which is always in a type C block. Fortunately the computer can query the distance from any station to any other station. For example, the computer can query 'what is the distance from station 0 to station 2?' and it will receive 5.

구현

You need to implement a function findLocation that determines for each station the block number and block type.

  • void findLocation(int n, int first, int location[], int stype[]);
    • n: the number of stations.
    • first: the block number of station 0.
    • location: array of size n; you should place the block number of station i into location[i].
    • stype: array of size n; you should place the block type of station i into stype[i]: 1 for type C and 2 for type D.

You can call a function getDistance to help you find the locations and types of stations.

  • int getDistance(int i, int j);
    • returns the distance from station i to station j. getDistance(i, i) will return 0. getDistance(i, j) will return -1 if i or j is outside the range 0 ≤ i, jn - 1.

서브태스크

번호배점제한
18
  • 1 ≤ n ≤ 100
  • getDistance calls: unlimited
  • All stations except 0 are in type D blocks.
222
  • 1 ≤ n ≤ 100
  • getDistance calls: unlimited
  • All stations to the right of station 0 are in type D blocks, and all stations to the left of station 0 are in type C blocks.
326
  • 1 ≤ n ≤ 5,000
  • getDistance calls: n(n - 1) / 2
444
  • 1 ≤ n ≤ 5,000
  • getDistance calls: 3(n - 1)

샘플 그레이더

The sample grader reads the input in the following format:

  • line 1: the subtask number
  • line 2: n
  • line 3 + i, (0 ≤ in - 1): stype[i] (1 for type C and 2 for type D), location[i].

The sample grader will print Correct if location[0] ... location[n-1] and stype[0] ... stype[n-1] computed by your program match the input when findLocation returns, or Incorrect if they do not match.

출처

Olympiad > International Olympiad in Informatics > IOI 2014 > Day 1 1번

  • 문제를 만든 사람: Vytautas Gruslys

제출할 수 있는 언어

C++17, C++14, C++20, C++14 (Clang), C++17 (Clang), C++20 (Clang)

채점 및 기타 정보

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