Submission #923278

# Submission time Handle Problem Language Result Execution time Memory
923278 2024-02-07T04:47:58 Z vjudge1 Hidden Sequence (info1cup18_hidden) C++17
0 / 100
400 ms 692 KB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
vector<int>ans;
void dfs(int n,vector<int>s){
    if(!isSubsequence(s)){
        return;
    }
    if(s.size()==n){
        ans=s;
        return;
    }else{
        s.push_back(0);
        dfs(n,s);
        s.pop_back();
        s.push_back(1);
        dfs(n,s);
    }
}
vector<int>findSequence(int n){
    dfs(n,{});
}

Compilation message

hidden.cpp: In function 'void dfs(int, std::vector<int>)':
hidden.cpp:9:16: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
    9 |     if(s.size()==n){
      |        ~~~~~~~~^~~
hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:22:1: warning: no return statement in function returning non-void [-Wreturn-type]
   22 | }
      | ^
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++)
      |                   ~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 432 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1837 ms 692 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -