답안 #272333

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
272333 2020-08-18T11:24:58 Z theStaticMind Binary Subsequences (info1cup17_binary) C++14
82 / 100
900 ms 3284 KB
#include<bits/stdc++.h>
#define pb push_back
#define ii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define INF 100000000000000000
#define modulo 1000000007
#define mod 998244353
#define int long long int
using namespace std;

bool f(int x, int y, string& s){
	if(x == 0 && y == 0) return true;
	if(x == y) return false;
	if(x > y){
		s.pb('0');
		return f(x - y - 1, y, s);
	}
	else{
		s.pb('1');
		return f(x, y - x - 1, s);
	}
}

int32_t main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int q;
	cin >> q;
	while(q--){
		int k, ans = 0;
		cin >> k;

		string s;

		for(int i = 0; i <= k/2; i++){
			string t;
			if(f(i, k - i, t)){
				ans += 2;
				if(s.empty() || sz(s) > sz(t)) swap(s, t);
			}
		}

		cout << ans << "\n";
		reverse(all(s));
		for(auto p : s) cout << p << " ";
		cout << "\n";
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 318 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 167 ms 588 KB Output is correct
2 Correct 381 ms 628 KB Output is correct
3 Correct 368 ms 580 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1095 ms 3284 KB Time limit exceeded
2 Halted 0 ms 0 KB -