Submission #765363

# Submission time Handle Problem Language Result Execution time Memory
765363 2023-06-24T11:36:55 Z Ahmed57 Hidden Sequence (info1cup18_hidden) C++17
24 / 100
81 ms 464 KB
#include "grader.h"

#include<bits/stdc++.h>
using namespace std;
vector<int>findSequence(int N){
    int x= 0;
    vector<int>ch;
    for(int i = 0;i<N/2+1;i++)ch.push_back(x);
    if(isSubsequence(ch))x = 1;
    ch.clear();
    int cut = 0;
    for(int i = 1;i<=N/2+1;i++){
        ch.push_back(x);
        if(!isSubsequence(ch)){
            cut = i-1;
            break;
        }
    }
    vector<int> ans(N,(!x));
    for(int i = 1;i<=cut;i++){
        int l = 0;
        ch.clear();
        for(int j = 0;j<i;j++)ch.push_back(x);
        ch.push_back(!x);
        while(isSubsequence(ch)){
            l++;
            ch.push_back(!x);
        }
        long long lol = N-((cut-i)+l);
        ans[lol-1] = 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++)
      |                   ~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Partially correct 1 ms 292 KB Output is partially correct: Maximum length of a query = 6
2 Partially correct 0 ms 208 KB Output is partially correct: Maximum length of a query = 7
3 Partially correct 1 ms 208 KB Output is partially correct: Maximum length of a query = 6
4 Runtime error 1 ms 464 KB Execution killed with signal 6
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Partially correct 34 ms 208 KB Output is partially correct: Maximum length of a query = 90
2 Partially correct 43 ms 208 KB Output is partially correct: Maximum length of a query = 96
3 Partially correct 62 ms 208 KB Output is partially correct: Maximum length of a query = 106
4 Partially correct 37 ms 208 KB Output is partially correct: Maximum length of a query = 83
5 Partially correct 65 ms 208 KB Output is partially correct: Maximum length of a query = 111
6 Partially correct 81 ms 208 KB Output is partially correct: Maximum length of a query = 151
7 Partially correct 57 ms 300 KB Output is partially correct: Maximum length of a query = 135
8 Partially correct 20 ms 284 KB Output is partially correct: Maximum length of a query = 96
9 Partially correct 54 ms 208 KB Output is partially correct: Maximum length of a query = 121
10 Partially correct 49 ms 208 KB Output is partially correct: Maximum length of a query = 105
11 Partially correct 48 ms 208 KB Output is partially correct: Maximum length of a query = 97
12 Partially correct 41 ms 300 KB Output is partially correct: Maximum length of a query = 150
13 Partially correct 65 ms 208 KB Output is partially correct: Maximum length of a query = 106