Submission #291036

# Submission time Handle Problem Language Result Execution time Memory
291036 2020-09-04T15:48:32 Z Autoratch "The Lyuboyn" code (IZhO19_lyuboyn) C++14
0 / 100
1000 ms 5880 KB
#include <bits/stdc++.h>
using namespace std;

const int N = 1<< 18;

int n,k,t,s;
string ss;
bool used[N];

int main()
{
	srand(time(NULL));
	ios_base::sync_with_stdio(0); cin.tie(0);

	cin >> n >> k >> t >> ss;
	for(int i = 0;i < n;i++) if(ss[i]=='1') s+=(1 << i);
	cout << (1 << n) << '\n' << ss << '\n';
	used[s] = true;
	for(int i = 1;i < (1 << n);i++)
	{
		while(true)
		{
			int t = rand()%(1 << n);
			if(used[t]) continue;
			int cnt = 0;
			for(int j = 0;j < n;j++) if(((1 << j)&s)!=((1 << j)&t)) cnt++;
			if(cnt!=k) continue;
			s = t;
			break;
		}
		used[s] = true;
		for(int j = 0;j < n;j++) cout << (bool)((1 << j)&s);
		cout << '\n';
	}
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 384 KB Ok
# Verdict Execution time Memory Grader output
1 Execution timed out 1047 ms 288 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Execution timed out 1089 ms 384 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1090 ms 888 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1077 ms 384 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1090 ms 5880 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1090 ms 888 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1088 ms 1200 KB Time limit exceeded
2 Halted 0 ms 0 KB -