Codeforces 544B - Sea and Islands(構造)

B. Sea and Islands
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Examples
input
5 2
output
YES
SSSSS
LLLLL
SSSSS
LLLLL
SSSSS
input
5 25
output
NO

題意:
給出地圖大小和連通塊的個數,要求構造出這樣的地圖.

解題思路:
01交互放置,那麼0就是連通塊的個數,把0填上則連通塊個數減一.

AC代碼:

#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e2+5;
bool a[maxn][maxn];
int main()
{
    int n, k;
    cin >> n >> k;
    int cnt = 0;
    for(int i = 1; i <= n; i++)
        for(int j = 1; j <= n; j++)
            a[i][j] = (i + j) & 1, cnt += !a[i][j];
    if(cnt < k) cout << "NO";
    else
    {
        cout << "YES" << endl;
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= n; j++)
                if(cnt > k && !a[i][j])  a[i][j] = 1, cnt--;
            if(cnt == k)    break;
        }
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= n; j++)
                printf("%c",a[i][j] ? 'S':'L');
            cout << endl;
        }
    }
    return 0;
}
發佈了172 篇原創文章 · 獲贊 7 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章