# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
537904 | timreizin | Paint By Numbers (IOI16_paint) | C++17 | 735 ms | 139216 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "paint.h"
using namespace std;
string solve_puzzle(string s, vector<int> c)
{
int n = (int)s.size(), k = c.size();
vector dpWR(n + 1, vector(k + 1, false)), dpBR(n + 1, vector(k + 1, false)), dpWL(n + 2, vector(k + 1, false)), dpBL(n + 2, vector(k + 1, false));
vector<int> pref(n + 1);
for (int i = 0; i < n; ++i) pref[i + 1] = pref[i] + (s[i] == '_');
dpWR[0][0] = 1;
for (int i = 1; i <= n; ++i)
{
for (int j = 0; j <= k; ++j)
{
if (s[i - 1] != '_' && j != k && i - c[j] >= 0 && pref[i] - pref[i - c[j]] == 0) dpBR[i][j] = dpWR[i - c[j]][j];
if (s[i - 1] != 'X') dpWR[i][j] = dpWR[i - 1][j] | (j == 0 ? 0 : dpBR[i - 1][j - 1]);
}
}
dpWL[n + 1][k] = 1;
for (int i = n; i >= 1; --i)
{
for (int j = 0; j <= k; ++j)
{
if (s[i - 1] != '_' && j != k && i + c[j] <= n + 1 && pref[i + c[j] - 1] - pref[i - 1] == 0) dpBL[i][j] = dpWL[i + c[j]][j + 1];
if (s[i - 1] != 'X') dpWL[i][j] = dpWL[i + 1][j] | dpBL[i + 1][j];
}
}
vector<vector<int>> works(k);
for (int i = 1; i <= n; ++i) for (int j = 0; j < k; ++j) if (i + c[j] - 1 <= n && dpBL[i][j] && dpBR[i + c[j] - 1][j]) works[j].push_back(i);
vector<int> inds(k);
for (int i = 1; i <= n; ++i)
{
bool checkW = false, checkB = false;
for (int j = 0; j <= k; ++j)
{
checkW |= dpWR[i][j] && dpWL[i][j];
if (j < k)
{
while (inds[j] != works[j].size() && works[j][inds[j]] < i + 1 - c[j]) ++inds[j];
if (inds[j] != works[j].size()) checkB |= works[j][inds[j]] <= i;
}
}
if (checkB && checkW) s[i - 1] = '?';
else if (checkB) s[i - 1] = 'X';
else s[i - 1] = '_';
}
return s;
}
컴파일 시 표준 에러 (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... |