이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
int lengthLongestZeroChain(int n) {
int low = 0, high = n;
while (low + 1 < high) {
int mid = (low + high) / 2;
string s(mid, '0');
if (make_test(s)) {
low = mid;
} else {
high = mid;
}
}
return low;
}
void findStringEnding(string& s, string& chain) {
int n = (int)chain.length();
int low = 0, high = n;
while (low + 1 < high) {
int mid = (low + high) / 2;
chain = string(mid, '0');
if (make_test(s + chain)) {
low = mid;
} else {
high = mid;
}
}
s += string(low, '0');
}
void growSubstringRight(string& s, string& chain) {
if (make_test(s + chain + '1')) {
s += chain + '1';
chain = "";
} else {
chain += '0';
}
}
void growSubstringLeft(string& s) {
if (make_test('1' + s)) {
s = "1" + s;
} else {
s = "0" + s;
}
}
string analyse(int n, int t) {
int zeroChainLen = lengthLongestZeroChain(n);
string curr(zeroChainLen, '0'), chain = "";
while ((int)chain.length() < zeroChainLen && (int)curr.length() < n) {
growSubstringRight(curr, chain);
}
if ((int)chain.length() == zeroChainLen) {
findStringEnding(curr, chain);
}
while ((int)curr.length() < n) {
growSubstringLeft(curr);
}
return curr;
}
컴파일 시 표준 에러 (stderr) 메시지
grader.cpp: In function 'bool make_test(std::string)':
grader.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (int i = 0; i < p.size(); i++) {
| ~~^~~~~~~~~~
grader.cpp:23:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 1; i <= ss.size(); i++) {
| ~~^~~~~~~~~~~~
grader.cpp:28:13: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | if (pr[i] == p.size()) {
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |