#pragma GCC optimize ("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimization ("unroll-loops")
#include "bits/stdc++.h"
#define pb push_back
#define vll vector<long long>
#define vb vector<bool>
#define vi vector<int>
#define vs vector<string>
#define vpii vector< pair<int, int> >
#define pii pair<int, int>
#define pbb pair<bool, bool>
#define pll pair<long long, long long>
#define vvi vector< vector<int> >
#define ld long double
#define mp make_pair
#define FASTIO ios_base::sync_with_stdio(false); cin.tie(NULL);
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;
int main()
{
int t;
cin >> t;
while(t--)
{
int n, m;
cin >> n >> m;
int cnt = 0;
int ans = 0;
char res[n + 5][m + 5];
if(n > m)
{
//fill(res, sizeof(res), '+');
ans = n;
for(int i = 1; i <= n; i++)
for(int a = 1; a <= m; a++)
res[i][a] = '+';
for(int i = 1; i <= m; i++)
{
if(cnt + 1 >= (m+1) / 2)
break;
for(int a = 1; a <= n / 2 + 1; a++)
res[a][i] = '-';
ans++;
cnt++;
}
} else
{
//fill(res, sizeof(res), '-');
ans = m;
for(int i = 1; i <= n; i++)
for(int a = 1; a <= m; a++)
res[i][a] = '-';
for(int i = 1; i <= n; i++)
{
if(cnt + 1 >= (n+1) / 2)
break;
for(int a = 1; a <= m / 2 + 1; a++)
res[i][a] = '+';
ans++;
cnt++;
}
}
cout << ans << "\n";
for(int i = 1; i <= n; i++)
{
for(int a = 1; a <= m; a++)
cout << res[i][a];
cout << "\n";
}
}
}
Compilation message
stones.cpp:3: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
3 | #pragma GCC optimization ("unroll-loops")
|
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Incorrect |
3 ms |
300 KB |
Wrong answer in test 5 29: 31 < 32 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
35 ms |
1256 KB |
Wrong answer in test 97 21: 107 < 116 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
1228 KB |
Wrong answer in test 24 24: 35 < 44 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Incorrect |
3 ms |
300 KB |
Wrong answer in test 5 29: 31 < 32 |
5 |
Halted |
0 ms |
0 KB |
- |