Submission #410859

# Submission time Handle Problem Language Result Execution time Memory
410859 2021-05-23T20:34:22 Z nichke Hidden Sequence (info1cup18_hidden) C++14
34 / 100
9 ms 320 KB
#include <bits/stdc++.h>
#include <grader.h>
using namespace std;

bool isSubsequence(vector<int> vi);

vector<int> findSequence(int N) {
	int c1 = 0;
	for (int i = 1; i <= N; i++) {
		vector<int> vi;
		for (int j = 0; j < i; j++) {
			vi.push_back(1);
		}
		if (isSubsequence(vi)) {
			c1++;
		} else {
			break;
		}
	}
	vector<int> ans;
	while (c1) {
		int c0 = 0;
		for (int i = 1; i <= N; i++) {
			vector<int> vi = ans;
			for (int j = 0; j < i; j++) vi.push_back(0);
			for (int j = 0; j < c1; j++) {
				vi.push_back(1);
			}
			if (vi.size() > N) break;
			if (isSubsequence(vi)) {
				c0++;
			} else {
				break;
			}
		}
		for (int j = 0; j < c0; j++) {
			ans.push_back(0);
		}
		ans.push_back(1);
		c1--;
	}
	while (ans.size() < N) ans.push_back(0);
	return ans;
}

Compilation message

hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:29:18: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   29 |    if (vi.size() > N) break;
      |        ~~~~~~~~~~^~~
hidden.cpp:42:20: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   42 |  while (ans.size() < N) ans.push_back(0);
      |         ~~~~~~~~~~~^~~
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 200 KB Output is partially correct: Maximum length of a query = 8
2 Partially correct 1 ms 200 KB Output is partially correct: Maximum length of a query = 9
3 Partially correct 1 ms 200 KB Output is partially correct: Maximum length of a query = 8
4 Partially correct 1 ms 200 KB Output is partially correct: Maximum length of a query = 9
5 Partially correct 1 ms 200 KB Output is partially correct: Maximum length of a query = 7
# Verdict Execution time Memory Grader output
1 Partially correct 6 ms 312 KB Output is partially correct: Maximum length of a query = 165
2 Partially correct 7 ms 320 KB Output is partially correct: Maximum length of a query = 178
3 Partially correct 6 ms 292 KB Output is partially correct: Maximum length of a query = 190
4 Partially correct 5 ms 320 KB Output is partially correct: Maximum length of a query = 153
5 Partially correct 8 ms 200 KB Output is partially correct: Maximum length of a query = 187
6 Partially correct 7 ms 200 KB Output is partially correct: Maximum length of a query = 160
7 Partially correct 6 ms 200 KB Output is partially correct: Maximum length of a query = 183
8 Partially correct 6 ms 200 KB Output is partially correct: Maximum length of a query = 163
9 Partially correct 9 ms 308 KB Output is partially correct: Maximum length of a query = 199
10 Partially correct 6 ms 200 KB Output is partially correct: Maximum length of a query = 195
11 Partially correct 7 ms 200 KB Output is partially correct: Maximum length of a query = 190
12 Partially correct 5 ms 200 KB Output is partially correct: Maximum length of a query = 151
13 Partially correct 7 ms 200 KB Output is partially correct: Maximum length of a query = 200