Submission #674326

# Submission time Handle Problem Language Result Execution time Memory
674326 2022-12-23T17:21:24 Z QwertyPi Hidden Sequence (info1cup18_hidden) C++14
15 / 100
360 ms 384 KB
#include <bits/stdc++.h>
#define fi first
#define se second
#define pii pair<int, int>

#ifndef TEST
#include "grader.h"
#endif

using namespace std;

vector<int> a;
#ifdef TEST
bool isSubsequence(vector<int> S){
	cout << "QRY "; for(auto i : S) cout << i << ' '; 
	int l = 0, r = 0;
	while(l < a.size() && r < S.size()){
		if(a[l] != S[r]) l++;
		else l++, r++;
	}
	cout << (r == S.size() ? "YES" : "NO") << endl;
	return r == S.size();
}
#else
bool isSubsequence(vector<int> S);
#endif

bool flipped = false;
bool iss(vector<int> S){
	if(flipped) for(auto& i : S) i = 1 - i;
	return isSubsequence(S);
}

int dp[201][201];
vector<int> findSequence(int N){
	int c0 = 0, c1 = 0;
	for(int i = 1; i <= N / 2 + 1; i++){
		vector<int> a; for(int j = 0; j < i; j++) a.push_back(0);
		if(!isSubsequence(a)){
			c0 = i - 1, c1 = N - (i - 1);
			break;
		}
	}
	for(int i = 1; i <= N / 2 + 1; i++){
		vector<int> a; for(int j = 0; j < i; j++) a.push_back(1);
		if(!isSubsequence(a)){
			c0 = N - (i - 1), c1 = i - 1;
			break;
		}
	}
	if(c0 >= c1) flipped = true, swap(c0, c1);

	for(int l = 0; l <= c0; l++){
		for(int r = 0; r <= c0; r++){
			if(l - 1 < r) dp[l][r] = -1;
			else if(l - 1 > r) dp[l][r] = -2;
			else dp[l][r] = 0;
		}
	}
	for(int l = 0; l <= c0; l++){
		for(int r = l; r <= c0; r++){
			int d = r - l;
			int quota = (N / 2 + 1) - (c0 - d);
			int ll = 0, rr = quota + 1;
			while(ll != rr){
				vector<int> qry;
				for(int j = 0; j < l; j++){
					qry.push_back(0);
				}
				for(int j = 1; j <= (ll + rr + 1) / 2; j++){
					qry.push_back(1);
				}
				for(int j = r; j < c0; j++){
					qry.push_back(0);
				}
				if(iss(qry)){
					ll = (ll + rr + 1) / 2;
				}else{
					rr = (ll + rr + 1) / 2 - 1;
				}
			}
			dp[l][r] = (ll == quota + 1 ? -1 : ll);
		}
	}
	dp[0][c0] = c1;
	for(int d = c0 - 1; d >= 0; d--){
		for(int i = 0; i < c0 - d; i++){
			for(int j = i + d; j <= i + d; j++){
				if(dp[i][j] == -1 && dp[i + 1][j] != -1 && dp[i][j + 1] != -1 && dp[i + 1][j + 1] != -1)
					dp[i][j] = dp[i + 1][j] + dp[i][j + 1] - dp[i + 1][j + 1];
				
				if(dp[i][j] != -1 && dp[i + 1][j] == -1 && dp[i][j + 1] != -1 && dp[i + 1][j + 1] != -1)
					dp[i + 1][j] = dp[i][j] - dp[i][j + 1] + dp[i + 1][j + 1];
				
				if(dp[i][j] != -1 && dp[i + 1][j] != -1 && dp[i][j + 1] == -1 && dp[i + 1][j + 1] != -1)
					dp[i][j + 1] = dp[i][j] - dp[i + 1][j] + dp[i + 1][j + 1];
				
				if(dp[i][j] != -1 && dp[i + 1][j] != -1 && dp[i][j + 1] != -1 && dp[i + 1][j + 1] == -1)
					dp[i + 1][j + 1] = dp[i + 1][j] + dp[i][j + 1] - dp[i][j];
				
			}
		}
	}
	vector<int> ans;
	int tot = 0, s = 0;
	for(int i = 0; i <= c0; i++){
		tot += dp[i][i] < 0 ? 0 : dp[i][i];
		s += dp[i][i] < 0;
	}
	
	for(int i = 0; i <= c0; i++){
		if(dp[i][i] == -1){ dp[i][i] = (c1 - tot) / s; }
	}
	
	for(int i = 0; i <= c0; i++){
		for(int j = 0; j < dp[i][i]; j++) ans.push_back(1);
		if(i != c0) ans.push_back(0);
	}
	
	if(flipped){
		for(auto& i : ans) i = 1 - i;
	}
	return ans;
}

#ifdef TEST
int main(){
	int n; cin >> n;
	vector<int> a;
	for(int i = 0; i < n; i++){
		int v; cin >> v; a.push_back(v);
	}
	::a = a;
	vector<int> ans = findSequence(n);
	for(auto i : ans) cout << i << ' '; cout << endl;
}
#endif

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 208 KB Output is partially correct: Maximum length of a query = 6
2 Partially correct 1 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 Partially correct 1 ms 208 KB Output is partially correct: Maximum length of a query = 6
5 Partially correct 1 ms 208 KB Output is partially correct: Maximum length of a query = 5
# Verdict Execution time Memory Grader output
1 Partially correct 230 ms 336 KB Output is partially correct: Maximum length of a query = 84
2 Partially correct 230 ms 336 KB Output is partially correct: Maximum length of a query = 91
3 Incorrect 360 ms 384 KB Output is not correct: The length of the returned sequence is not N
4 Halted 0 ms 0 KB -