# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
789650 | AkramElOmrani | Paint By Numbers (IOI16_paint) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma once
#include <bits/stdc++.h>
#include <string>
#include <vector>
using namespace std;
std::string solve_puzzle(std::string s, std::vector<int> c) {
int n = s.length();
int m = c.size();
string ans(n, '?');
int sm = accumulate(c.begin(), c.end(), 0) + c.size() - 1;
if(sm == n) {
int s = 0;
for(int i = 0; i < m; ++i) {
while(c[i]) {
c[i]--;
ans[s++] = 'X';
}
if(s != n)
ans[s++] = '_';
}
// cout << ans << '\n';
return ans;
}
for(int i = 0; i < n; ++i) {
int before = 0;
int j = 0;
while(j < m && before + c[j] <= i) {
before += c[j++];
before++;
}
before = i + 1;
while(j < m && before + c[j] <= n) {
before += c[j++];
before++;
}
if(j != m) {
ans[i] = 'X';
}
}
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... |