This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <set>
#include <map>
#include <algorithm>
using namespace std;
#define sz(s) (int)(s.size())
#define eb emplace_back
#define all(x) x.begin(), x.end()
const int N = 2e6;
const int NN = 4e3;
char a[NN][NN];
int c[N], r[N];
void solve(int n, int m) {
	if (n <= m) {
		for (int i = 1; i <= n; ++ i) {
			r[i] = 0;
			for (int j = 1; j <= m; ++ j) {
				a[i][j] = '-';
				c[j] = 0;
			}
		}
		int need = (m / 2 + 1);
		int mx = n - (n / 2 + 1);
		int pos = 1;
		int ans = 0;
		for (int i = 1; i <= n; ++ i) {
			int cnt = 0;
			int rev = pos++;
			int res = 0;
			while(cnt <= m and r[i] < need) {
				++cnt;
				if (res == need)
					break;
				if (c[rev] < mx) {
					a[i][rev] = '+';
					c[rev]++;
					r[i]++;
					++res;
				}
				++rev;
				if (rev > m)
					rev = 1;
			}
			if (r[i] == need)
				++ans;
			if (cnt == m)
				if (res != need)
					break;
		}
		
		cout << m + ans << '\n';
		for (int i = 1; i <= n; ++ i) {
			for (int j = 1; j <= m; ++ j)
				cout << a[i][j];
			cout << '\n';
		}
		return;
	}
	else {
		for (int j = 1; j <= m; ++ j){
			c[j] = 0;
			for (int i = 1; i <= n; ++ i){
				r[i] = 0;
				a[i][j] = '+';
			}
		}
		int need = (n / 2 + 1);
		int mx = m - (m / 2 + 1);
		int pos = 1;
		int ans = 0;
		for (int i = 1; i <= m; ++ i) {
			int cnt = 0;
			int rev = pos++;
			int res = 0;
			while(cnt <= n and c[i] < need) {
				++cnt;
				if (res == need)
					break;
				if (r[rev] < mx) {
					a[rev][i] = '-';
					r[rev]++;
					c[i]++;
					++res;
				}
				++rev;
				if (rev > n)
					rev = 1;
			}
			if (c[i] == need)
				++ans;
			if (cnt == n)
				if (res != need)
					break;
		}
		cout << n + ans << '\n';
		for (int i = 1; i <= n; ++ i) {
			for (int j = 1; j <= m; ++ j)
				cout << (a[i][j] != '-' ? '+' : '-');
			cout << '\n';
		}
	}
}
int main () {	
	int t;
	cin >> t;
	while(t--) {
		int n, m;
		cin >> n >> m;
		solve(n, m);
	}
	return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... |