Microsoft online exam for technical posts in 2014, post in 2014

Source: Internet
Author: User

Microsoft online exam for technical posts in 2014, post in 2014

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 ').

Your program shocould reorder and split all input string characters into multiple segments, and output all segments as one concatenated string. The following requirements shoshould also be met,
1. characters in each segment shoshould be in strictly increasing order. for ordering, '9' is larger than '0', 'A' is larger than '9 ', and 'Z' is larger than 'A' (basically following ASCII character order ).
2. Characters in the second segment must be the same as or a subset of the first segment; and every following segment must be the same as or a subset of its previous segment.

Your program shocould output string "<invalid input string>" when the input contains any invalid characters (I. e ., outside the '0'-'9' and 'A'-'Z' range ).

 

Input

Input consists of multiple cases, one case per line. Each case is one string consisting of ASCII characters.

Output

For each case, print exactly one line with the reordered string based on the criteria abve.

Sample Input
Aabbccdd
007799aabbccddeeff113355zz
1234.89898
Abcdefabcdefabcdefaaaaaaaaaaaabbbbbbbbbddddddee
Sample output
Abcdabcd
013579abcdefz013579abcdefz
<Invalid input string>
Abcdefabcdefabcdefabdeabdeabdabdabdabdabaaaaaaa

Description
Consider a string set that each of them consists of {0, 1} only. all strings in the set have the same number of 0 s and 1 s. 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,010 1, 0110,100 1, 1010,110 0 }, 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 ".

Sample Input
3
2 2 2
2 2 7
4 7 47
Sample output
0101
Impossible
01010111011

Description
Find a pair in an integer array that swapping them wowould maximally decrease the inversion count of the array. If such a pair exists, return the new inversion count; otherwise returns the originversion count.

Definition of Inversion: Let (A [0], A [1]… A [n]) be a sequence of n numbers. if I <j and A [I]> A [j], then the pair (I, j) is called inversion of.

Example:
Count (Inversion ({3, 1, 2}) = Count ({3, 1}, {3, 2}) = 2
InversionCountOfSwap ({3, 1, 2}) =>
{
InversionCount ({1, 3, 2}) = 1 <-swapping 1 with 3, decreases inversion count by 1
InversionCount ({2, 1, 3}) = 1 <-swapping 2 with 3, decreases inversion count by 1
InversionCount ({3, 2, 1}) = 3 <-swapping 1 with 2, increases inversion count by 1
}

 

Input
Input consists of multiple cases, one case per line. Each case consists of a sequence of integers separated by comma.

Output
For each case, print exactly one line with the new inversion count or the originversion count if it cannot be supported CED.

Sample Input
3, 1, 2
1, 2, 3, 4, 5
Sample output
1
0

 

 

Description
In a running system, there are using logs produced within a short period of time, we 'd like to know the count of the most frequent logs.

Logs are produced by a few non-empty format strings, the number of logs is N (1 = N = 20000), the maximum length of each log is 256.

Here we consider a log same with another when their edit distance (see note) is = 5.

Also we have a) logs are all the same with each other produced by a certain format string B) format strings have edit distance 5 of each other.

Your program will be dealing with lots of logs, so please try to keep the time cost close to O (nl), where n is the number of logs, and l is the average log length.

Note edit distance is the minimum number of operations (insertdeletereplace a character) required to transform one string into the other, please refer

 

Http://en.wikipedia.org/wiki/Edit_distance for more details.

 

 

Input
Multiple lines of non-empty strings.

Output

The count of the most frequent logs.

Sample Input
Logging started for id: 1
Module ABC has completed its job
Module XYZ has completed its job
Logging started for id: 10
Module? Has completed its job

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.