CF BUDDY
← Problems·

1804D · Accommodation

2000 · brute force, dp, greedy

Problem: Annie is an amateur photographer. She likes to take pictures of giant residential buildings at night. She just took a picture of a huge rectangular building that can be seen as a table of n×mn \times m windows. That means that the building has nn floors and each floor has exactly mm windows. Each window is either dark or bright, meaning there is light turned on in the room behind it.

Annies knows that each apartment in this building is either one-bedroom or two-bedroom. Each one-bedroom apartment has exactly one window representing it on the picture, and each two-bedroom apartment has exactly two consecutive windows on the same floor. Moreover, the value of mm is guaranteed to be divisible by 44 and it is known that each floor has exactly m4\frac{m}{4} two-bedroom apartments and exactly m2\frac{m}{2} one-bedroom apartments. The actual layout of apartments is unknown and can be different for each floor.

Annie considers an apartment to be occupied if at least one of its windows is bright. She now wonders, what are the minimum and maximum possible number of occupied apartments if judged by the given picture?

Formally, for each of the floors, she comes up with some particular apartments layout with exactly m4\frac{m}{4} two-bedroom apartments (two consecutive windows) and m2\frac{m}{2} one-bedroom apartments (single window). She then counts the total number of apartments that have at least one bright window. What is the minimum and maximum possible number she can get?

Input Format: The first line of the input contains two positive integers nn and mm (1nm51051 \leq n \cdot m \leq 5 \cdot 10^5) — the number of floors in the building and the number of windows per floor, respectively. It is guaranteed that mm is divisible by 44.

Then follow nn lines containing mm characters each. The jj-th character of the ii-th line is "0" if the jj-th window on the ii-th floor is dark, and is "1" if this window is bright.

Output Format: Print two integers, the minimum possible number of occupied apartments and the maximum possible number of occupied apartments, assuming each floor can have an individual layout of m4\frac{m}{4} two-bedroom and m2\frac{m}{2} one-bedroom apartments.

Note: In the first example, each floor consists of one two-bedroom apartment and two one-bedroom apartments.

The following apartment layout achieves the minimum possible number of occupied apartments equal to 77.

The following apartment layout achieves the maximum possible number of occupied apartments equal to 1010.

Sample Cases

Case 1

Input

5 4
0100
1100
0110
1010
1011

Output

7 10

Case 2

Input

1 8
01011100

Output

3 4

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback