#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
bool ask(int a, int b, int c){
vector<int> v;
while(a--) v.push_back(c);
while(b--) v.push_back(c^1);
return isSubsequence(v);
}
int n0, n1;
vector < int > findSequence (int N)
{
for(int i = 1; i <= N; i++){
if(!ask(i,0,0)){
n0 = i-1;
n1 = N-n0;
break;
}
if(!ask(i,0,1)){
n1 = i-1;
n0 = N-n1;
break;
}
}
int a0=0, a1=0, b0=n0, b1=n1;
vector<int> ans;
for(int i = 1; i <= N; i++){
int x;
if(a0+b1+1 <= N/2+1){
if(ask(a0+1,b1,0))
x = 0;
else x = 1;
}
else{
if(ask(a1+1,b0,1))
x = 1;
else x = 0;
}
if(x) a1++,b1--;
else a0++,b0--;
ans.push_back(x);
}
return ans;
}
Compilation message
grader.cpp: In function 'int main()':
grader.cpp:28:26: warning: format '%d' expects argument of type 'int', but argument 3 has type 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
28 | fprintf (fifo_out, "%d\n", ans.size ());
| ~^ ~~~~~~~~~~~
| | |
| int std::vector<int>::size_type {aka long unsigned int}
| %ld
grader.cpp:29:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for (int i=0; i<ans.size () && i < N; i++)
| ~^~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct: Maximum length of a query = 5 |
2 |
Correct |
1 ms |
364 KB |
Output is correct: Maximum length of a query = 6 |
3 |
Correct |
1 ms |
364 KB |
Output is correct: Maximum length of a query = 5 |
4 |
Correct |
1 ms |
492 KB |
Output is correct: Maximum length of a query = 5 |
5 |
Correct |
1 ms |
364 KB |
Output is correct: Maximum length of a query = 4 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
364 KB |
Output is correct: Maximum length of a query = 83 |
2 |
Correct |
6 ms |
380 KB |
Output is correct: Maximum length of a query = 90 |
3 |
Correct |
7 ms |
364 KB |
Output is correct: Maximum length of a query = 96 |
4 |
Correct |
5 ms |
492 KB |
Output is correct: Maximum length of a query = 77 |
5 |
Correct |
8 ms |
364 KB |
Output is correct: Maximum length of a query = 95 |
6 |
Correct |
5 ms |
380 KB |
Output is correct: Maximum length of a query = 87 |
7 |
Correct |
7 ms |
364 KB |
Output is correct: Maximum length of a query = 97 |
8 |
Correct |
7 ms |
384 KB |
Output is correct: Maximum length of a query = 83 |
9 |
Correct |
8 ms |
364 KB |
Output is correct: Maximum length of a query = 101 |
10 |
Correct |
8 ms |
364 KB |
Output is correct: Maximum length of a query = 100 |
11 |
Correct |
7 ms |
364 KB |
Output is correct: Maximum length of a query = 96 |
12 |
Correct |
9 ms |
364 KB |
Output is correct: Maximum length of a query = 100 |
13 |
Correct |
9 ms |
364 KB |
Output is correct: Maximum length of a query = 101 |