zoukankan      html  css  js  c++  java
  • 问题 J: Frosting on the Cake

    问题 J: Frosting on the Cake

    时间限制: 1 Sec  内存限制: 128 MB
    提交: 159  解决: 56
    [提交][状态][讨论版][命题人:admin]

    题目描述

    Iskander the Baker is decorating a huge cake, covering the rectangular surface of the cake with frosting.For this purpose, he mixes frosting sugar with lemon juice and food coloring, in order to produce three kinds of frosting: yellow, pink, and white. These colors are identified by the numbers 0 for yellow,1 for pink, and 2 for white.
    To obtain a nice pattern, he partitions the cake surface into vertical stripes of width A1, A2, . . . , An entimeters, and horizontal stripes of height B1, B2, . . . , Bn centimeters, for some positive integer n.
    These stripes split the cake surface into n × n rectangles. The intersection of vertical stripe i and horizontal stripe j has color number (i + j) mod 3 for all 1 6 i, j 6 n. To prepare the frosting, Iskander wants to know the total surface in square centimeters to be colored for each of the three colors, and asks for your help.

    输入

    The input consists of the following integers:
    • on the first line: the integer n,
    • on the second line: the values of A1, . . . , An, n integers separated with single spaces,
    • on the third line: the values of B1, . . . , Bn, n integers separated with single spaces.
    Limits
    The input satisfies 3≤n≤100 000 and 1≤A1, . . . , An, B1, . . . , Bn≤10 000.

    输出

    The output should consist of three integers separated with single spaces, representing the total area for each color 0, 1, and 2.

    样例输入

    3
    1 1 1
    1 1 1
    

    样例输出

    3 3 3
    ////////////////////////////////////////////////////////////////////////////////////////
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
     
    int main()
    {
        int a[100005];
        int b[100005];
        int n;
        long long int aa[5]={0};
        long long int bb[5]={0};
        memset(aa,0,sizeof(aa));
        memset(bb,0,sizeof(bb));
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
        }
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&b[i]);
        }
        for(int i=1;i<=n;i++)
        {
            if(i%3==1)
            {
                aa[1]+=a[i];
                bb[1]+=b[i];
            }
            else if(i%3==2)
            {
                aa[2]+=a[i];
                bb[2]+=b[i];
            }
            else if(i%3==0)
            {
                aa[3]+=a[i];
                bb[3]+=b[i];
            }
        }
    //    for(int i=1;i<=3;i++)
    //    {
    //       printf("%lld %lld
    ",aa[i],bb[i]);
    //    }
     
    long long int ans1,ans2,ans3;
        ans3=aa[1]*bb[1]+aa[3]*bb[2]+aa[2]*bb[3];
        ans1=aa[2]*bb[1]+aa[1]*bb[2]+aa[3]*bb[3];
        ans2=aa[3]*bb[1]+aa[2]*bb[2]+aa[1]*bb[3];
        printf("%lld %lld %lld
    ",ans1,ans2,ans3);
    }

    //如果暴力解会超时 所以找规律 把Ai、Bi分为3部分 然后再计算

  • 相关阅读:
    这个开源组织里的项目都是精品
    动态代理大揭秘,带你彻底弄清楚动态代理!
    Python_对excel表格读写-openpyxl、xlrd&xlwt
    PostgreSQL 查看数据库,索引,表,表空间大小
    Mysql日志undo log、redo log、binlog、relay log
    python 高级
    win10 ssh 登录 ubuntu Access denied
    mysql5.7 ubuntu20.04
    pycharm 激活 成功
    Xmind:文件损坏怎么恢复
  • 原文地址:https://www.cnblogs.com/hao-tian/p/8978044.html
Copyright © 2011-2022 走看看