| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 171032 | antimirage | Red-blue table (IZhO19_stones) | C++14 | 42 ms | 4856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define mk make_pair
#define pb push_back
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 1005;
int tests, n, m, a[N][N], cn[N], ans;
void Fill (int x) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
a[i][j] = x;
}
}
}
int Nxt(int x, int o) {
x++;
if (x > o) x = 1;
return x;
}
main() {
cin >> tests;
while (tests--) {
memset(cn, 0, sizeof(cn) );
scanf("%d%d", &n, &m);
int l = 1;
if (n >= m) {
ans = n;
Fill(0);
for (int i = 1; i <= m; i++) {
bool ok = 0;
for (int j = 0; j < n / 2 + 1; j++) {
if (cn[l] + 1 >= m / 2 + 1) {
ok = 1;
break;
}
a[l][i] = 1; cn[l]++;
l = Nxt(l, n);
}
if (ok) break;
ans++;
}
} else {
ans = m;
Fill(1);
for (int i = 1; i <= n; i++) {
bool ok = 0;
for (int j = 0; j < m / 2 + 1; j++) {
if (cn[l] + 1 >= n / 2 + 1) {
ok = 1;
break;
}
a[i][l] = 0; cn[l]++;
l = Nxt(l, m);
}
if (ok) break;
ans++;
}
}
printf("%d\n", ans);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
printf(a[i][j] == 0 ? "+" : "-");
}
printf("\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... | ||||
