# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
168087 | YottaByte | Red-blue table (IZhO19_stones) | C++14 | 51 ms | 1916 KiB |
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>
using namespace std;
#define ll long long
#define sz(x) (int)x.size()
#define pii pair < int, int >
#define endl "\n"
#define METH ios::sync_with_stdio(0); cin.tie(0);
#define BEGIN cout << "BEGIN" << endl;
#define END cout << "END" << endl;
const int N = 1e3;
const int mod = 1e9 + 7; /// ANOTHER HASH MOD: 228228227
const int prime = 29; /// ANOTHER HASH PRIME: 997
const int INF = ((long long) 0xCAFEBABE - 1e9 - 4e8);
int n, m, ans[N + 1][N + 1];
inline void purify() {
}
inline void precalc() {
}
inline void read() {
scanf("%d %d", &n, &m);
}
void out() {
char a = '+', b = '-';
if ((n - 1) / 2 + m >= (m - 1) / 2 + n) {
swap(a, b);
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
ans[i][j] = a;
}
}
if ((n - 1) / 2 + m >= (m - 1) / 2 + n) {
cout << (n - 1) / 2 + m << endl;
int cntp = 0;
int ii = 0, jj = 1;
int perline = m / 2 + 1;
while (cntp < ((n - 1) / 2) * perline) {
if (cntp % perline == 0) {
ii++;
}
jj--;
jj %= m;
jj++;
ans[ii][jj++] = b;
cntp++;
}
} else {
cout << (m - 1) / 2 + n << endl;
int cntm = 0;
int ii = 1, jj = 0;
int percol = n / 2 + 1;
while (cntm < ((m - 1) / 2) * percol) {
if (cntm % percol == 0) {
jj++;
}
ii--;
ii %= n;
ii++;
ans[ii++][jj] = b;
cntm++;
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cout << (char) ans[i][j];
}
cout << endl;
}
}
inline void solve() {
out();
return;
if ((n - 1) / 2 + m >= (m - 1) / 2 + n) {
cout << (n - 1) / 2 + m << endl;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (i <= (n - 1) / 2) {
if (j <= m / 2 + 1) {
cout << '+';
continue;
}
}
cout << '-';
}
cout << endl;
}
} else {
cout << (m - 1) / 2 + n << endl;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (i <= n / 2 + 1) {
if (j <= (m - 1) / 2) {
cout << '-';
continue;
}
}
cout << '+';
}
cout << endl;
}
}
}
int main() {
int t;
scanf("%d", &t);
//precalc();
while (t--) {
//purify();
read();
solve();
}
}
Compilation message (stderr)
# | 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... |