zoukankan      html  css  js  c++  java
  • CodeForces2B The least round way

    There is a square matrix n × n, consisting of non-negative integer numbers. You should find such a way on it that

    • starts in the upper left cell of the matrix;
    • each following cell is to the right or down from the current cell;
    • the way ends in the bottom right cell.

    Moreover, if we multiply together all the numbers along the way, the result should be the least "round". In other words, it should end in the least possible number of zeros.

    Input

    The first line contains an integer number n (2 ≤ n ≤ 1000), n is the size of the matrix. Then follow n lines containing the matrix elements (non-negative integer numbers not exceeding 109).

    Output

    In the first line print the least number of trailing zeros. In the second line print the correspondent way itself.

    Example

    Input
    3
    1 2 3
    4 5 6
    7 8 9
    Output
    0
    DDRR

    给出n,再给出一个n*n的矩阵,你从左上角出发到右下角,只能向右和向下移动,将你途中遇到所有数字相乘,使得到的乘积数字末尾的0的数量最少,因此,我们只需要对数列中的
    0,2,5进行分析即可。
    tip1.出现0时。可以使答案强制为1,在答案大于1时,应穿过0所在位置。
    tip2.每一对2和5都会使答案的0增加一个,所以只要使2的数量或者5的数量最少即可。
    对于tip1,只要记录任意一个0的位置,并判断是否最优解。
    对于tip2,从终点开始逆推a[i][j]+=min(a[i-1][j],a[i][j-1]),得出可以解决所有问题的子问题。
    代码及注释如下:
    #include <bits/stdc++.h>
    #define inf 0x3f3f3f3f
    using namespace std;
    int f[1001][1001][2],n,x,k;
    char g[1001][1001][2];
    
    void move(int x,int y)
    {
        if(x==1&&y==1)
        return ;
        if(g[x][y][k])
        move(x-1,y),putchar('D');
        else
        move(x,y-1),putchar('R');
    }
    
    int main()
    {
        scanf("%d",&n);
        memset(f,0,sizeof(f));
        for(int i=2;i<=n;++i)
            f[0][i][0]=f[0][i][1]=f[i][0][0]=f[i][0][1]=inf;    //定义边界 
        for(int i=1;i<=n;++i)
        {
            for(int j=1;j<=n;++j)
            {
                scanf("%d",&k);
                if(!k)
                    x=i;        //x记录0出现地址 
                else
                {
                    while(k%2==0) ++f[i][j][0],k/=2;    //2的倍数 
                    while(k%5==0) ++f[i][j][1],k/=5;    //5的倍数 
                }
                for(int k=0;k<2;k++)
                {
                    if(g[i][j][k]=f[i-1][j][k]<f[i][j-1][k])    //上方和左方分别比较2和5的数量 ,选择更少的 
                        f[i][j][k]+=f[i-1][j][k];
                    else
                        f[i][j][k]+=f[i][j-1][k];
                }
            }
        }
        k=f[n][n][1]<f[n][n][0];    //2和5哪个更少,k=0代表2更少并选择2,k=1代表5更少并选择5 
        if(x&&f[n][n][k]>1)
        {
            cout<<"1
    ";        //选择通过0的情况 
            for(int i=2;i<=x;i++)
            putchar('D');
            for(int i=2;i<=n;i++)
            putchar('R');
            for(int i=x+1;i<=n;i++)
            putchar('D');
            puts("");
        }
        else
        {
            printf("%d
    ",f[n][n][k]),        //未经过0时,2和5的最小值决定0的数量 
            move(n,n);
            puts("");
        }
    }
  • 相关阅读:
    别以为真懂Openstack: 虚拟机创建的50个步骤和100个知识点(5)
    Docker容器(三)——容器端口映射以及访问后台运行的容器实例
    Docker容器(二)——镜像制作
    Docker容器(一)——Docker的介绍与部署
    Linux的桌面虚拟化技术KVM(五)——virsh常用命令
    Linux的桌面虚拟化技术KVM(四)——虚拟机镜像格式对比与转换
    Linux的桌面虚拟化技术KVM(三)——KVM虚拟机克隆和快照
    Linux的桌面虚拟化技术KVM(一)——新建KVM虚拟机
    Linux的桌面虚拟化技术KVM(二)——远程桌面管理
    搭建jumpserver堡垒机
  • 原文地址:https://www.cnblogs.com/qq936584671/p/6828089.html
Copyright © 2011-2022 走看看