Submission #990434

# Submission time Handle Problem Language Result Execution time Memory
990434 2024-05-30T11:53:48 Z tch1cherin Red-blue table (IZhO19_stones) C++17
0 / 100
17 ms 1372 KB
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int T;
  cin >> T;
  while (T--) {
    int N, M;
    cin >> N >> M;
    int H = N - 2 + N % 2, W = M - 2 + M % 2;
    if (N == 4 && M == 4) {
      cout << "5\n+++-\n+++-\n+++-\n+++-\n"; 
    } else if (H + W < max(N, M) + (min(N, M) + 1) / 2) {
      if (N > M) {
        if (M <= 2) {
          cout << N << "\n";
          for (int i = 0; i < N; i++) {
            cout << string(M, '+') << "\n";
          }
        } else if (M <= 4) {
          cout << N + 1 << "\n";
          for (int i = 0; i < N; i++) {
            cout << string(M - 1, '+') << "-\n";
          }
        } else {
          cout << N + (M + 1) / 2 << "\n";
          vector<string> s(N, string(M, 0));
          for (int i = 0; i < N; i++) {
            for (int j = 0; j < M / 2; j++) {
              s[i][j] = '+';
            }
            for (int j = M / 2; j < M; j++) {
              s[i][j] = (j - M / 2) % ((M + 1) / 2) == i % ((M + 1) / 2) ? '+' : '-';
            }
          }
          for (int i = 0; i < N; i++) {
            cout << s[i] << "\n";
          }
        }
      } else {
        if (N <= 2) {
          cout << M << "\n";
          for (int i = 0; i < N; i++) {
            cout << string(M, '-') << "\n";
          }
        } else if (N <= 4) {
          cout << M + 1 << "\n";
          for (int i = 0; i < N; i++) {
            cout << (i < N - 1 ? string(M, '+') : string(M, '-')) << "\n";
          }
        } else {
          cout << (N + 1) / 2 + M << "\n";
          vector<string> s(N, string(M, 0));
          for (int j = 0; j < M; j++) {
            for (int i = 0; i < N / 2; i++) {
              s[i][j] = '-';
            }
            for (int i = N / 2; i < N; i++) {
              s[i][j] = (i - N / 2) % ((N + 1) / 2) == j % ((N + 1) / 2) ? '-' : '+';
            }
          }
          for (int i = 0; i < N; i++) {
            cout << s[i] << "\n";
          }
        }
      }
    } else {
      cout << H + W << "\n";
      for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
          if (i < H && j < W) {
            cout << "+-"[(i + j) % 2];
          } else if (i < H) {
            cout << "+";
          } else {
            cout << "-";
          }
        }
        cout << "\n";
      }
    }
  }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB in the table A+B is not equal to 46
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 1372 KB in the table A+B is not equal to 44
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 1368 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -