Submission #497027

# Submission time Handle Problem Language Result Execution time Memory
497027 2021-12-22T08:49:41 Z abc864197532 Hidden Sequence (info1cup18_hidden) C++17
0 / 100
3 ms 200 KB
#include <bits/stdc++.h>
using namespace std;
#define lli long long int
#define mp make_pair
#define eb emplace_back
#define pb push_back
#define X first
#define Y second
#define pii pair<int,int>
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
void abc() {cout << endl;}
template <typename T, typename ...U> void abc(T i, U ...j) {
	cout << i << ' ', abc(j...);
}
template <typename T> void printv(T l, T r) {
	for (; l != r; ++l) 
		cout << *l << " \n"[l + 1 == r];
}
#ifdef Doludu
#define test(x...) abc("[" + string(#x) + "]", x);
#include "grader.cpp"
#else
#define test(x...) void(0);
#endif
const int N = 1001;

bool isSubsequence (vector <int> S);

pair<vector <int>, int> reduce(vector <int> a) {
	vector <int> cur;
	int now = -1;
	for (int i : a) {
		if (now == -1)
			now = i;
		else if (now != i) {
			now = -1;
			cur.pb(i);
		}
	}
	return mp(cur, now);
}

vector <int> findSequence(int n) {
	int bound = n + 1 >> 1;
	int len = 0, d = 0;
	if (isSubsequence(vector <int>(bound, 0))) {
		d = 1;
	}
	for (int i = bound; i > 0; --i) {
		if (isSubsequence(vector <int>(i, d))) {
			len = i;
			break;
		}
	}
	int cnt[2];
	if (d)
		cnt[1] = len, cnt[0] = n - len;
	else
		cnt[0] = len, cnt[1] = n - len;
	vector <int> ans;
	for (int i = 0; i < n; ++i) {
		if (cnt[0] == 0) {
			ans.pb(1);
			cnt[1]--;
			continue;
		}
		if (cnt[1] == 0) {
			ans.pb(0);
			cnt[0]--;
			continue;
		}
		vector <int> res;
		int now;
		tie(res, now) = reduce(ans);
		if (now == -1) {
			int d = 1;
			if (cnt[0] < cnt[1])
				d = 0;
			res.pb(d ^ 1);
			for (int j = 0; j < cnt[d]; ++j)
				res.pb(d);
			if (isSubsequence(res))
				ans.pb(d ^ 1), cnt[d ^ 1]--;
			else
				ans.pb(d), cnt[d]--;
		} else {
			res.pb(now ^ 1);
			for (int j = 0; j < cnt[now] - 1; ++j)
				res.pb(now);
			if (isSubsequence(res))
				ans.pb(now ^ 1), cnt[now ^ 1]--;
			else
				ans.pb(now), cnt[now]--;
		}
	}
	return ans;
}

Compilation message

hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:45:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   45 |  int bound = n + 1 >> 1;
      |              ~~^~~
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 Correct 1 ms 200 KB Output is correct: Maximum length of a query = 5
2 Incorrect 0 ms 200 KB Output is not correct: The returned sequence does not match the hidden one
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 200 KB Output is not correct: The returned sequence does not match the hidden one
2 Halted 0 ms 0 KB -