Codeforces Round #241 (Div. 2) B

来源:互联网 发布:神武挖山水算法 编辑:程序博客网 时间:2024/05/02 02:13

B. Art Union
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

A well-known art union called "Kalevich is Alive!" manufactures objects d'art (pictures). The union consists of n painters who decided to organize their work as follows.

Each painter uses only the color that was assigned to him. The colors are distinct for all painters. Let's assume that the first painter uses color 1, the second one uses color 2, and so on. Each picture will contain all these n colors. Adding the j-th color to the i-th picture takes the j-th painter tij units of time.

Order is important everywhere, so the painters' work is ordered by the following rules:

  • Each picture is first painted by the first painter, then by the second one, and so on. That is, after the j-th painter finishes working on the picture, it must go to the (j + 1)-th painter (if j < n);
  • each painter works on the pictures in some order: first, he paints the first picture, then he paints the second picture and so on;
  • each painter can simultaneously work on at most one picture. However, the painters don't need any time to have a rest;
  • as soon as the j-th painter finishes his part of working on the picture, the picture immediately becomes available to the next painter.

Given that the painters start working at time 0, find for each picture the time when it is ready for sale.

Input

The first line of the input contains integers m, n (1 ≤ m ≤ 50000, 1 ≤ n ≤ 5), where m is the number of pictures and n is the number of painters. Then follow the descriptions of the pictures, one per line. Each line contains n integers ti1, ti2, ..., tin (1 ≤ tij ≤ 1000), where tijis the time the j-th painter needs to work on the i-th picture.

Output

Print the sequence of m integers r1, r2, ..., rm, where ri is the moment when the n-th painter stopped working on the i-th picture.

Sample test(s)
input
5 112345
output
1 3 6 10 15 
input
4 22 53 15 310 1
output
7 8 13 21 
#include <iostream>using namespace std;int m, n, i, j;int k;int recordtable[55000];int intable[8][55000];int main(){   cin >> m >> n;    for(i = 1; i <= m; i++)    for(j = 1; j <= n; j++)               cin >> intable[j][i];  for(i = 1; i <= n; i++){      for(j = 1; j <= m; j++){              if(recordtable[j - 1 ]  >= recordtable[j]){                        recordtable[j] = recordtable[j -1] + intable[i][j];              }else{                        recordtable[j] = recordtable[j] + intable[i][j];              }       }  }   for(i = 1; i < m; i++)      cout << recordtable[i] << " ";   cout << recordtable[i] << "\n"; return 0;}

解析:

1.dp 问题, 计算 painter i, picture j完成的截止时间作为子问题

2.内存使用上注意 二维数组大的数据为列可以提高速度 (内存是以页为单位存取)

0 0
原创粉丝点击