# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
171205 | donentseto | Red-blue table (IZhO19_stones) | C++14 | 30 ms | 1428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main (){
ios::sync_with_stdio (false);
cin.tie (0);
int t;
cin >> t;
while (t --){
int n, m;
cin >> n >> m;
if (n <= 2 && m >= n){
cout << m << '\n';
for (int i = 0; i < n; i ++){
for (int j = 0; j < m; j ++) cout << '-';
cout << '\n';
}
}
else if (m <= 2){
cout << n << '\n';
for (int i = 0; i < n; i ++){
for (int j = 0; j < m; j ++) cout << '+';
cout << '\n';
}
}
/*else if (n <= 4 && m >= n){
cout << m + 1 << '\n';
for (int i = 0; i < m; i ++) cout << '+';
cout << '\n';
for (int i = 1; i < n; i ++){
for (int i = 0; i < m; i ++) cout << '-';
cout << '\n';
}
}
else if (m <= 4){
cout << n + 1 << '\n';
for (int i = 0; i < n; i ++){
cout << '-';
for (int j = 1; j < m; j ++) cout << '+';
cout << '\n';
}
}*/
else if (m % 2 == 0 && (n - 1 >> 1) << 1 <= (m >> 1) + 1){
cout << m + n - 3 + n % 2 << '\n';
for (int i = 0; i < n - 1 >> 1; i ++){
for (int j = 0; j <= m >> 1; j ++){
if (j >> 1 == i) cout << '+';
else cout << '-';
}
for (int j = 1; j < m >> 1; j ++) cout << '+';
cout << '\n';
}
for (int i = n & 1; i < 3; i ++){
for (int j = 0; j < m; j ++) cout << '-';
cout << '\n';
}
for (int i = 1; i < n - 1 >> 1; i ++){
for (int j = 0; j <= m >> 1; j ++) cout << '+';
for (int j = 1; j < m >> 1; j ++) cout << '-';
cout << '\n';
}
}
else if (n % 2 == 0 && (m - 1 >> 1) << 1 <= (n >> 1) + 1){
cout << m + n - 3 + m % 2 << '\n';
for (int i = 0; i <= n >> 1; i ++){
for (int j = 0; j < m - 1 >> 1; j ++){
if (i >> 1 == j) cout << '-';
else cout << '+';
}
for (int j = m & 1; j < 3; j ++) cout << '+';
for (int j = 1; j < m - 1 >> 1; j ++) cout << '-';
cout << '\n';
}
for (int i = 1; i < n >> 1; i ++){
for (int j = 0; j < m - 1 >> 1; j ++) cout << '-';
for (int j = 0; j <= m >> 1; j ++) cout << '+';
cout << '\n';
}
}
else{
cout << n - 2 + n % 2 + m - 2 + m % 2 << '\n';
for (int i = 0; i < n; i ++){
for (int j = 0; j < m; j ++){
if (i <= n >> 1 && j < m - 1 >> 1) cout << '-';
else if (i >= n - 1 >> 1 && j > m >> 1) cout << '-';
else cout << '+';
}
cout << '\n';
}
}
}
}
컴파일 시 표준 에러 (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... |