시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 512 MB99484552.326%

문제

A core part of the decision of where to live in a city like Nottingham is the availability of transport links to interesting places. This is particularly intersting to Max, who enlivens his stressful life as organiser of UKIEPC by making frequent sightseeing travels around town in a bright orange bus.

Max’s idea of a good time is a visit to a spot that takes exactly one bus journey to get to. He is considering moving house to be near to one specific spot along his favourite bus route—how many such other scenic spots can he reach from there (assuming that on a given trip he can choose a new bus route each time)?

Figure B.1: A bus route map illustrating Sample Input 1. Max, as usual, is drawn as a white dot in the centre of each bus stop he can start from.

입력

  • The first line of input contains three integers: Max’s starting stop, m (1 ≤ m ≤ s). the number of buses, b (1 ≤ b ≤ 50), and the number of stops, s (1 ≤ s ≤ 50).
  • The next b lines contain the bus routes, each written as a string of s characters where having the ith character as ’1’ denotes that this bus route has a stop at i, and ’0’ denotes that it does not.

출력

Output the maximum number of other stops Max can reach from the starting stop by taking exactly one bus.

예제 입력 1

1 3 5
01100
10011
10111

예제 출력 1

3

예제 입력 2

2 2 3
101
101

예제 출력 2

0

출처

ICPC > Regionals > Europe > Northwestern European Regional Contest > The UK & Ireland Programming Contest > UKIEPC 2018 B번

  • 문제를 만든 사람: Robin Lee