#include <bits/stdc++.h>
#include "dna.h"
using namespace std;
typedef long long ll;
string analyse(int n, int t){
int MIN = 1, MAX = n, ANS = 0;
while(MIN <= MAX){
int MID = (MIN + MAX) / 2;
if(make_test(string(MID, '0'))){
ANS = MID;
MIN = MID + 1;
}
else MAX = MID - 1;
}
if(!ANS) return string(n, '1');
string str (ANS, 1);
int cnt = ANS;
while(cnt <= ANS){
if(!make_test(str + '1')){
cnt++;
str += '0';
}
else{
cnt = 0;
str += '1';
}
}
while(cnt--) str.pop_back();
MIN = 1, MAX = n, ANS = 0;
while(MIN <= MAX){
int MID = (MIN + MAX) / 2;
if(make_test(str + string(MID, '0'))){
ANS = MID;
MIN = MID + 1;
}
else MAX = MID - 1;
}
str += string(ANS, '0');
while((int)str.size() < n){
if(make_test("1" + str)) str = "1" + str;
else str = "0" + str;
}
return str;
}
Compilation message
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()) {
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Correct |
0 ms |
204 KB |
Output is correct |
8 |
Correct |
0 ms |
204 KB |
Output is correct |
9 |
Correct |
0 ms |
204 KB |
Output is correct |
10 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
11 |
Correct |
0 ms |
204 KB |
Output is correct |
12 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
13 |
Correct |
1 ms |
204 KB |
Output is correct |
14 |
Correct |
0 ms |
204 KB |
Output is correct |
15 |
Correct |
0 ms |
204 KB |
Output is correct |
16 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
17 |
Correct |
0 ms |
204 KB |
Output is correct |
18 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
19 |
Correct |
0 ms |
204 KB |
Output is correct |
20 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
21 |
Correct |
0 ms |
204 KB |
Output is correct |
22 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
23 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
24 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
8 |
Correct |
0 ms |
204 KB |
Output is correct |
9 |
Correct |
1 ms |
204 KB |
Output is correct |
10 |
Correct |
0 ms |
204 KB |
Output is correct |
11 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
12 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
13 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
14 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
15 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
16 |
Correct |
0 ms |
204 KB |
Output is correct |
17 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
18 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
19 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
20 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
21 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
22 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
23 |
Correct |
1 ms |
204 KB |
Output is correct |
24 |
Correct |
0 ms |
204 KB |
Output is correct |
25 |
Correct |
0 ms |
204 KB |
Output is correct |
26 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
27 |
Correct |
0 ms |
204 KB |
Output is correct |
28 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
29 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
30 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
31 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
32 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
33 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
34 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
280 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
8 |
Correct |
1 ms |
204 KB |
Output is correct |
9 |
Correct |
1 ms |
204 KB |
Output is correct |
10 |
Correct |
1 ms |
204 KB |
Output is correct |
11 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
12 |
Correct |
0 ms |
204 KB |
Output is correct |
13 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
14 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
15 |
Incorrect |
0 ms |
204 KB |
Wrong DNA |
16 |
Correct |
0 ms |
204 KB |
Output is correct |
17 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
18 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
19 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
20 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
21 |
Incorrect |
1 ms |
204 KB |
Wrong DNA |
22 |
Incorrect |
10 ms |
332 KB |
Wrong DNA |
23 |
Incorrect |
11 ms |
360 KB |
Wrong DNA |
24 |
Incorrect |
10 ms |
364 KB |
Wrong DNA |
25 |
Incorrect |
10 ms |
388 KB |
Wrong DNA |
26 |
Incorrect |
12 ms |
344 KB |
Wrong DNA |
27 |
Incorrect |
8 ms |
392 KB |
Wrong DNA |
28 |
Correct |
8 ms |
332 KB |
Output is correct |
29 |
Correct |
1 ms |
204 KB |
Output is correct |
30 |
Correct |
1 ms |
204 KB |
Output is correct |
31 |
Incorrect |
11 ms |
356 KB |
Wrong DNA |
32 |
Correct |
1 ms |
204 KB |
Output is correct |
33 |
Incorrect |
9 ms |
488 KB |
Wrong DNA |
34 |
Incorrect |
8 ms |
332 KB |
Wrong DNA |
35 |
Incorrect |
8 ms |
372 KB |
Wrong DNA |
36 |
Incorrect |
8 ms |
332 KB |
Wrong DNA |
37 |
Incorrect |
8 ms |
332 KB |
Wrong DNA |
38 |
Incorrect |
6 ms |
332 KB |
Wrong DNA |
39 |
Correct |
5 ms |
332 KB |
Output is correct |