Submission #1320771

#TimeUsernameProblemLanguageResultExecution timeMemory
1320771yoshi_33550336Hidden Sequence (info1cup18_hidden)C++20
Compilation error
0 ms0 KiB
#include "grader.h"
vector<int> findSequence(int n){
    vector<int> rc;
    while(rc.size()<n){
        int x = rc.size();
        for(bool c : {0,1}){
            for (int j = 0; j <= x;j++){
                auto v = rc;
                v.insert(v.begin()+j,c);
                if(isSubsequence(v)){
                    rc = v;
                    break;
                }
            }
            if(rc.size() != x) break;
        }
    }
    return rc;
}

Compilation message (stderr)

hidden.cpp:2:1: error: 'vector' does not name a type
    2 | vector<int> findSequence(int n){
      | ^~~~~~
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