zoukankan      html  css  js  c++  java
  • Codeforces Round #322 (Div. 2) D. Three Logos 模拟

                                                      D. Three Logos

    Three companies decided to order a billboard with pictures of their logos. A billboard is a big square board. A logo of each company is a rectangle of a non-zero area.

    Advertisers will put up the ad only if it is possible to place all three logos on the billboard so that they do not overlap and the billboard has no empty space left. When you put a logo on the billboard, you should rotate it so that the sides were parallel to the sides of the billboard.

    Your task is to determine if it is possible to put the logos of all the three companies on some square billboard without breaking any of the described rules.

    Input

    The first line of the input contains six positive integers x1, y1, x2, y2, x3, y3 (1 ≤ x1, y1, x2, y2, x3, y3 ≤ 100), where xi and yi determine the length and width of the logo of the i-th company respectively.

    Output

    If it is impossible to place all the three logos on a square shield, print a single integer "-1" (without the quotes).

    If it is possible, print in the first line the length of a side of square n, where you can place all the three logos. Each of the next n lines should contain n uppercase English letters "A", "B" or "C". The sets of the same letters should form solid rectangles, provided that:

    • the sizes of the rectangle composed from letters "A" should be equal to the sizes of the logo of the first company,
    • the sizes of the rectangle composed from letters "B" should be equal to the sizes of the logo of the second company,
    • the sizes of the rectangle composed from letters "C" should be equal to the sizes of the logo of the third company,

    Note that the logos of the companies can be rotated for printing on the billboard. The billboard mustn't have any empty space. If a square billboard can be filled with the logos in multiple ways, you are allowed to print any of them.

    See the samples to better understand the statement.

    Sample test(s)
    input
    5 1 2 5 5 2
    output
    5
    AAAAA
    BBBBB
    BBBBB
    CCCCC
    CCCCC
    input
    4 4 2 6 4 2
    output
    6
    BBBBBB
    BBBBBB
    AAAACC
    AAAACC
    AAAACC
    AAAACC



    ///1085422276
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<queue>
    #include<cmath>
    #include<map>
    #include<bitset>
    #include<set>
    #include<vector>
    using namespace std ;
    typedef long long ll;
    #define mem(a) memset(a,0,sizeof(a))
    #define meminf(a) memset(a,127,sizeof(a));
    #define TS printf("111111
    ");
    #define FOR(i,a,b) for( int i=a;i<=b;i++)
    #define FORJ(i,a,b) for(int i=a;i>=b;i--)
    #define READ(a,b,c) scanf("%d%d%d",&a,&b,&c)
    #define mod 1000000007
    #define inf 100000
    inline ll read()
    {
        ll x=0,f=1;
        char ch=getchar();
        while(ch<'0'||ch>'9')
        {
            if(ch=='-')f=-1;
            ch=getchar();
        }
        while(ch>='0'&&ch<='9')
        {
            x=x*10+ch-'0';
            ch=getchar();
        }
        return x*f;
    }
    //****************************************
    
    int main()
    {
    
        int x1=read(),y1=read(),x2=read(),y2=read(),x3=read(),y3=read();
        if(x1<y1)swap(x1,y1);
        if(x2<y2)swap(x2,y2);
        if(x3<y3)swap(x3,y3);
        int L=max(x1,max(x2,x3));
        if(L*L!=x1*y1+x2*y2+x3*y3){cout<<-1<<endl;return 0;}
        if(L==x1&&L==x2&&L==x3){
            cout<<L<<endl;
            FOR(i,1,y1){FOR(j,1,L)
                   {
                       cout<<"A";
                   }
                   cout<<endl;}
               FOR(i,1,y2){FOR(j,1,L)
                   {
                       cout<<"B";
                   }
                   cout<<endl;}
                      FOR(i,1,y3){FOR(j,1,L)
                   {
                       cout<<"C";
                   }
                   cout<<endl;}
    
        }
        else {
            if(x1==L)
            {
                  if (x2==L-y1)swap(x2,y2);if(x3==L-y1)swap(x3,y3);
                  if(x2+x3!=L||y1+y2!=L||y2!=y3){
                    cout<<-1<<endl;return 0;
                  }
                  cout<<L<<endl;
                  FOR(i,1,L-y1){
                      FOR(j,1,x2)cout<<"B";
                      FOR(j,1,x3)cout<<"C";
                      cout<<endl;
    
                  }
                  FOR(i,1,y1){FOR(j,1,L){
                    cout<<"A";
                  }cout<<endl;}
            }
            else  if(x2==L)
            {
                  if (x1==L-y2)swap(x1,y1);if (x3==L-y2)swap(x3,y3);
                  if(x1+x3!=L||y2+y3!=L||y1!=y3){
                    cout<<-1<<endl;return 0;
                  }
                  cout<<L<<endl;
                  FOR(i,1,L-y2){
                      FOR(j,1,x1)cout<<"A";
                      FOR(j,1,x3)cout<<"C";
                      cout<<endl;
    
                  }
                  FOR(i,1,y2){FOR(j,1,L){
                    cout<<"B";
                  }cout<<endl;}
            }else  if(x3==L)
            {
                  if (x2==L-y3)swap(x2,y2);if (x1==L-y3)swap(x1,y1);
                  if(x2+x1!=L||y3+y2!=L||y2!=y1){
                    cout<<-1<<endl;return 0;
                  }
                  cout<<L<<endl;
                  FOR(i,1,L-y3){
                      FOR(j,1,x1)cout<<"A";
                      FOR(j,1,x2)cout<<"B";
                      cout<<endl;
    
                  }
                  FOR(i,1,y3){FOR(j,1,L){
                    cout<<"C";
                  }cout<<endl;}
            }
        }
        return 0;
    }
    模拟
  • 相关阅读:
    我们的路该如何走?-序言
    [转贴]给想立志入行网络或已经初入行的朋友的建议(三)
    [转贴]给想立志入行网络或已经初入行的朋友的建议(二)
    为应用程序池defaultAppPool提供服务的进程在于world wide web publishing服务通信时遇到致命错误 进程id为1356. 数据字段包含错误号
    this.get_element .style为空或不是对象
    将linq查询转换为DataTable对象——学习笔记
    ASP.NET 未被授权访问所请求的资源。请考虑授予 ASP.NET 请求标识访问此资源的权限。
    常用改变选中行颜色
    DataTable写入Excel中 用Excel标准格式
    导出Excel出错:检索 COM 类工厂中 CLSID 为 {0002450000000000C000000000000046} 的组件失败
  • 原文地址:https://www.cnblogs.com/zxhl/p/4850560.html
Copyright © 2011-2022 走看看