National Olympiad in Informatics, China, 2012

Day 2, Problem 2 - Food Festival

To welcome students from all across the nation, City CZ is specially hosting a grand food festival.

Being a food fanatic who loves to try new flavors, little M obviously does not want to miss this feast. Going there, he quickly was able to sample lots of the festival's great foods. Yet, it is still hard to satisfy the appetite of a true gastronome, even if the dishes are very tasty and the kitchen is very efficient. Little M still thinks that not having dishes which are already on someone else's table is an unbearable feeling. So, little M started to investigate issues relating to the order in which dishes are prepared, hoping to create an efficient system that minimizes the waiting time of students.

Little M noticed that the food festival contains n varieties of delicacies. When ordering each time, each student can select one of these varieties. There are a total of m chefs to prepare these dishes. After all of the students have ordered, the tasks of preparing the dishes will assigned to each of the chefs. Then, each chef will simultaneously start to cook. The chefs will follow the required order when they prepare the dishes, and each time can only make a portion for one person.

Other than this, little M also made an interesting observation — even though these m chefs all know how to fully prepare all n varieties of delicacies, different chefs may require different amounts of time to prepare the same dish. He numbered the types of delicacies from 1 to n, and the chefs from 1 to m, denoting the time it takes for j-th chef to prepare the i-th delicacy as ti, j.

Little M will consider each student's waiting time to be from when all chefs start to cook to when their own dish is fully prepared. In other words, if a student's ordered dish is the k-th delicacy to be prepared by some chef, then their waiting time is the sum of the preparation times of the first k dishes that this chef prepares. The total waiting time is the sum of the waiting times among all of the students.

Now, little M has the orders of each and every student — there are pi students who ordered the i-th type of delicacy (for i = 1, 2, …, n). He would like to know the minimum possible total waiting time.

Input Format

The first line of input contains two positive integers n and m, representing the number of varieties of delicacies and chefs, respectively.
Line 2 contains n positive integers p1, p2, …, pn, where pi is the number of students who ordered the i-th delicacy.
For the following n lines, each line contains m nonnegative integers. The j-th integer on the i-th line will be ti, j, the time it takes for the j-th chef to prepare the i-th delicacy.
All adjacent numbers on the same line will be separated by a single space, and there will be no trailing spaces on any line.

Output Format

Output one line containing a single integer, the smallest possible total waiting time.

Sample Input

3 2
3 1 1
5 7
3 6
8 9

Sample Output

47

Explanation

Chef 1 first prepares 1 order of delicacy 2, then prepares 2 orders of delicacy 1. The waiting times of the 3 students who ordered these 3 dishes are respectively 3, 3 + 5 = 8, and 3 + 5 + 5 = 13.
Chef 2 first prepares 1 order of delicacy 1, then prepares 1 order of delicacy 3. The waiting times of the 2 students who ordered these 2 dishes are respectively 7 and 7 + 9 = 16.
The total waiting time is 3 + 8 + 13 + 7 + 16 = 47.
Although delicacies 1 and 3 are best cooked by chef 1, if these are both cooked by chef 1, then the total waiting time will actually be longer. If the solution described above is followed where 1 order of delicacy 1 and 1 order of delicacy 3 is tasked to chef 2, then chef will not be idle, reducing the waiting time.
It can be proven that no solution exists which is more optimal.

Constraints

For 100% of test cases, n ≤ 40, m ≤ 100, p ≤ 800, and ti, j ≤ 1000 (where p = Σpi and the total number of ordering students).

The following additional constraints for n, m, and p will hold.

Test Casenmp
1n = 5m = 5p = 10
2n = 40m = 1p = 400
3n = 40m = 2p = 300
4n = 40m = 40p = 40
5n = 5m = 40p = 100
6n = 10m = 50p = 200
7n = 20m = 60p = 400
8n = 40m = 80p = 600
9n = 40m = 100p = 800
10n = 40m = 100p = 800

All Submissions
Best Solutions


Point Value: 30 (partial)
Time Limit: 1.00s
Memory Limit: 512M
Added: Aug 13, 2014

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...