Submission #1060337

#TimeUsernameProblemLanguageResultExecution timeMemory
1060337peraHidden Sequence (info1cup18_hidden)C++17
87 / 100
6 ms440 KiB
#include<bits/stdc++.h> #include "grader.h" using namespace std; vector<int> findSequence(int N){ vector<int> ans , X , e(2); for(int i = 1;i <= N / 2 + 1;i ++){ X.emplace_back(1); if(isSubsequence(X)){ e[1] = i; e[0] = N - i; } } if(e[1] == N / 2 + 1){ vector<int>().swap(X); for(int i = 1;i <= N / 2 + 1;i ++){ X.emplace_back(0); if(isSubsequence(X)){ e[0] = i; e[1] = N - i; } } } vector<int> o(2); auto Get = [&](int x , int y , int z){ vector<int> v; for(int i = 1;i <= x + y;i ++){ v.push_back(z ^ (i > x)); } return v; }; auto is_Zero = [&](){ if(o[0] + (e[1] - o[1]) <= N / 2 + 1){ return isSubsequence(Get(o[0] + 1 , e[1] - o[1] , 0)); }else{ return !isSubsequence(Get(o[1] + 1 , e[0] - o[0] , 1)); } }; for(int i = 1;i <= N;i ++){ ans.emplace_back(!is_Zero()); o[ans.back()]++; } return ans; }

Compilation message (stderr)

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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...