# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1037401 | baldwinhuang1 | Paint By Numbers (IOI16_paint) | C++14 | 1 ms | 448 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "paint.h"
#include <cstdlib>
#include <bits/stdc++.h>
using namespace std;
string solve_puzzle(string s, vector<int> c) {
vector<int> start(c.size(), 0);
for (int i = 0; i < c.size(); i++) {
for (int j = start[i]; j < (s.size() - c[i]); j++) {
bool state = true;
for (int k = j; k < (j + c[i]); k++) {
if (s[k] != '.') {
state = false;
}
}
if (state == true) {
start[i] = j;
if (i != (c.size() - 1)) {
start[i + 1] = j + 1 + c[i];
}
break;
}
}
}
vector<int> end(c.size(), s.size() - 1);
for (int i = (c.size() - 1); i >= 0; i--) {
for (int j = end[i]; j >= c[i]; j--) {
bool state = true;
for (int k = j; k > (j - c[i]); k--) {
if (s[k] != '.') {
state = false;
}
}
if (state == true) {
end[i] = j;
if (i != (0)) {
end[i - 1] = j - 1 - c[i];
}
break;
}
}
}
// for (auto &i: start) {
// cout << i << ' ';
// }
// cout << '\n';
// for (auto &i: end) {
// cout << i << ' ';
// }
// cout << '\n';
string ans = s;
string occ = s;
for (int i = 0; i < c.size(); i++) {
for (int j = start[i]; j < (end[i] - c[i] + 2); j++) {
bool state = true;
for (int k = j; k < (j + c[i]); k++) {
if (s[k] != '.') {
state = false;
}
}
if (state == true) {
for (int k = j; k < (j + c[i]); k++) {
occ[k] = 'Y';
}
}
}
}
for (int i = 0; i < c.size(); i++) {
string a = s;
string b = s;
for (int j = start[i]; j < (end[i] - c[i] + 2); j++) {
bool state = true;
for (int k = j; k < (j + c[i]); k++) {
if (s[k] != '.') {
state = false;
}
}
if (state == true) {
for (int k = j; k < (j + c[i]); k++) {
a[k] = 'X';
}
break;
}
}
for (int j = end[i]; j > (start[i] + c[i] - 2); j--) {
bool state = true;
for (int k = j; k > (j - c[i]); k--) {
if (s[k] != '.') {
state = false;
}
}
if (state == true) {
for (int k = j; k > (j - c[i]); k--) {
b[k] = 'X';
}
break;
}
}
for (int j = start[i]; j <= end[i]; j++) {
if (a[j] == 'X' && b[j] == 'X') {
ans[j] = 'X';
}
else if (a[j] == 'X' || b[j] == 'X') {
ans[j] = '?';
}
else if (a[j] == '.' && b[j] == '.') {
ans[j] = '?';
}
}
// cout << a << '\n' << b << '\n';
}
for (int i = 0; i < ans.size(); i++) {
ans[i] = (occ[i] == '.') ? '_' : ans[i];
}
return ans;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |