#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)
for (int j = 1; j <= m; ++ j)
a[i][j] = '-';
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 i = 1; i <= n; ++ i)
for (int j = 1; j <= m; ++ j)
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 |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 5 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
504 KB |
Wrong answer in test 3 7: 7 < 8 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 5 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
44 ms |
1784 KB |
in the table A+B is not equal to 68 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
43 ms |
1964 KB |
Wrong answer in test 19 19: 19 < 36 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 5 |