답안 #947588

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
947588 2024-03-16T13:57:01 Z dilanyan Red-blue table (IZhO19_stones) C++17
0 / 100
22 ms 1516 KB
//-------------dilanyan------------\\ 
 
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
 
//------------------KarginDefines--------------------\\ 
 
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set
#define Kargin ios_base::sync_with_stdio(false);cin.tie(NULL);
#define Usaco freopen(".in", "r", stdin); freopen(".out", "w", stdout);
 
 
//-------------------KarginConstants------------------\\ 
 
const ll mod = 1000000007;
const ll inf = 2e9;
 
//-------------------KarginCode------------------------\\ 
 
const int N = 1005;

char a[N][N], ans[N][N];
int cnt = 0;
int dx[4] = { 1,-1,0,0 };
int dy[4] = { 0,0,1,-1 };

int n, m;
int A = 0, B = 0;

void dfs(int sx, int sy,char c) {
    a[sx][sy] = c;
    cnt++;
    for (int i = 0;i < 4;i++) {
        int x = sx + dx[i], y = sy + dy[i];
        if (x >= 1 && x <= n && y >= 1 && y <= m) {
            if (a[x][y] == '0') {
                dfs(x, y, '+');
                dfs(x, y, '-');
            }
        }
    }
    if (cnt == n * m) {
        int ax = 0, bx = 0;
        for (int i = 1;i <= n;i++) {
            int r = 0, b = 0;
            for (int j = 1;j <= m;j++) {
                if (a[i][j] == '+') r++;
                else b++;
            }
            if (r > b) ax++;
        }
        for (int i = 1;i <= m;i++) {
            int r = 0, b = 0;
            for (int j = 1;j <= n;j++) {
                if (a[j][i] == '+') r++;
                else b++;
            }
            if (b > r) bx++;
        }
        if (ax + bx > A + B) {
            A = ax, B = bx;
            for (int i = 1;i <= n;i++) {
                for (int j = 1;j <= m;j++) {
                    ans[i][j] = a[i][j];
                }
            }
        }
    }
    a[sx][sy] = '0';
    cnt--;
}

void KarginSolve() {
    cin >> n >> m;

    if (n < m) {
        if (m & 1) {
            for (int i = 1;i <= m / 2 + 1;i++) ans[1][i] = '+';
            for (int i = m / 2 + 2;i <= m;i++) ans[1][i] = '-';
            for (int i = 1;i <= m / 2;i++) ans[2][i] = '-';
            for (int i = m / 2 + 1;i <= m;i++) ans[2][i] = '+';
            for (int i = 1;i <= m / 2;i++) ans[3][i] = '+';
            ans[3][m / 2 + 1] = '-', ans[3][m / 2 + 2] = '+';
            for (int i = m / 2 + 3;i <= m;i++) ans[3][i] = '-';
            for (int i = 4;i <= n;i++) {
                for (int j = 1;j <= m;j++) {
                    ans[i][j] = '-';
                }
            }
        }
        else {
            for (int i = 1;i <= m / 2 + 1;i++) ans[1][i] = '+';
            for (int i = m / 2 + 2;i <= m;i++) ans[1][i] = '-';
            for (int i = 1;i < m / 2;i++) ans[2][i] = '-';
            for (int i = m / 2;i <= m;i++) ans[2][i] = '+';
            for (int i = 1;i < m / 2;i++) ans[3][i] = '+';
            ans[3][m / 2] = '-', ans[3][m / 2 + 1] = '-';
            ans[3][m / 2 + 2] = '+', ans[3][m / 2 + 3] = '+';
            for (int i = m / 2 + 4;i <= m;i++) ans[3][i] = '-';
            for (int i = 4;i <= n;i++) {
                for (int j = 1;j <= m;j++) {
                    ans[i][j] = '-';
                }
            }
        }
        cout << m + 3 << '\n';
        for (int i = 1;i <= n;i++) {
            for (int j = 1;j <= m;j++) {
                cout << ans[i][j];
            }
            cout << '\n';
        }
    }
    else {
        if (n & 1) {
            for (int i = 1;i <= n / 2 + 1;i++) ans[i][1] = '-';
            for (int i = n / 2 + 2;i <= n;i++)ans[i][1] = '+';
            for (int i = 1;i <= n / 2;i++) ans[i][2] = '+';
            for (int i = n / 2 + 1;i <= n;i++) ans[i][2] = '-';
            for (int i = 1;i <= n / 2;i++) ans[i][3] = '-';
            ans[n / 2 + 1][3] = '+', ans[n / 2 + 2][3] = '-';
            for (int i = n / 2 + 3;i <= n;i++) ans[i][3] = '+';
            for (int i = 4;i <= m;i++) {
                for (int j = 1;j <= n;j++) {
                    ans[j][i] = '+';
                }
            }
        }
        else {
            for (int i = 1;i <= n / 2 + 1;i++) ans[i][1] = '-';
            for (int i = n / 2 + 2;i <= n;i++)ans[i][1] = '+';
            for (int i = 1;i < n / 2;i++) ans[i][2] = '+';
            for (int i = n / 2;i <= n;i++) ans[i][2] = '-';
            for (int i = 1;i < n / 2;i++) ans[i][3] = '-';
            ans[n / 2][3] = '+', ans[n / 2 + 1][3] = '+';
            ans[n / 2 + 2][3] = '-', ans[n / 2 + 3][3] = '-';
            for (int i = n / 2 + 4;i <= n;i++) ans[i][3] = '+';
            for (int i = 4;i <= m;i++) {
                for (int j = 1;j <= n;j++) {
                    ans[j][i] = '+';
                }
            }
        }
        cout << n + 3 << '\n';
        for (int i = 1;i <= n;i++) {
            for (int j = 1;j <= m;j++) {
                cout << ans[i][j];
            }
            cout << '\n';
        }
    }
}

int main() {
    //Usaco
    Kargin;
    int test = 1;
    cin >> test;
    while (test--) {
        KarginSolve();
    }
    return 0;
}

Compilation message

stones.cpp:1:1: warning: multi-line comment [-Wcomment]
    1 | //-------------dilanyan------------\\
      | ^
stones.cpp:8:1: warning: multi-line comment [-Wcomment]
    8 | //------------------KarginDefines--------------------\\
      | ^
stones.cpp:22:1: warning: multi-line comment [-Wcomment]
   22 | //-------------------KarginConstants------------------\\
      | ^
stones.cpp:27:1: warning: multi-line comment [-Wcomment]
   27 | //-------------------KarginCode------------------------\\
      | ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB in the table A+B is not equal to 48
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 1368 KB Wrong answer in test 97 21: 100 < 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 22 ms 1516 KB Wrong answer in test 24 24: 27 < 44
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 6
2 Halted 0 ms 0 KB -