码迷,mamicode.com
首页 > 其他好文 > 详细

CF 873C Strange Game On Matrix(贪心)

时间:2017-10-25 21:46:51      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:name   模拟   start   contain   count   any   course   pos   star   

题目:

Strange Game On Matrix

Ivan is playing a strange game.

He has a matrix a with n rows and m columns. Each element of the matrix is equal to either 0 or 1. Rows and columns are 1-indexed. Ivan can replace any number of ones in this matrix with zeroes. After that, his score in the game will be calculated as follows:

  1. Initially Ivan‘s score is 0;
  2. In each column, Ivan will find the topmost 1 (that is, if the current column is j, then he will find minimum i such that ai, j = 1). If there are no 1‘s in the column, this column is skipped;
  3. Ivan will look at the next min(k, n - i + 1) elements in this column (starting from the element he found) and count the number of 1‘s among these elements. This number will be added to his score.

Of course, Ivan wants to maximize his score in this strange game. Also he doesn‘t want to change many elements, so he will replace the minimum possible number of ones with zeroes. Help him to determine the maximum possible score he can get and the minimum possible number of replacements required to achieve that score.

Input

The first line contains three integer numbers nm and k (1 ≤ k ≤ n ≤ 100, 1 ≤ m ≤ 100).

Then n lines follow, i-th of them contains m integer numbers — the elements of i-th row of matrix a. Each number is either 0 or 1.

Output

Print two numbers: the maximum possible score Ivan can get and the minimum number of replacements required to get this score.

Examples
input
4 3 2
0 1 0
1 0 1
0 1 0
1 1 1
output
4 1
input
3 2 1
1 0
0 1
0 0
output
2 0
Note

In the first example Ivan will replace the element a1, 2.

 题解:先求出每列的前缀和,然后每列模拟题意去求出能够得到的最大分数,并记录前面消掉多少1。最后相加。

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 
 5 const int N=111;
 6 int M[N][N];
 7 int sum[N][N];
 8 
 9 int main(){
10     int n,m,k,t,res1=0,res2=0;
11     cin>>n>>m>>k;
12     for(int i=1;i<=n;i++)
13     for(int j=1;j<=m;j++)
14     cin>>M[i][j],sum[i][j]=M[i][j];
15 
16     for(int i=1;i<=m;i++)
17     for(int j=1;j<=n;j++)
18     sum[j][i]+=sum[j-1][i];
19 
20     for(int i=1;i<=m;i++){ //column
21         int cnt=-1,ans=0,tmp=0;
22         for(int j=1;j<=n;j++){ //row
23             if(M[j][i]==1){
24                 t=min(k,n-j+1);
25                 cnt++;
26                 int tt=sum[j+t-1][i]-sum[j][i]+1;
27                 if(tt>tmp) tmp=tt,ans=cnt;
28             }
29         }
30         res1+=tmp;res2+=ans;
31     }
32 
33     cout<<res1<<" "<<res2<<endl;
34 
35     return 0;
36 }

 

 

CF 873C Strange Game On Matrix(贪心)

标签:name   模拟   start   contain   count   any   course   pos   star   

原文地址:http://www.cnblogs.com/Leonard-/p/7731816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!