codeforces-544B-Sea and Islands【构造】

来源:互联网 发布:软件测试很难吗 编辑:程序博客网 时间:2024/06/02 03:13

codeforces-544B-Sea and Islands


                    time limit per test1 second     memory limit per test256 megabytes

A map of some object is a rectangular field consisting of n rows and n columns. Each cell is initially occupied by the sea but you can cover some some cells of the map with sand so that exactly k islands appear on the map. We will call a set of sand cells to be island if it is possible to get from each of them to each of them by moving only through sand cells and by moving from a cell only to a side-adjacent cell. The cells are called to be side-adjacent if they share a vertical or horizontal side. It is easy to see that islands do not share cells (otherwise they together form a bigger island).

Find a way to cover some cells with sand so that exactly k islands appear on the n × n map, or determine that no such way exists.

Input
The single line contains two positive integers n, k (1 ≤ n ≤ 100, 0 ≤ k ≤ n2) — the size of the map and the number of islands you should form.

Output
If the answer doesn’t exist, print “NO” (without the quotes) in a single line.

Otherwise, print “YES” in the first line. In the next n lines print the description of the map. Each of the lines of the description must consist only of characters ‘S’ and ‘L’, where ‘S’ is a cell that is occupied by the sea and ‘L’ is the cell covered with sand. The length of each line of the description must equal n.

If there are multiple answers, you may print any of them.

You should not maximize the sizes of islands.

input
5 2
output
YES
SSSSS
LLLLL
SSSSS
LLLLL
SSSSS

input
5 25
output
NO

题目链接:cf-544B

题目大意:构造n*n矩形,使得存在k个L不相连。

题目思路:构造题构造形如:

5 13
LSLSL
SLSLS
LSLSL
SLSLS
LSLSL

以下是代码:

#include <vector>#include <map>#include <set>#include <algorithm>#include <iostream>#include <cstdio>#include <cmath>#include <cstdlib>#include <string>#include <cstring>using namespace std;int main(){    int n,k,ret;    cin >> n >> k;    if (n % 2) ret = (n + 1) / 2 + (n - 1) / 2 * n;    else ret = n * n / 2;    if (k > ret) cout << "NO\n";    else    {        cout << "YES\n";        for (int i = 1; i <= n; i++)        {            for (int j = 1; j <= n; j++)            {                if (i % 2 == j % 2)                {                    if (k)                    {                        cout << "L";                        k--;                    }                    else cout << "S";                }                else cout << "S";            }            cout << "\n";                   }    }     return 0;}
0 0
原创粉丝点击