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部分 然后再计算

  • 相关阅读:
    September 17th 2016 Week 38th Saturday
    【2016-09-16】UbuntuServer14.04或更高版本安装问题记录
    September 16th 2016 Week 38th Friday
    September 11th 2016 Week 38th Sunday
    September 12th 2016 Week 38th Monday
    September 10th 2016 Week 37th Saturday
    September 9th 2016 Week 37th Friday
    c++暂停
    八皇后问题
    ( 转转)Android初级开发第九讲--Intent最全用法(打开文件跳转页面等)
  • 原文地址:https://www.cnblogs.com/hao-tian/p/8978044.html
Copyright © 2011-2022 走看看