답안 #472079

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
472079 2021-09-12T20:16:06 Z nickmet2004 Hidden Sequence (info1cup18_hidden) C++11
0 / 100
5 ms 456 KB
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int N , Q;
bool ask(int x , int y , int c){
    vector<int> v;
    while(x--)v.emplace_back(c);
    while(y--)v.emplace_back(c^1);
    int w = 0;
    if(N){
        w = N - x;
        while(w--)v.emplace_back(c);
    }
    return isSubsequence(v);
}
vector<int> findSequence(int n){
    vector<int> ans;
    ans.resize(n);
    int n0 = 0 , n1 = 0;
    for(int i =1; i <= n; ++i){
        if(!ask(i , 0, 0)){
            n0 = i - 1;
            n1 = n - n0;
            break;
        }
    }
    N = n0;
    if(n0<n1) N = n1 , Q^=1;
    int a= 0 , b = 0;
    for(int i = 1; i <= n; ++i){
        if(!ask(a , b + 1 , Q)){
            b =0;
            a++;
            ans.push_back(Q);
        }else{
            b++;
            ans.push_back(Q^1);
        }
    }
    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 Runtime error 1 ms 328 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 5 ms 456 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -