# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1044759 | fv3 | Paint By Numbers (IOI16_paint) | C++14 | 1 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "paint.h"
#include <bits/stdc++.h>
using namespace std;
int N, M;
string solve_puzzle(string s, vector<int> c)
{
N = s.size();
M = c.size();
vector<int> preSum(M);
vector<int> sufSum(M, N);
int l = 0;
for (int i = 0; i < M; i++)
{
for (int j = l; j < l + c[i]; j++)
{
if (s[j] == '_')
l = j + 1;
}
preSum[i] = l;
l += c[i] + 1;
}
int r = N - 1;
for (int i = M - 1; i >= 0; i--)
{
for (int j = r; j > r - c[i]; j--)
{
if (s[j] == '_')
r = j - 1;
}
sufSum[i] = r - c[i] + 1;
r -= c[i] + 1;
}
string res = s;
for (int i = 0; i < M; i++)
{
for (int j = sufSum[i]; j < preSum[i] + c[i]; j++)
res[j] = 'X';
}
int cnt = 0;
for (auto c : res)
c=='X'&&cnt++;
int sum = 0;
for (auto n : c)
sum += n;
if (cnt == sum)
{
for (auto&c : res)
{
if (c == '.')
c = '_';
}
return res;
}
for (auto&c : res)
{
if (c == '.')
c = '?';
}
vector<int> lcnt(N);
for (int i = 0; i < M; i++)
{
for (int j = preSum[i] + c[i] + 1; j < N; j++)
lcnt[j]++;
}
vector<int> rcnt(N, M);
for (int i = M-1; i >= 0; i--)
{
for (int j = sufSum[i] - 2; j >= 0; j--)
rcnt[j]--;
}
s += "_";
for (int l = 0; l < N;)
{
if (l == 0 || s[l] == '_' && s[l+1] == '.')
{
int r = l == 0 ? 0 : ++l;
while (s[r] == '.')
r++;
int len = r - l;
if (lcnt[l] >= rcnt[l])
{
cerr << "Check range [" << l << ", " << r-1 << "] (len = " << len << ") with:\n";
bool ok = false;
for (int i = max(0, rcnt[l]-1); i <= min(lcnt[l], M-1); i++)
{
cerr << i << ' ';
if (c[i] <= len)
ok = true;
}
cerr << '\n';
cerr << (ok ? "OK\n" : "Not OK\n");
if (!ok)
{
for (int i = l; i < r; i++)
{
res[i] = '_';
}
}
}
l = r;
}
else
l++;
}
return res;
}
컴파일 시 표준 에러 (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... |