博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF-63D - Dividing Island(水题)
阅读量:5118 次
发布时间:2019-06-13

本文共 3383 字,大约阅读时间需要 11 分钟。

D - Dividing Island
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
     

Description

A revolution took place on the Buka Island. New government replaced the old one. The new government includes n parties and each of them is entitled to some part of the island according to their contribution to the revolution. However, they can't divide the island.

The island can be conventionally represented as two rectangles a × b and c × d unit squares in size correspondingly. The rectangles are located close to each other. At that, one of the sides with the length of a and one of the sides with the length of c lie on one line. You can see this in more details on the picture.

The i-th party is entitled to a part of the island equal to xi unit squares. Every such part should fully cover several squares of the island (it is not allowed to cover the squares partially) and be a connected figure. A "connected figure" presupposes that from any square of this party one can move to any other square of the same party moving through edge-adjacent squares also belonging to that party.

Your task is to divide the island between parties.

Input

The first line contains 5 space-separated integers — abcd and n (1 ≤ a, b, c, d ≤ 50b ≠ d1 ≤ n ≤ 26). The second line contains n space-separated numbers. The i-th of them is equal to number xi (1 ≤ xi ≤ a × b + c × d). It is guaranteed that .

Output

If dividing the island between parties in the required manner is impossible, print "NO" (without the quotes). Otherwise, print "YES" (also without the quotes) and, starting from the next line, print max(b, d) lines each containing a + c characters. To mark what square should belong to what party, use lowercase Latin letters. For the party that is first in order in the input data, use "a", for the second one use "b" and so on. Use "." for the squares that belong to the sea. The first symbol of the second line  of the output data should correspond to the square that belongs to the rectangle a × b.The last symbol of the second line should correspond to the square that belongs to the rectangle c × d.

If there are several solutions output any.

Sample Input

Input
3 4 2 2 35 8 3
Output
YESaaabbaabbbcbb..ccb..
Input
3 2 1 4 41 2 3 4
Output
YESabbdcccd...d...d

思路:本题一定有解,走S形路线,在ab与cd交汇段一定要是上走的就行了。

失误:本题不难,很水,一看到这题就想到方法了,可是这题有个蛋疼的地方。The first symbol of the second line of the output data should correspond to the square that belongs to the rectangle a × b. The last symbol of the second line should correspond to the square that belongs to the rectangle c × d.

这个难道是废话,不是说第一个字符要有部分属于ab,最后的字符要有部分属于cd,其实样例给的就不是,就算是,用S型路线走也肯定符合条件。我原先居然先去初始化前后,我承认我当时真2了。代码也从原先的2000+缩减到1000多一点,67行代码。一遍过了。

#include
#include
#include
using namespace std;const int mm=110;int a,b,c,d,n;int f[mm];int g[mm][mm];void chu(){ memset(g,0,sizeof(g)); if(b
>a>>b>>c>>d>>n) { int sum=0; for(int i=0;i
>f[i]; sum+=f[i]; } c+=a; chu();///初始.路径 bool flag=0; int z;int zz=0; if(b
=1;--k) if(f[i]&&!g[k][j]) --f[i],g[k][j]=i+1; } else { for(int k=1;k<=z;++k) if(f[i]&&!g[k][j]) --f[i],g[k][j]=i+1; } } } cout<<"YES\n"; for(int i=1;i<=z;++i) {for(int j=1;j<=c;j++) if(g[i][j]==999) cout<<'.'; else cout<

转载于:https://www.cnblogs.com/nealgavin/archive/2013/03/29/3205948.html

你可能感兴趣的文章
Zookeeper选举算法原理
查看>>
嵌入式成长轨迹52 【Zigbee项目】【CC2430基础实验】【在PC用串口收数并发数】...
查看>>
函数随笔
查看>>
哈尔滨工程大学ACM预热赛(A,C,H,I)
查看>>
3月29日AM
查看>>
利用IP地址查询接口来查询IP归属地
查看>>
Dijkstra算法——最短路径(转)
查看>>
HTML元素定义 ID,Class,Style的优先级
查看>>
【实数二分/前缀和维护】Best Cow Fences
查看>>
构造者模式
查看>>
[转][C#]Combobox 行高
查看>>
什么是IDS/IPS?
查看>>
JavaScript:学习笔记(3)——正则表达式的应用
查看>>
LeetCode:旋转链表【61】
查看>>
浮点数转化为字符串
查看>>
ssRs父子维度
查看>>
关押罪犯
查看>>
像房源上下架链路比较长的需求怎么测试?测试的重点和难点?
查看>>
http和https的区别
查看>>
接口自动化之数据依赖
查看>>