이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
int T = 1;
cin >> T;
while(T--) {
int n, m, best_i = 0, best_j = 0;
cin >> n >> m;
for(int i = 0; i <= n; ++i) {
for(int j = 0; j <= m; ++j) {
int plus = i * (m / 2 + 1);
int minus = j * (n / 2 + 1);
if(plus + minus <= n * m) {
if(!i || !j || m / 2 + 1 < m - j + 1 || n - (m / 2 + 1) >= n / 2 + 1) {
if(i + j > best_i + best_j) {
best_i = i; best_j = j;
}
}
}
}
}
cout << best_i + best_j << '\n';
for(int i = 1; i <= n; ++i) {
for(int j = 1; j <= m; ++j) {
if(i <= best_i && j <= m / 2 + 1) {
cout << '+';
} else {
cout << '-';
}
}
cout << '\n';
}
}
}
# | 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... |