# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
147734 | theboatman | Red-blue table (IZhO19_stones) | C++17 | 6 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define y1 theboatman
#define make_struct(args...) {args}
using namespace std;
typedef long long ll;
const long long INF = 1e18 + 10;
const int inf = 1e9 + 10;
const int N = 1e6 + 10;
void solve1(int n, int m) {
vector <vector <char> > ans(n, vector <char> (m, '-'));
int res;
if (n <= m) {
vector <int> used(m);
res = m;
for(int i = 0; i < n; i++) {
vector <pair <int, int> > pos;
for(int j = 0; j < m; j++) {
if (used[j] < (n - 1) / 2) {
pos.push_back(make_pair(used[j], j));
}
}
if (pos.size() < (m / 2) + 1) {
break;
}
else {
sort(pos.begin(), pos.end());
for(int j = 0; j < (m / 2) + 1; j++) {
used[pos[j].second]++;
ans[i][pos[j].second] = '+';
}
}
res++;
}
}
else {
vector <int> used(n);
res = n;
for(int i = 0; i < m; i++) {
vector <pair <int, int> > pos;
for(int j = 0; j < n; j++) {
if (used[j] < (m - 1) / 2) {
pos.push_back(make_pair(used[j], j));
}
}
if (pos.size() < (n / 2) + 1) {
break;
}
else {
sort(pos.begin(), pos.end());
for(int j = 0; j < (n / 2) + 1; j++) {
used[pos[j].second]++;
ans[pos[j].second][i] = '+';
}
}
res++;
}
}
cout << res << "\n";
for(auto i : ans) {
for(auto j : i) {
cout << j;
}
cout << "\n";
}
}
void solve() {
int n, m;
cin >> n >> m;
if (n <= 50 && m <= 50) {
solve1(n, m);
}
else {
cout << "0\n";
}
}
int main() {
cin.tie(0);
ios::sync_with_stdio(0);
int test;
cin >> test;
while(test--) {
solve();
}
return 0;
}
/*
*/
컴파일 시 표준 에러 (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... |