【微软2014实习生及秋令营技术类职位在线測试】题目2 : K-th string

时间限制:10000ms

单点时限:1000ms

内存限制:256MB

Description

Consider a string set that each of them consists of {0, 1} only. All strings in the set have the same number of 0s and 1s. Write a program to find and output the K-th string according to the dictionary order. If such a string doesn’t exist, or the input
is not valid, please output “Impossible”. For example, if we have two ‘0’s and two ‘1’s, we will have a set with 6 different strings, {0011, 0101, 0110, 1001, 1010, 1100}, and the 4th string is 1001.

Input

The first line of the input file contains a single integer t (1 ≤ t ≤ 10000), the number of test cases, followed by the input data for each test case.
Each test case is 3 integers separated by blank space: N, M(2 <= N + M <= 33 and N , M >= 0), K(1 <= K <= 1000000000). N stands for the number of ‘0’s, M stands for the number of ‘1’s, and K stands for the K-th of string in the set that needs to be printed
as output.

Output

For each case, print exactly one line. If the string exists, please print it, otherwise print “Impossible”.

例子输入

3
2 2 2
2 2 7
4 7 47

例子输出

0101
Impossible
01010111011

思路:带有反复字符的全排列问题

import java.lang.String;
import java.lang.StringBuilder;
import java.net.Inet4Address;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

public class Permutation {
	static int sum ;

	public static void main(String[] args)
	{
		int T ;
		Scanner jin = new Scanner(System.in);
		T = jin.nextInt();
		while(T-- > 0)
		{
			int N, M, K;
			StringBuilder stringBuilder = new StringBuilder();
			N = jin.nextInt();M = jin.nextInt();K = jin.nextInt();

			if (!((M+N) >= 2 && (N+M) <= 33)) {
				System.out.println("Impossible");
				continue;
			}

			if(N < 0 || M < 0)
			{
				System.out.println("Impossible");
				continue;
			}

			for (int i = 0; i < N; i++) {
				stringBuilder.append(‘0‘);
			}
			for (int i = 0; i < M; i++) {
				stringBuilder.append(‘1‘);
			}
			sum = 0;
			permutation(stringBuilder.toString().toCharArray(), 0, stringBuilder.length()-1, K);
			if (sum < K) {
				System.out.println("Impossible");
			}
		}
	}
	public static void permutation(char[] str, int start, int end, int K) {
		if (start == end) {
			sum++;
			//System.out.print(sum);
			//System.out.print("	");
			//System.out.print(new String(str));
			//System.out.print("	");
			if (sum == K) {
				System.out.println(new String(str));
				return ;
			}

		}
		else {
			for (int i = start; i <= end; i++) {
				if(!Isduplicated(str, start, i))
				{
					char tmp = str[start];
					str[start] = str[i];
					str[i] = tmp;

					permutation(str, start+1, end, K);

					tmp = str[start];
					str[start] = str[i];
					str[i] = tmp;
				}

			}
		}

	}
	public static boolean Isduplicated(char[] ch, int start, int end) {
		for (int i = start; i < end; i++) {
			if (ch[i] == ch[end]) {
				return true;
			}
		}
		return false;
	}

}

原文地址:https://www.cnblogs.com/ldxsuanfa/p/10774144.html

时间: 2024-10-08 09:40:33

【微软2014实习生及秋令营技术类职位在线測试】题目2 : K-th string的相关文章

【微软2014实习生及秋令营技术类职位在线测试】题目3 : Reduce inversion count

时间限制:10000ms 单点时限:1000ms 内存限制:256MB Description Find a pair in an integer array that swapping them would maximally decrease the inversion count of the array. If such a pair exists, return the new inversion count; otherwise returns the original invers

微软2014实习生及校招秋令营技术类职位,在线编程题目及解答。

题目1 : String reorder 时间限制:10000ms 单点时限:1000ms 内存限制:256MB Description For this question, your program is required to process an input string containing only ASCII characters between '0' and '9', or between 'a' and 'z' (including '0', '9', 'a', 'z'). Y

微软2014实习生在线测试之K-th string

问题描述: Time Limit: 10000msCase Time Limit: 1000msMemory Limit: 256MB Description Consider a string set that each of them consists of {0, 1} only. All strings in the set have the same number of 0s and 1s. Write a program to find and output the K-th str

微软2014编程之美初赛第一场——题目2 : 树

[来源] 题目2 : 树 [分析] 依据输入情况建立起树的模型.树的表示是一个表明父亲节点的数组.核心算法有两个: 计算某一节点的深度.用循环实现,一直向上找父亲节点,直到找到根节点.计算循环的次数即为深度. 计算某一节点的全部子节点.用递归实现. 本题在实现上节点的命名从0至N-1,与题目描写叙述不同. [代码] #include <iostream> #include <vector> using namespace std; vector<int> childre

2014年七月华为校招机试题目--最难的一道, 呵呵!

今天百无聊赖之时, 漫心看到14年的华为校招机试题目, 一共三道, 前两道皆是平平, 第三道却柳暗花明, 让人眼前一亮. 咋一看, 饶有趣味, 看似平淡无奇, 然而却玄机颇深(对我这种弱渣而言).(不过对于ACMer, 好像应该用基础算法, 就能解决!) (然而我也只会基础的算法!!忏愧的紧!!!).如果有幸被大神看到, 能指点我一两招, 不胜感激!  下面是题目和我的详细题解思路(可供巨巨一笑!嘿嘿!). 2014年七月华为校招机试题目: 第三题: 输入一个正整数X,在下面的等式左边的数字之间

2014年安全工程师考试,赶考在线名师授课,一次通过

一.考试时间: 2014年安全工程师考试时间:9月6.7日,具体科目安排如下: 9月6日 9:00—11:30:安全生产法及相关法律知识 14:00—16:30:安全生产管理知识 9月7日 9:00—11:30:安全生产技术 14:00—16:30:安全生产事故案例分析    二.考试科目: 注册安全工程师考试科目分为四科,分别是:<安全生产法及相关法律知识><安全生产管理知识><安全生产技术>和<安全生产事故案例分析>,所有科目必须在连续两个年度内全部通过

腾讯2014实习生笔试题--德梅齐里亚克砝码问题

问题 珠宝商甲需要去鉴定一批41克以下的宝石(可能是41克以下不包括41克的任意重量),他只能携带一个天平和四个砝码去称重,请问他会携带那些重量的砝码?-----2014腾讯暑期实习生附加题第一题 解答: 首先给出问题的答案,聪明的人看到答案的形式就能猜到其中的规律:1,1*2+1=3,(1+3)*2+1=9,(1+3+9)*2+1=27. 德梅齐里亚克砝码问题问题描述: 一位商人有一个40磅的砝码,由于跌落在地而碎成4块.后来,称得每块碎片的重量都是整磅数,而且可以用这4块来称从1至40磅之间

微软2014年12月安全补丁 提醒及时修复

2014年最后一批微软补丁来了,北京时间12月10日凌晨,微软准时发布12月安全公告https://technet.microsoft.com/library/security/ms14-dec  目前服务器安全狗也已第一时间推送安全更新,为避免漏洞被利用遭到攻击,请及时修复服务器安全狗提示给您的系统高危漏洞! 本次安全公告带来7枚补丁,共涉及3个"严重"级别和4个"重要"级别,修复 Windows 系统.IE 浏览器以及 Office 组件中的24处漏洞.这7枚补

微软2014 算法笔试题目1及答案

题目1 : Beautiful String 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 We say a string is beautiful if it has the equal amount of 3 or more continuous letters (in increasing order.) Here are some example of valid beautiful strings: "abc", "cde"