#5059. Problem 1. Flight Routes
Problem 1. Flight Routes
Problem 1. Flight Routes
USACO 2023 December Contest, Gold
Bessie recently discovered that her favorite pop artist, Elsie Swift, is performing in her new Eras Tour! Unfortunately, tickets are selling out fast, so Bessie is thinking of flying to another city to attend the concert. The Eras tour is happening in () cities labeled , and for each pair of cities with there either exists a single direct flight from to or not.
A
flight route
from city to city () is a sequence of cities such that for each , there is a direct flight from city to city . For every pair of cities with , you are given the parity of the number of flight routes between them (0 for even, 1 for odd).
While planning her travel itinerary, Bessie got distracted and now wants to know how many pairs of cities have direct flights between them. It can be shown that the answer is uniquely determined.
INPUT FORMAT (input arrives from the terminal / stdin):
The first line contains .
Then follow lines. The th line contains integers. The th integer of the th line is equal to the parity of the number of flight routes from to .
OUTPUT FORMAT (print output to the terminal / stdout):
Output the number of pairs of cities with direct flights between them.
SAMPLE INPUT:
3 11 1
SAMPLE OUTPUT:
2
There are two direct flights: and . There is one flight route from to and to , each consisting of a single direct flight. There is one flight route from to ().
SAMPLE INPUT:
5 1111 101 01 1
SAMPLE OUTPUT:
6
There are six direct flights . These result in the following numbers of flight routes:
Flight Route Counts:
dest
1 2 3 4 5
1 0 1 1 1 3
2 0 0 1 0 1
source 3 0 0 0 0 1
4 0 0 0 0 1
5 0 0 0 0 0
which is equivalent to the sample input after taking all the numbers .
SCORING: Inputs 3-4: Inputs 5-12: Inputs 13-22: No additional constraints.
Problem credits: Benjamin Qi