Problem D. Fashion Show

Problem

You are about to host a fashion show to show off three new styles of
clothing. The show will be held on a stage which is in the most
fashionable of all shapes: an N-by-N grid of cells.

Each cell in the grid can be empty (which we represent with a .
character) or can contain one fashion model. The models come in three
types, depending on the clothing style they are wearing: +, x, and the
super-trendy o. A cell with a + or x model in it adds 1 style point to
the show. A cell with an o model in it adds 2 style points. Empty
cells add no style points.

To achieve the maximum artistic effect, there are rules on how models
can be placed relative to each other.

Whenever any two models share a row or column, at least one of the two
must be a +. Whenever any two models share a diagonal of the grid, at
least one of the two must be an x. Formally, a model located in row i0
and column j0 and a model located in row i1 and column j1 share a row
if and only if i0 = i1, they share a column if and only if j0 = j1,
and they share a diagonal if and only if i0 + j0 = i1 + j1 or i0 - j0
= i1 - j1.

For example, the following grid is not legal:

… x+o .+. The middle row has a pair of models (x and o) that does
not include a +. The diagonal starting at the + in the bottom row and
running up to the o in the middle row has two models, and neither of
them is an x.

However, the following grid is legal. No row, column, or diagonal
violates the rules.

+.x
+x+ o.. Your artistic advisor has already placed M models in certain cells, following these rules. You are free to place any number
(including zero) of additional models of whichever types you like. You
may not remove existing models, but you may upgrade as many existing +
and x models into o models as you wish, as long as the above rules are
not violated.

Your task is to find a legal way of placing and/or upgrading models
that earns the maximum possible number of style points.

Input

The first line of the input gives the number of test cases, T. T test
cases follow. Each test case begins with one line with two integers N
and M, as described above. Then, M more lines follow; the i-th of
these lines has a +, x, or o character (the type of the model) and two
integers Ri and Ci (the position of the model). The rows of the grid
are numbered 1 through N, from top to bottom. The columns of the grid
are numbered 1 through N, from left to right.

Output

For each test case, first output one line containing Case #x: y z,
where x is the test case number (starting from 1), y is the number of
style points earned in your arrangement, and z is the total number of
models you have added and/or substituted in. Then, for each model that
you have added or substituted in, output exactly one line in exactly
the same format described in the Input section, where the character is
the type of the model that you have added or substituted in. These z
lines can be in any order.

If there are multiple valid answers, you may output any one of them.

Limits

1 ≤ T ≤ 100. 1 ≤ N ≤ 100. 1 ≤ Ci ≤ N, for all i. 0 ≤ M ≤ N2. No two
pre-placed models appear in the same cell. It is guaranteed that the
set of pre-placed models follows the rules. Small dataset

Ri = 1, for all i. (Any models that are pre-placed are in the top row.
Note that you may add/replace models in that row and/or add models in
other rows.) Large dataset

1 ≤ Ri ≤ N, for all i. Sample

Input Output 3 2 0 1 1 o 1 1 3 4
+ 2 3
+ 2 1 x 3 1
+ 2 2

Case #1: 4 3 o 2 2
+ 2 1 x 1 1 Case #2: 2 0 Case #3: 6 2 o 2 3 x 1 2

The sample output displays one set of answers to the sample cases.
Other answers may be possible. Note that the last sample case would
not appear in the Small dataset.

In sample case #1, the grid is 2-by-2 and is initially blank. The
output corresponds to the following grid. (In these explanations, we
will use . to denote a blank cell.)

x.
+o In sample case #2, the only cell is already occupied by an o model, and it is impossible to add a new model or replace the o model.

In sample case #3, the grid looks like this before you place any
models:


+++ x.. The output corresponds to this grid:

.x.
++o x..

很神奇的对了,我用了贪婪的思想,按从外到内的递推来求解

#include<iostream>
#include<vector>

#pragma warning(disable:4996)
using namespace std;
struct resault {
    char _e;
    int _r, _c;
    resault(char e, int r, int c) {
        _e = e;
        _r = r;
        _c = c;
    }
};
void f(int t)
{
    int hang[101] = {};
    int lie[101] = {};
    int zdj[201] = {};
    int ydj[201] = {};
    int N, M;
    cin >> N >> M;
    int grade = 0;
    char e;
    int r, c;
    int all[101][101] = {};
    vector<resault> re;
    while (M--)
    {
        getchar();
        scanf("%c %d %d", &e, &r, &c);
        all[c][r] = e;
        switch (e)
        {
        case '+':
            zdj[c - r + N - 1] = 1;
            ydj[c + r - 1] = 1;
            break;
        case 'x':
            hang[r] = 1;
            lie[c] = 1;
            break;
        case 'o':
            zdj[c - r + N - 1] = 1;
            ydj[c + r - 1] = 1;
            hang[r] = 1;
            lie[c] = 1;
            break;
        }
    }
    int visited[101][101] = {};
    int i = 1, j = 1;
    int sum = N*N;
    int flag = 0;
    visited[i][j] = 1;
    switch (all[j][i])
    {
    case 'o':grade += 2;
        break;
    case '+':
        if (!hang[i] && !lie[j])
        {
            grade += 2;
            hang[i] = 1;
            lie[j] = 1;
            re.push_back(resault('o', i, j));
        }
        else
            grade += 1;
        break;
    case 'x':
        if (!zdj[j - i + N - 1] && !ydj[j + i - 1])
        {
            grade += 2;
            zdj[j - i + N - 1] = 1;
            ydj[j + i - 1] = 1;
            re.push_back(resault('o', i, j));
        }
        else
            grade += 1;
    default:

        if (!zdj[j - i + N - 1] && !ydj[j + i - 1] && !hang[i] && !lie[j])
        {
            grade += 2;
            zdj[j - i + N - 1] = 1;
            ydj[j + i - 1] = 1;
            hang[i] = 1;
            lie[j] = 1;
            re.push_back(resault('o', i, j));
        }
        else if (!zdj[j - i + N - 1] && !ydj[j + i - 1])
        {
            grade += 1;
            zdj[j - i + N - 1] = 1;
            ydj[j + i - 1] = 1;
            re.push_back(resault('+', i, j));
        }
        else if (!hang[i] && !lie[j])
        {
            grade += 1;
            hang[i] = 1;
            lie[j] = 1;
            re.push_back(resault('x', i, j));
        }
        break;
    }
    --sum;
    while (sum)
    {
        if (flag == 0 && (i + 1 > N || visited[i + 1][j] == 1 )) {
            flag = 1; continue;
        }
        if (flag == 1 && (j + 1 > N||visited[i][j + 1] == 1 )) {
            flag = 2; continue;
        }
        if (flag == 2 && (i - 1 < 1 || visited[i - 1][j] == 1)) {
            flag = 3; continue;
        }
        if (flag == 3 && (j - 1 < 1||visited[i][j - 1] == 1  )) {
            flag = 0; continue;
        }
        switch (flag)
        {
        case 0: ++i;
            break;
        case 1:++j;
            break;
        case 2:--i;
            break;
        case 3:--j;
            break;
        }
        visited[i][j] = 1;
        switch (all[j][i])
        {
        case 'o':grade += 2;
            break;
        case '+':
            if (!hang[i] && !lie[j])
            {
                grade += 2;
                hang[i] = 1;
                lie[j] = 1;
                re.push_back(resault('o', i, j));
            }
            else
                grade += 1;
            break;
        case 'x':
            if (!zdj[j - i + N - 1] && !ydj[j + i - 1])
            {
                grade += 2;
                zdj[j - i + N - 1] = 1;
                ydj[j + i - 1] = 1;
                re.push_back(resault('o', i, j));
            }
            else
                grade += 1;
        default:

            if (!zdj[j - i + N - 1] && !ydj[j + i - 1] && !hang[i] && !lie[j])
            {
                grade += 2;
                zdj[j - i + N - 1] = 1;
                ydj[j + i - 1] = 1;
                hang[i] = 1;
                lie[j] = 1;
                re.push_back(resault('o', i, j));
            }
            else if (!zdj[j - i + N - 1] && !ydj[j + i - 1])
            {
                grade += 1;
                zdj[j - i + N - 1] = 1;
                ydj[j + i - 1] = 1;
                re.push_back(resault('+', i, j));
            }
            else if (!hang[i] && !lie[j])
            {
                grade += 1;
                hang[i] = 1;
                lie[j] = 1;
                re.push_back(resault('x', i, j));
            }
            break;
        }
        --sum;
    }
    printf("Case #%d: %d %d\n", t,grade,re.size());
    for (auto x : re)
        printf("%c %d %d\n", x._e, x._r, x._c);

}
int main()
{

    freopen("file.txt", "w", stdout);
    int T;

    cin >> T;
    for (int t = 1; t <= T; ++t)
    {
        f(t);
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值