Codeforces_394C_Dominoes(贪心构造)

C. Dominoes
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

During the break, we decided to relax and play dominoes. Our box with Domino was empty, so we decided to borrow the teacher's dominoes.

The teacher responded instantly at our request. He put nm dominoes on the table as an n × 2m rectangle so that each of the n rows contained mdominoes arranged horizontally. Each half of each domino contained number (0 or 1).

We were taken aback, and the teacher smiled and said: "Consider some arrangement of dominoes in an n × 2m matrix. Let's count for each column of the matrix the sum of numbers in this column. Then among all such sums find the maximum one. Can you rearrange the dominoes in the matrix in such a way that the maximum sum will be minimum possible? Note that it is prohibited to change the orientation of the dominoes, they all need to stay horizontal, nevertheless dominoes are allowed to rotate by 180 degrees. As a reward I will give you all my dominoes".

We got even more taken aback. And while we are wondering what was going on, help us make an optimal matrix of dominoes.

Input

The first line contains integers nm (1 ≤ n, m ≤ 103).

In the next lines there is a description of the teachers' matrix. Each of next n lines contains m dominoes. The description of one domino is two integers (0 or 1), written without a space — the digits on the left and right half of the domino.

Output

Print the resulting matrix of dominoes in the format: n lines, each of them contains m space-separated dominoes.

If there are multiple optimal solutions, print any of them.

Sample test(s)
input
2 3
01 11 00
00 01 11
output
11 11 10
00 00 01
input
4 1
11
10
01
00
output
11
10
01
00
Note

Consider the answer for the first sample. There, the maximum sum among all columns equals 1 (the number of columns is 6, and not 3). Obviously, this maximum can't be less than 1, then such matrix is optimal.

Note that the dominoes can be rotated by 180 degrees.


题型:贪心


题意:

有n*m个骨牌,分别有“11”、“10”、“01”、“00”四种,将这些骨牌重新放置,使得每列的和的最大值尽量小,骨牌可以旋转180度,即“10”可以变为“01”。


分析:
贪心构造,先放“11”,放完了再放“01”,每放一个“01”都检查一下下一行是否还能放,能放则放上“10”,剩下的位置放“00”。


代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;

int n,m;
int a[1010][1010];

int main() {
    while(~scanf("%d%d",&n,&m)) {
        int x;
        int num11,num01,num00;
        num11=num01=num00=0;
        for(int i=0; i<n; i++) {
            for(int j=0; j<m; j++) {
                scanf("%d",&x);
                if(x==11) num11++;
                else if(x==10) num01++;
                else if(x==1) num01++;
                else num00++;
            }
        }
        //1 -> 11,2->01,3->01,4->00
        memset(a,0,sizeof(a));
        for(int i=0;i<n;i++){
            for(int j=0;j<m;j++){
                if(a[i][j]!=0) continue;
                if(num11!=0){
                    a[i][j]=1;
                    num11--;
                }
                else if(num01!=0){
                    a[i][j]=2;
                    num01--;
                    if(n-1>i&&num01!=0){
                        a[i+1][j]=3;
                        num01--;
                    }
                }
            }
        }

        for(int i=0;i<n;i++){
            for(int j=0;j<m-1;j++){
                if(a[i][j]==1) printf("11 ");
                else if(a[i][j]==2) printf("01 ");
                else if(a[i][j]==3) printf("10 ");
                else printf("00 ");
            }
            if(a[i][m-1]==1) printf("11");
            else if(a[i][m-1]==2) printf("01");
            else if(a[i][m-1]==3) printf("10");
            else printf("00");
            printf("\n");
        }

    }
    return 0;
}


Python网络爬虫与推荐算法新闻推荐平台:网络爬虫:通过Python实现新浪新闻的爬取,可爬取新闻页面上的标题、文本、图片、视频链接(保留排版) 推荐算法:权重衰减+标签推荐+区域推荐+热点推荐.zip项目工程资源经过严格测试可直接运行成功且功能正常的情况才上传,可轻松复刻,拿到资料包后可轻松复现出一样的项目,本人系统开发经验充足(全领域),有任何使用问题欢迎随时与我联系,我会及时为您解惑,提供帮助。 【资源内容】:包含完整源码+工程文件+说明(如有)等。答辩评审平均分达到96分,放心下载使用!可轻松复现,设计报告也可借鉴此项目,该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的。 【提供帮助】:有任何使用问题欢迎随时与我联系,我会及时解答解惑,提供帮助 【附带帮助】:若还需要相关开发工具、学习资料等,我会提供帮助,提供资料,鼓励学习进步 【项目价值】:可用在相关项目设计中,皆可应用在项目、毕业设计、课程设计、期末/期中/大作业、工程实训、大创等学科竞赛比赛、初期项目立项、学习/练手等方面,可借鉴此优质项目实现复刻,设计报告也可借鉴此项目,也可基于此项目来扩展开发出更多功能 下载后请首先打开README文件(如有),项目工程可直接复现复刻,如果基础还行,也可在此程序基础上进行修改,以实现其它功能。供开源学习/技术交流/学习参考,勿用于商业用途。质量优质,放心下载使用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值