//#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
void debug_out() { cerr << endl; }
template<typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
cerr << "[" << H << "]";
debug_out(T...);
}
#ifdef dddxxz
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif
#define SZ(s) ((int)s.size())
clock_t startTime;
double getCurrentTime() {
return (double) (clock() - startTime) / CLOCKS_PER_SEC;
}
typedef long long ll;
//mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
const double eps = 0.00001;
const int MOD = 1e9 + 7;
const int INF = 1000000101;
const long long LLINF = 1223372000000000555;
const int N = 2e6 + 4e4;
const int M = 1234;
const int LOG = 19;
int calc(vector<vector<char>> &v) {
int n = v.size(), m = v[0].size();
int res = 0;
for (int i = 0; i < n; i++) {
int x = 0, y = 0;
for (int j = 0; j < m; j++) {
if (v[i][j] == '+') x++;
else
y++;
}
if (x > y) res++;
}
for (int j = 0; j < m; j++) {
int x = 0, y = 0;
for (int i = 0; i < n; i++) {
if (v[i][j] == '-') x++;
else
y++;
}
if (x > y) res++;
}
return res;
}
void solve(int TC) {
int n, m;
cin >> n >> m;
vector<vector<char>> v(n);
if (n > m){
for (int i = 0; i < n; i++){
v[i].resize(m);
for (int j = 0; j < m; j++){
if (j % 2 == 0) v[i][j] = '+'; else
v[i][j] = '-';
}
}
} else {
for (int i = 0; i < n; i++){
v[i].resize(m);
for (int j = 0; j < m; j++){
if (i % 2 == 0) v[i][j] = '-'; else
v[i][j] = '+';
}
}
}
cout << calc(v) << endl;
for (auto &vv : v){
for (auto x : vv) cout << x;
cout << endl;
}
}
int main() {
startTime = clock();
ios_base::sync_with_stdio(false);
bool llololcal = false;
#ifdef dddxxz
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
llololcal = true;
#endif
int TC = 1;
cin >> TC;
for (int test = 1; test <= TC; test++) {
debug(test);
solve(test);
}
if (llololcal) cerr << endl << "Time: " << getCurrentTime() * 1000 << " ms" << endl;
return 0;
}
Compilation message
stones.cpp: In function 'int main()':
stones.cpp:18:20: warning: statement has no effect [-Wunused-value]
18 | #define debug(...) 42
| ^~
stones.cpp:111:9: note: in expansion of macro 'debug'
111 | debug(test);
| ^~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 4: 1 < 4 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
364 KB |
Wrong answer in test 20 2: 1 < 20 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 4: 1 < 4 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
82 ms |
1388 KB |
Wrong answer in test 97 21: 107 < 116 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
61 ms |
1388 KB |
Wrong answer in test 24 24: 12 < 44 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 4: 1 < 4 |