SPOJ Classical
SPOJ Classical
Example
Input: 1 2 88 42 99 Output: 1 2 88
Added by: Micha Maafiejski Date: 2004-05-01 Time limit: 10s Source limit:50000B Languages: All Resource: Douglas Adams, The Hitchhikers Guide to the Galaxy
2. Prime Generator
Problem code: PRIME1
Peter wants to generate some prime numbers for his cryptosystem. Help him! Your task is to generate all prime numbers between two given numbers!
Input
The input begins with the number t of test cases in a single line (t<=10). In each of the next t lines there are two numbers m and n (1 <= m <= n <= 1000000000, n-m<=100000) separated by a space.
Output
For every test case print all prime numbers p such that m <= p <= n, one number per line, test cases separated by an empty line.
Example
Input: 2 1 10 3 5 Output: 2 3 5 7 3 5
Warning: large Input/Output data, be careful with certain languages (though most should be OK if the algorithm is well designed) Added by: Adam Dzedzej Date: 2004-05-01 Time limit: 6s Source limit:50000B Languages: All
Input
24 lines consisting of pairs of binary strings A and B separated by a single space.
Output
The logical value of: B is a substring of A.
Example
First two lines of input: 1010110010 10110 1110111011 10011 First two lines of output: 1 0 Added by: Adrian Kosowski Date: 2004-05-01 Time limit: 7s Source limit:50000B Languages: WSPC BF ICK
Input
t [the number of expressions <= 100] expression [length <= 400] [other expressions]
Output
The expressions in RPN form, one per line.
Example
Input: 3 (a+(b*c)) ((a+b)*(z+x)) ((a+t)*((b+(a+c))^(c+d))) Output: abc*+ ab+zx+* at+bac++cd+^*
Added by: Micha Maafiejski Date: 2004-05-01 Time limit: 5s Source limit:50000B Languages: All Resource: -
Input
The first line contains integer t, the number of test cases. Integers K are given in the next t lines.
Output
For each K, output the smallest palindrome larger than K.
Example
Input: 2 808 2133 Output: 818 2222 Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-05-01 Time limit: 9s Source limit:50000B Languages: All
6. Simple Arithmetics
Problem code: ARITH
One part of the new WAP portal is also acalculator computing expressions with very long numbers. To make the output look better, the result is formated the same way as is it usually used with manual calculations. Your task is to write the core part of this calculator. Given two numbers and the requested operation, you are to compute the result and print it in the form specified below. With addition and subtraction, the numbers are written below each other. Multiplication is alittle bit more complex: first of all, we make apartial result for every digit of one of the numbers, and then sum the results together.
Input
There is asingle positive integer T on the first line of input (equal to about 1000). It stands for the number of expressions to follow. Each expression consists of asingle line containing apositive integer number, anoperator (one of +, - and *) and the second positive integer number. Every number has at most 500digits. There are no spaces on the line. If the operation is subtraction, the second number is always lower than the first one. No number will begin with zero.
Output
For each expression, print two lines with two given numbers, the second number below the first one, last digits (representing unities) must be aligned in the same column. Put the operator right in front of the first digit of the second number. After the second number, there must be ahorizontal line made of dashes (-). For each addition or subtraction, put the result right below the horizontal line, with last digit aligned to the last digit of both operands. For each multiplication, multiply the first number by each digit of the second number. Put the partial results one below the other, starting with the product of the last digit of the second number. Each partial result should be aligned with the corresponding digit. That means the last digit of the partial product must be in the same column as the digit of the second number. No product may begin with any additional zeros. If aparticular digit is zero, the product has exactly one digit -- zero. If the second number has more than one digit, print another horizontal line under the partial results, and then print the sum of them. There must be minimal number of spaces on the beginning of lines, with respect to other constraints. The horizontal line is always as long as necessary to reach the left and right end of both numbers (and operators) directly below and above it. That means it begins in the same column where the leftmost digit or operator of that two lines (one below and one above) is. It ends in the column where is the rightmost digit of that two numbers. The line can be neither longer nor shorter than specified.
Print one blank line after each test case, including the last one.
Example
Sample Input:
4 12345+67890 324-111 325*4405 1234*4
Sample Output:
12345 +67890 -----80235 324 -111 ---213 325 *4405 ----1625 0 1300 1300 ------1431625 1234 *4 ---4936
Warning: large Input/Output data, be careful with certain languages. Added by: Adrian Kosowski Date: 2004-05-08 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
7. The Bulk!
Problem code: BULK
ACM uses anew special technology of building its transceiver stations. This technology is called Modular Cuboid Architecture (MCA) and is covered by apatent of Lego company. All parts of the transceiver are shipped in unit blocks that have the form of cubes of exactly the same size. The cubes can be then connected to each other. The MCA is modular architecture, that means we can select preferred transceiver configuration and buy only those components we need . The cubes must be always connected "face-to-face", i.e. the whole side of one cube is connected to the whole side of another cube. One cube can be thus connected to at most six other units. The resulting equipment, consisting of unit cubes is called The Bulk in the communication technology slang. Sometimes, anold and unneeded bulk is condemned, put into astorage place, and replaced with anew one. It was recently found that ACM has many of such old bulks that just occupy space and are no longer needed. The director has decided that all such bulks must be disassembled to single pieces to save some space. Unfortunately, there is no documentation for the old bulks and nobody knows the exact number of pieces that form them. You are to write acomputer program that takes the bulk description and computes the number of unit cubes. Each bulk is described by its faces (sides). Aspecial X-ray based machine was constructed that is able to localise all faces of the bulk in the space, even the inner faces, because the bulk can be partially hollow (it can contain empty spaces inside). But any bulk must be connected (i.e. it cannot drop into two pieces) and composed of whole unit cubes.
Input
There is asingle positive integer T on the first line of input (equal to about 1000). It stands for the number of bulks to follow. Each bulk description begins with aline containing single positive integer F, 6 <= F <= 250, stating the number of faces. Then there are F lines, each containing one face description. All faces of the bulk are always listed, in any order. Any face may be divided into several distinct parts and described like if it was more faces. Faces do not overlap. Every face has one inner side and one outer side. No side can be "partially inner and partially outer". Each face is described on asingle line. The line begins with aninteger number P stating the number of points that determine the face, 4 <= P <= 200. Then there are 3 x P numbers, coordinates of the points. Each point is described by three coordinates X,Y,Z (0 <= X,Y,Z <= 1000) separated by spaces. The points are separated from each other and from the number P by two space characters. These additional spaces were added to make the input more human readable. The face can be constructed by connecting the points in the specified order, plus connecting the last point with the first one. The face is always composed of "unit squares", that means every edge runs either in X, Y or Z-axis direction. If we take any two neighbouring points X 1 ,Y 1 ,Z 1 and X 2 ,Y 2 ,Z 2 , then the points will always differ in exactly one of the three coordinates. I.e. it is either X 1 <> X 2 , or Y 1 <> Y 2 , or Z 1 <>
Z 2 , other two coordinates are the same. Every face lies in anorthogonal plane, i.e. exactly one coordinate is always the same for all points of the face. The face outline will never touch nor cross itself.
Output
Your program must print asingle line for every test case. The line must contain the sentence The bulk is composed of V units., where V is the volume of the bulk.
Example
Sample Input:
2 12 4 4 4 4 4 5 4 4 4 4 4 4 12 4 4 6 6 4 4 4 4 4 4 4 4
10 20 10 10 10 10 14 16 14 14 14 14 20 10 10 20 10 10 20 20 10 40 20 30
10 10 10 20 10 10 14 14 14 16 14 14 20 10 10 10 10 40 20 30 10 10 20 20
10 10 10 10 10 20 14 14 14 14 14 16 30 10 20 20 10 10 20 20 10 10 20 20
10 20 10 10 10 10 14 16 14 14 14 14 20 10 20 20 40 40 30 30 10 40 20 30
10 10 10 20 20 20 14 14 14 16 16 16 30 40 10 20 10 40 20 30 40 40 30 30
20 20 20 20 10 20 16 16 16 16 14 16 30 10 20 20 10 10 20 20 10 10 20 20
10 20 20 20 20 20 14 16 16 16 16 16 30 40 20 30 40 40 30 30 10 40 20 30
20 20 10 20 20 20 16 16 14 16 16 16 30 40 30 20 10 40 20 30 40 40 30 30
20 20 20 20 10 20 16 16 16 16 14 16 30 10 20 20 20 20 30 30 20 20 30 30
10 20 20 20 20 20 14 16 16 16 16 16 30 40 30 30 10 10 20 20 10 40 20 30
20 20 10 20 10 15 16 16 14 16 14 14 20 10 30 40 10 40 20 30 10 10 20 20
10 10 10 10 10 20 14 14 14 14 14 16 30 10 20 20 20 20 30 30 20 20 30 30
20 10 20
30 40 20 40 40 20
10 40 20 40 10 20
Sample Output:
The bulk is composed of 992 units. The bulk is composed of 10000 units.
Added by: Adrian Kosowski Date: 2004-05-08 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
Input
There is asingle positive integer T on the first line of input (equal to about 5000). It stands for the number of test cases to follow. Each test case consists of two lines. First line of each test case contains two integer numbers S and C separated by asingle space, 1 <= S < 100, 1 <= C < 100, (S+C) <= 100. The first number, S, stands for the length of the given sequence, the second number, C is the amount of numbers you are to find to complete the sequence. The second line of each test case contains S integer numbers X 1 , X 2 , ... X S separated by aspace. These numbers form the given sequence. The sequence can always be described by apolynomial P(n) such that for every i, X i = P(i). Among these polynomials, we can find the polynomial P min with the lowest possible degree. This polynomial should be used for completing the sequence.
Output
For every test case, your program must print asingle line containing C integer numbers, separated by aspace. These numbers are the values completing the sequence according to the polynomial of the lowest possible degree. In other words, you are to print values P min (S+1), P min (S+2), .... P min (S+C). It is guaranteed that the results P min (S+i) will be non-negative and will fit into the standard integer type.
Example
Sample Input:
4 6 3 1 2 3 4 5 6 8 2 1 2 4 7 11 16 22 29 10 2 1 1 1 1 1 1 1 1 1 2 1 10 3
Sample Output:
7 8 9 37 46 11 56 3 3 3 3 3 3 3 3 3 3
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-05-08 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
9. Direct Visibility
Problem code: DIRVS
Building the GSM network is avery expensive and complex task. Moreover, after the Base Transceiver Stations (BTS) are built and working, we need to perform many various measurements to determine the state of the network, and propose effective improvements to be made. The ACM technicians have aspecial equipment for measuring the strength of electro-magnetic fields, the transceivers power and quality of the signal. This equipment is packed into ahuge knapsack and the technician must move with it from one BTS to another. Unfortunately, the knapsack have not enough memory for storing all of the measured values. It has asmall cache only, that can store values for several seconds. Then the values must be transmitted to the BTS by aninfrared connection (IRDA). The IRDA needs direct visibility between the technician and the BTS. Your task is to find the path between two neighbouring BTSes such that at least one of those BTSes is always visible.
Input
There is asingle positive integer T on the first line of input (equal to about 500). It stands for the number of test cases to follow. Each test case consists of atown description. For simplicity, atown is modelled as arectangular grid of P x Q square fields. Each field is exactly 1metre wide. For each field, anon-negative integer Z i,j is given, representing the height of the terrain in that place, in metres. That means the town model is made of cubes, each of them being either solid or empty. There are no "half solid" cubes. The first line of each test case contains two integer numbers P and Q, separated by asingle space, 1 <= P,Q <= 200. Then there are P lines each containing Q integer numbers separated by aspace. These numbers are Z i,j , where 1 <= i <= P, 1 <= j <= Q and 0 <= Z i,j <= 5000. After the terrain description, there are four numbers R 1 , C 1 , R 2 , C 2 on the last line of each test case. These numbers represent position of two BTSes, 1 <= R 1 ,R 2 <= P, 1 <= C 1 ,C 2 <= Q. The first coordinate (R) determines the row of the town, the second coordinate determines the column. The technician is moving in steps (steps stands for Standard Technicians Elementary Positional Shift). Each step is made between two neighbouring square fields. That means the step is always in North, South, West or East direction. It is not possible to move diagonally. The step between two fields A and B (step from A to B) is allowed only if the height of the terrain in the field B is not very different from the height in the field A. The technician can climb at most 1metre up or descend at most 3metres down in asingle step. At the end of each step, at least one of the two BTSes must be visible. However, there can be some point "in the middle of the step" where no BTS is visible. This is OK and the data is handled by the cache. The BTS is considered visible, if there is adirect visibility between the unit cube just above the terrain on the BTSes coordinates and the cube just above the terrain on the square field, where the technician is. Direct visibility between two cubes means that the line connecting the centres of the two
cubes does not intersect any solid cube. However, the line can touch any number of solid cubes. In other words, consider both the BTS and the technician being points exactly half metre above the surface and in the centre of the appropriate square field. Note that the IRDA beam can go between two cubes that touch each other by their edge, although there is no space between them. It is because such abeam touches both of these two cubes but does not intersect any of them. See the last test case of the sample input for anexample of such asituation.
Output
You are to find the shortest possible path from BTS (R 1 , C 1 ) to BTS (R 2 , C 2 ), meeting the above criteria. All steps must be done between neighbouring fields, the terrain must not elevate or descend too much, and at the end of each step, at least one BTS must be visible. For each test case, print one line containing the sentence The shortest path is M steps long., where M is the number of steps that must be made. If there is no such path, output the sentence Mission impossible!.
Example
Sample Input:
4 5 8 2 2 2 2 1 5 2 2 2 9 2 1 5 2 2 2 9 2 1 6 5 5 5 5 5 5 6 5 7 6 2 2 2 2 2 2 2 2 1 5 8 2 2 2 2 2 2 9 9 2 2 2 5 8 2 2 2 2 2 2 9 9 2 2 5 5 12 5 5 5 5 5 5 9 1 5 9 5 9 1 3
5 2 2 2 2 1 2 2 2 9 2 1 2 2 2 9 2 1
4 2 2 2 2
2 2 2 9 2
2 2 2 9 2
2 2 2 9 2
2 2 2 2 2
2 2 2 9 2
2 2 2 9 2
2 2 2 9 2
2 2 2 2 2
5 1 5 1 5 9 5 5 5 5 5 5 12
5 5 5 5 5 5
5 5 5 5 5 5
5 5 5 5 5 5
5 5 5 5 5 5
5 5 5 5 5 5
5 5 5 5 5 5
5 5 5 5 5 5
Sample Output:
The shortest path is 10 steps long. Mission impossible! The shortest path is 14 steps long. The shortest path is 18 steps long.
Added by: Adrian Kosowski Date: 2004-05-08 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
Input
There is asingle positive integer T on the first line of input (equal to about 10000). It stands for the number of expressions to follow. Each expression consists of asingle line containing only lowercase letters, operators (+, -, *, /) and parentheses (( and )). The letters are variables that can have any value, operators and parentheses have their usual meaning. Multiplication and division have higher priority then subtraction and addition. All operations with the same priority are computed from left to right (operators are left-associative). There are no spaces inside the expressions. No input line contains more than 250 characters.
Output
Print asingle line for every expression. The line must contain the same expression with unneeded parentheses removed. You must remove as many parentheses as possible without changing the semantics of the expression. The semantics of the expression is considered the same if and only if any of the following conditions hold: The ordering of operations remains the same. That means "(a+b)+c" is the same as "a+b+c", and "a+(b/c)" is the same as "a+b/c". The order of some operations is swapped but the result remains unchanged with respect to the addition and multiplication associativity. That means "a+(b+c)" and "(a+b)+c" are the same. We can also combine addition with subtraction and multiplication with division, if the subtraction or division is the second operation. For example, "a+(b-c)" is the same as "a+b-c". You cannot use any other laws, namely you cannot swap left and right operands and you cannot replace "a-(b-c)" with "a-b+c".
Example
Sample Input:
8 (a+(b*c)) ((a+b)*c) (a*(b*c)) (a*(b/c)*d) ((a/(b/c))/d) ((x)) (a+b)-(c-d)-(e/f) (a+b)+(c-d)-(e+f)
Sample Output:
a+b*c (a+b)*c a*b*c a*b/c*d a/(b/c)/d x a+b-(c-d)-e/f a+b+c-d-(e+f)
Added by: Adrian Kosowski Date: 2004-05-09 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
11. Factorial
Problem code: FCTRL
The most important part of aGSM network is so called Base Transceiver Station (BTS). These transceivers form the areas called cells (this term gave the name to the cellular phone) and every phone connects to the BTS with the strongest signal (in alittle simplified view). Of course, BTSes need some attention and technicians need to check their function periodically. ACM technicians faced avery interesting problem recently. Given aset of BTSes to visit, they needed to find the shortest path to visit all of the given points and return back to the central company building. Programmers have spent several months studying this problem but with no results. They were unable to find the solution fast enough. After along time, one of the programmers found this problem in aconference article. Unfortunately, he found that the problem is so called "Travelling Salesman Problem" and it is very hard to solve. If we have N BTSes to be visited, we can visit them in any order, giving us N! possibilities to examine. The function expressing that number is called factorial and can be computed as aproduct 1.2.3.4....N. The number is very high even for arelatively small N. The programmers understood they had no chance to solve the problem. But because they have already received the research grant from the government, they needed to continue with their studies and produce at least some results. So they started to study behaviour of the factorial function. For example, they defined the function Z. For any positive integer N, Z(N) is the number of zeros at the end of the decimal form of number N!. They noticed that this function never decreases. If we have two numbers N 1 <N 2 , then Z(N 1 ) <= Z(N 2 ). It is because we can never "lose" any trailing zero by multiplying by any positive number. We can only get new and new zeros. The function Z is very interesting, so we need acomputer program that can determine its value efficiently.
Input
There is asingle positive integer T on the first line of input (equal to about 100000). It stands for the number of numbers to follow. Then there are T lines, each containing exactly one positive integer number N, 1 <= N <= 1000000000.
Output
For every number N, output asingle line containing the single non-negative integer Z(N).
Example
Sample Input:
Sample Output:
0 14 24 253 5861 2183837
Added by: Adrian Kosowski Date: 2004-05-09 Time limit: 6s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
Input
There is asingle positive integer T on the first line of input. It stands for the number of test cases to follow. Each test case describes one game situation and you are to make aguess. On the first line of each test case, there are three integer numbers, P, C and M. P ( 1 <= P <= 10) is the number of pins, C (1 <= C <= 100) is the number of colours, and M (1 <= M <= 100) is the number of already played guesses. Then there are 2 x M lines, two lines for every guess. At the first line of each guess, there are P integer numbers representing colours of the guess. Each colour is represented by anumber G i , 1 <= G i <= C. The second line contains two integer numbers, B and W, stating for the number of black and white points given by the corresponding hint. Lets have asecret code S 1 , S 2 , ... S P and the guess G 1 , G 2 , ... G P . Then we can make aset H containing pairs of numbers (I,J) such that S I = G J , and that any number can appear at most once on the first position and at most once on the second position. That means for every two different pairs from that set, (I 1 ,J 1 ) and (I 2 ,J 2 ), we have I 1 <> I 2 and J 1 <> J 2 . Then we denote B(H) the number
of pairs in the set, that meet the condition I = J, and W(H) the number of pairs with I <> J. We define anordering of every two possible sets H 1 and H 2 . Lets say H 1 <= H 2 if and only if one of the following holds: B(H 1 ) < B(H 2 ), or B(H 1 ) = B(H 2 ) and W(H 1 ) <= W(H 2 ) Then we can find amaximal set H max according to this ordering. The numbers B(H max ) and W(H max ) are the black and white points for that hint.
Output
For every test case, print the line containing P numbers representing P colours of the next guess. Your guess must be valid according to all previous guesses and hints. The guess is valid if the sequence could be asecret code, i.e. the sequence was not eliminated by previous guesses and hints. If there is no valid guess possible, output the sentence You are cheating!. If there are more valid guesses, output the one that is lexicographically smallest. I.e. find such guess G that for every other valid guess V there exists such anumber I that: G J = V J for every J<I, and G I <V I .
Example
Sample Input:
3 4 1 1 2 1 4 3 3 4 2 8 1 0 2 1 3 2 3 2 1 1 1 6 3 0 4 0 9 2 0 3 0 4 0 2 3 2 3 2 2 3 3 4 4 3 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 9
Sample Output
1 1 1 3 You are cheating! 9 9 9 9 9 9 9 9
Added by: Adrian Kosowski Date: 2004-05-09 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
13. Hotline
Problem code: HOTLINE
Every customer sometimes needs help with new and unusual products. Therefore, hotline service is very important for every company. We need asingle phone number where the customer can always find afriendly voice ready to help with anything. On the other hand, many people are needed to serve as hotline operators, and human resources are always very expensive. Moreover, it is not easy to pretend "friendly voice" at 4am and explain to adrunken man that you are really unable to give him the number to House of Parliament. It was also found that some of the questions repeat very often and it is very annoying to answer them again and again. ACM is amodern company, wanting to solve its hotline problem. They want to decrease the number of human operators by creating acomplex software system that would be able to answer most common questions. The customers voice is analysed by aspecial Voice Recognition Module (VRM) and converted to aplain text. The text is then taken by an Artificial Automatic Adaptive Answering Algorithm (AAAAA). The most common questions are recognised and answered automatically. The replies are then converted to asound by Text-to-Speech Module (TTS). You are to write the AAAAA module. Because your algorithm should be adaptive, it has no explicit knowledge base. But it must be able to listen to sentences in English and remember the mentioned facts. Whenever the question is asked about such afact, the system has to answer it properly. The VRM and TTS modules are already implemented, so the input and output of AAAAA will be in the text form.
Input
There is asingle positive integer T on the first line of input. It stands for the number of dialogues to follow. Each dialogue consists of zero or more lines, each of them containing one sentence: either statement or question. The statement ends with adot character (.), the question ends with aquestion mark (?). No statement will appear more than once, however the questions can be repeated. There is one extra line after each dialogue. That line ends with anexclamation mark (!). Sentences can contain words, spaces and punctuation characters (such as commas, colons, semicolons etc.). All words contain only letters of English alphabet and are case-sensitive. That means the same word is always written the same way, usually in lowercase. Acronyms, names and some other words can begin with capital letters. For simplicity, all sentences begin with alowercase letter. Only if the first word should be written with acapital, the sentence begins with acapital letter. There are no unneeded spaces between words. No line will have more than 100 characters. There will be at most 100 statements per each test case. Statements Each statement has one of the following two forms ( _ denotes aspace): subject _predicate[s] [ _object] . subject _dont|doesnt _predicate [ _object] .
The square brackets mark anoptional part, the vertical line two possible variants. Subject is asingle word, noun or pronoun in singular. Predicate is averb (single word) denoting some activity. Object can be any text. Object does not contain any dots. Any pair "verb + object" determines unique activity. The same verb with different objects makes different independent activities, i.e. the different and independent meaning of the sentence. Sentence without any object can be considered as sentence with anempty object. The verb without anobject has different and independent meaning than the same verb with any non-empty object. The first variant of sentence denotes apositive statement. The word "predicate[s]" means verb that matches the subject of the sentence. If the subject is "I" or "you", the verb has the same form as the infinitive. With any other subject, the letter "s" is appended on the end of the verb. Assume there are no irregular verbs. The second variant is anegative statement. Verb "dont" or "doesnt" must also match the subject. The form "dont" is used with either "I" or "you", "doesnt" is used in any other case. Aspecial generic subject "everybody" can be used. It means the activity holds for any subject. Other special subject is "nobody". Such sentence also holds for any subject, but its meaning is negative. Both of these generic subjects can be used with the first variant only (without "doesnt"). The sentence "nobody likes something" is exactly equal to "everybody doesnt like something", except the latter form will never occur in the input. Questions Each question has one of the following three forms: 1. 2. 3. do|does _subject _predicate [ _object] ? who _predicates [ _object] ? what _do|does _subject do ?
The word "do|does" always matches the subject ("do I?", "do you?", "does any other subject?"). In the second type of question, predicate always matches the word "who", i.e. the "s" is always appended. Generic subjects cannot be used in questions.
Output
For each dialogue, your program must output the line Dialogue #D:, where D is the sequence number of dialogue, starting with 1. Then print exactly three lines for every question: the first line repeats the question, the second line contains the answer, and the third line is empty. Print nothing for statements. After each dialogue, print the same line with anexclamation mark that was in the input. Then print one extra empty line. Empty line contains anew-line character only. The answer must be properly formated to be accepted by aTTS module. Only the statements appearing in the input before the answer are used for the corresponding reply. If there is any contradiction among statements, the reply is always I am abroad.. If the question and statements consider the special subject "you", it must be replaced with "I" in the answer. If the question considers special subject "I", it must be replaced with "you" in the answer. The verb must always match the subject of the sentence. The exact form of the correct answer depends on the type of question.
1.does subject predicate [object] ? If there is any positive statement about the mentioned subject (or generic subject "everybody"), predicate and object, the answer is: yes, _subject _predicate[s] [ _object] . If there is any negative statement about the mentioned subject (or generic subject "nobody"), predicate and object, the answer is: no, _subject _dont|doesnt _predicate [ _object] . Otherwise, the answer is: maybe. Subject in the answer is always the same subject as the subject of the question. 2.who predicates [object] ? If there is apositive statement considering any subject, the specified predicate and object, the answer is: subject _predicate[s] [ _object] . If two or more subjects match the activity, replace the subject in the answer with enumeration of all such subjects, in the same order as the corresponding statements have appeared in the input. Subjects are separated with comma and space, last two subjects are separated with the word "and". If "everybody" belongs to the group of enumerated subjects, do not enumerate subjects, and print "everybody" only. If the enumeration contains at least two subjects, the predicate matches the plural subject (i.e. verb is without trailing "s"), otherwise it matches the only subject. subject1 , _subject2 _and _subject3 predicate [ _object] . If there is anegative statement considering the generic subject "nobody", the specified predicate and object, the answer is: nobody _predicates [ _object] . Otherwise, the answer is: I dont know. 3.what does subject do ? If there are one or more sentences (both positive and negative) considering the specified subject (or ageneric subject "everybody" or "nobody"), all verbs and objects from such sentences must be included in areply in the same order as the corresponding sentences have appeared in the input. No verb-object pair can be included more than once (the eventual second appearance must be skipped). The verb-object pairs are separated by acomma followed by aspace, the last verb is separated by acomma and the word "and". Please note the comma is printed here although there was no comma when separating the subjects in the previous type of answer (see above). The negative answers have the same form as the statements, that means the verb "dont" or "doesnt" is used: subject [ _dont|doesnt] _predicate1[s] [ _object1] , [ _dont|doesnt] _predicate2[s] [ _object2] , _and [ _dont|doesnt] _predicate3[s] [ _object3] . subject [ _dont|doesnt] _predicate1[s] [ _object1] , _and [ _dont|doesnt] _predicate2[s] [ _object2] . subject [ _dont|doesnt] _predicate[s] [ _object] .
Example
Sample Input:
1 I like hotdogs. nobody likes to work. everybody smiles. what do I do? who smiles? what do you do? does Joe smile? do I like to work? everybody hurts sometimes. who walks there? Michal walks there. who walks there? what does Michal do? do you understand? nobody walks there. do you understand now? bye!
Sample Output:
Dialogue #1: what do I do? you like hotdogs, dont like to work, and smile. who smiles? everybody smiles. what do you do? I dont like to work, and smile. does Joe smile? yes, Joe smiles. do I like to work? no, you dont like to work. who walks there? I dont know. who walks there? Michal walks there. what does Michal do? Michal doesnt like to work, smiles, hurts sometimes, and walks there. do you understand? maybe. do you understand now? I am abroad. bye!
Added by: Adrian Kosowski Date: 2004-05-09 Time limit: 2s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
14. I-Keyboard
Problem code: IKEYB
Most of you have probably tried to type anSMS message on the keypad of acellular phone. It is sometimes very annoying to write longer messages, because one key must be usually pressed several times to produce asingle letter. It is due to alow number of keys on the keypad. Typical phone has twelve keys only (and maybe some other control keys that are not used for typing). Moreover, only eight keys are used for typing 26letters of anEnglish alphabet. The standard assignment of letters on the keypad is shown in the left picture: 1 4 ghi 7 pqrs * 2 abc 5 jkl 8 tuv 0 space 3 def 6 mno 9 wxyz # 1 4 hijk 7 rs * 2 abcd 5 lm 8 tuv 0 space 3 efg 6 nopq 9 wxyz #
There are 3 or 4 letters assigned to each key. If you want the first letter of any group, you press that key once. If you want the second letter, you have to press the key twice. For other letters, the key must be pressed three or four times. The authors of the keyboard did not try to optimise the layout for minimal number of keystrokes. Instead, they preferred the even distribution of letters among the keys. Unfortunately, some letters are more frequent than others. Some of these frequent letters are placed on the third or even fourth place on the standard keyboard. For example, S is avery common letter in anEnglish alphabet, and we need four keystrokes to type it. If the assignment of characters was like in the right picture, the keyboard would be much more comfortable for typing average English texts. ACM have decided to put anoptimised version of the keyboard on its new cellular phone. Now they need acomputer program that will find anoptimal layout for the given letter frequency. We need to preserve alphabetical order of letters, because the user would be confused if the letters were mixed. But we can assign any number of letters to asingle key.
Input
There is asingle positive integer T on the first line of input (equal to about 2000). It stands for the number of test cases to follow. Each test case begins with aline containing two integers K, L (1 <= K <= L <= 90) separated by asingle space. K is the number of keys, L is the number of letters to be mapped onto those keys. Then there are two lines. The first one contains exactly K characters each representing aname of one key. The second line contains exactly L characters representing names of letters of analphabet. Keys and letters are represented by digits, letters (which are case-sensitive), or any punctuation characters (ASCII code between 33 and 126 inclusively). No two keys have the same character, no two letters are the same. However, the name of aletter can be used also as aname for
akey. After those two lines, there are exactly L lines each containing exactly one positive integer F 1 , F 2 , ... F L . These numbers determine the frequency of every letter, starting with the first one and continuing with the others sequentially. The higher number means the more common letter. No frequency will be higher than 100000.
Output
Find anoptimal keyboard for each test case. Optimal keyboard is such that has the lowest "price" for typing average text. The price is determined as the sum of the prices of each letter. The price of aletter is aproduct of theletter frequency (F i ) and its position on the key. The order of letters cannot be changed, they must be grouped in the given order. If there are more solutions with the same price, we will try to maximise the number of letters assigned to the last key, then to the one before the last one etc. More formally, you are to find asequence P 1 , P 2 , ... P L representing the position of every letter on aparticular key. The sequence must meet following conditions: P1 = 1 for each i>1, either P i = P i-1 +1 or P i = 1 there are at most K numbers P i such that P i = 1 the sum of products S P = Sum[i=1..l] F i .P i is minimal for any other sequence Q meeting these criteria and with the same sum S Q = S P , there exists such M, 1 <= M <= L that for any J, M<J <= L, P J = Q J , and P M >Q M . The output for every test case must start with asingle line saying Keypad #I:, where I is asequential order of the test case, starting with 1. Then there must be exactly K lines, each representing one letter, in the same order that was used in input. Each line must contain the character representing the key, acolon, one space and alist of letters assigned to that particular key. Letters are not separated from each other. Print one blank line after each test case, including the last one.
Example
Sample Input:
1 8 26 23456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ 3371 589 1575 1614 6212 971 773 1904 2989
123 209 1588 1513 2996 3269 1080 121 2726 3083 4368 1334 518 752 427 733 871
Sample Output:
Keypad #1: 2: ABCD 3: EFG 4: HIJK 5: LM 6: NOPQ 7: RS 8: TUV 9: WXYZ
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-05-09 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 2000
Input
Number N of test cases in a single line. ( N <= 30 ) Each of the next N lines consists of 6 integer numbers -- the lengths of the edges of a tetrahedron separated by single spaces. The edges are not longer than 1000 and for the tetrahedron WXYZ, the order of the edges is: WX, WY, WZ, XY, XZ, YZ.
Output
N lines, each consisting of a real number given with four digits decimal precision equal to the radius of a sphere inscribed in the given tetrahedron.
Example
Input: 2 1 1 1 1 1 1 1000 999 998 5 5 6 Output: 0.2041 1.4189
Added by: Adam Dzedzej Date: 2004-05-11 Time limit: 1s Source limit:50000B Languages: All
Input
The encrypted timestamp.
Output
The decryptedGMT time and date of attack, somewhere between 1970 and 2030,using standard 26 character formatting.
Example
Input: 1749870067 Output: Sun Jun 13 16:20:39 2004
Added by: Adrian Kosowski Date: 2004-05-13 Time limit: 1s Source limit:10000B Languages: All Resource: ;)
Input
An encrypted 3-digit positive integer.
Output
The decrypted value.
Example
Input:
699
Output:
700
Added by: Adrian Kosowski Date: 2004-05-28 Time limit: 1s Source limit:50000B Languages: BF Resource: Sometimes the simplest language is the most pleasing.
Input
The number provided by the cryptographer (a positive integer of at most 99 decimal digits). The input ends with a new line symbol.
Output
The value of u.
Example
Input: 1 Output: 2
Adrian Kosowski 2004-05-29 3s 50000B BF ICK Sadly, the ability to make a simple problem difficult to understand is seldom considered a talent.
Input
The first line of input contains a single integer t<=200 denoting the number of test cases. t test case descriptions follow. For each test case, the first line contains one integer m which is some upper bound on the length of the cypher (1<=n<=m<=100000). The second line of input contains the original message x, while the third line contains the encrypted message y. The messages are expressed using characters A-Z (interpreted as integers 0-25) and * (denoting a single character illegible due to damage). The total length of the input file is not more than 2MB.
Output
For each test case output a single line containing the original message x, with asterisks * in place of only those characters whose value cannot be determined.
Example
Input: 4 1 A*X*C **CM* 4 *B***A AAAAAA 6 *B***A AAAAAA
Warning: large Input/Output data, be careful with certain languages. The time limit is strict for this problem. Added by: Konrad Piwakowski Date: 2004-11-16 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004 (problemset 3)
Input
In the first line integer n - the number of test cases (equal to about 1000). The next n lines - 4 floating point values: the length of side a, and distances from the centroid to sides a, b and c.
Output
n lines consisting of 2 floating point values with 3 digits after the decimal point: the area of the triangle and the distance from the orthocenter to centroid.
Example
Input: 2 3.0 0.8660254038 0.8660254038 0.8660254038 657.8256599140 151.6154399062 213.5392629932 139.4878846649 Output: 3.897 0.000 149604.790 150.275
Added by: Patryk Pomykalski Date: 2004-05-22 Time limit: 1s Source limit:50000B Languages: All
23. Pyramids
Problem code: PIR
Recently in Farland, a country in Asia, the famous scientist Mr. Log Archeo discovered ancient pyramids. But unlike those in Egypt and Central America, they have a triangular (not rectangular) foundation. That is, they are tetrahedrons in the mathematical sense. In order to find out some important facts about the early society of the country (it is widely believed that the pyramid sizes are closely connected with Farlands ancient calendar), Mr. Archeo needs to know the volume of the pyramids. Unluckily, he has reliable data about their edge lengths only. Please, help him!
Input
t [number of tests to follow] In each of the next t lines six positive integer numbers not exceeding 1000 separated by spaces (each number is one of the edge lengths of the pyramid ABCD). The order of the edges is the following: AB, AC, AD, BC, BD, CD.
Output
For each test output a real number - the volume, printed accurate to four digits after decimal point.
Example
Input: 2 1 1 1 1 1 1 1000 1000 1000 3 4 5 Output: 0.1179 1999.9937
Added by: Adam Dzedzej Date: 2004-05-14 Time limit: 1s Source limit:10000B Languages: All Resource: ACM ICPC 2002-2003 NEERC, Northern Subregion
Input
An integer t, 1<=t<=100, denoting the number of testcases, followed by t lines, each containing a single integer n, 1<=n<=100.
Output
For each integer n given at input, display a line with the value of n!
Example
Sample input:
4 1 2 5 3
Sample output:
1 2 120 6
Added by: Adrian Kosowski Date: 2004-05-28 Time limit: 1s Source limit:2000B Languages: All
Input
An integer t, 1<=t<=100, denoting the number of testcases, followed by t sets of input data, each consisting of three positive integers a, b, c, not larger than 40000, given in separate lines.
Output
For each set of input data, output the minimum number of steps required to obtain c litres, or -1 if this is impossible.
Example
Sample input:
2 5 2 3 2 3 4
Sample output:
2 -1
Added by: Adrian Kosowski Date: 2004-05-31 Time limit: 1s Source limit:50000B Languages: All Resource: An ancient problem, formulated in these words by Mr Tadeusz Ratajczak
Input
t [the number of tests <= 100] [empty line] n [the number of sheep <= 100000] x 1 y 1 [coordinates of the first sheep] ... xn yn [integer coordinates from -10000 to 10000] [empty line] [other lists of sheep] Text grouped in [ ] does not appear in the input file. Assume that sheep are numbered in the input order.
Output
o [length of circumference, 2 digits precision] p1 p2 ... pk [the sheep that are standing in the corners of the fence; the first one should be positioned bottommost and as far to the left as possible, the others ought to be written in anticlockwise order; ignore all sheep standing in the same place but the first to appear in the input file; the number of sheep should be the smallest possible] [empty line] [next solutions]
Example
Input: 8 5 0 0 0 5 10 5 3 3 10 0
1 0 0 3 0 0 1 0 2 0 4 0 0 0 1
0 0 1 0
2 1 26.98 1 2 3 5 4
Warning: large Input/Output data, be careful with certain languages Added by: Micha Maafiejski Date: 2004-06-01 Time limit: 7s Source limit:50000B Languages: All Resource: -
Input
t [the number of tests <= 5] n [the number of accounts<= 100 000] [list of accounts] [empty line] [next test cases]
Output
[sorted list of accounts with the number of repeated accounts] [empty line] [other results]
Example
Input: 2 6 03 10103538 03 10103538 30 10103538 30 10103538 30 10103538 30 10103538
5 30 10103538 2222 1233 6160 0144 30 10103538 2222 1233 6160 0142 30 10103538 2222 1233 6160 0145
30 10103538 2222 1233 6160 0146 30 10103538 2222 1233 6160 0143 Output: 03 10103538 03 10103538 30 10103538 30 10103538 30 30 30 30 30 10103538 10103538 10103538 10103538 10103538
1 1 2 2 1 1 1 1 1
Added by: Micha Maafiejski Date: 2004-06-01 Time limit: 7s Source limit:50000B Languages: All Resource: -
Input
s [the number of tests <= 10] p [the number of boys at conscription age <= 100000] PESEL and MRO code z [the number of closed down MRO points <= 100000] old_code new_code [old_code - the code of closed down MRO, new_code - its new MRO code] p [the number of recruits <= 100000] PESEL [PESEL code of recruit] [empty line] [next tests]
Output
one PESEL and MRO code per line in the order of input [empty line between tests] [other results]
Example
Input: 1 4 84101011111 84010122222 84010233333 84020255555 1 GDA2 GDA1 3 84101011111 84010122222 84020255555
Warning: large Input/Output data, be careful with certain languages Added by: Micha Maafiejski Date: 2004-06-01 Time limit: 30s Source limit:50000B Languages: All Resource: -
Input
t [the number of test cases <= 100] n 1 [the number of operations (one per line)[<= 1000] ADD:string [or] DEL:string [other test cases, without empty lines betwee series]
Output
For every test case you have to create a new table, insert or delete keys, and write to the output: the number of keys in the table [first line] index:key [sorted by indices]
Example
Input: 1 11 ADD:marsz ADD:marsz ADD:Dabrowski ADD:z ADD:ziemii ADD:wloskiej ADD:do
Added by: Micha Maafiejski Date: 2004-06-01 Time limit: 3s Source limit:50000B Languages: All Resource: -
Input
s [number of test cases <= 10] n [number of cities <= 10 000] NAME [city name] p [number of neigbouring cities to the city NAME] neigh cost [neigh - the unique number of city from the main list cost - the cost of building the blingors connection from NAME to neigh] [empty line between test cases]
Output
[separate lines] cost [the minimum cost of building the blingors network]
Example
Input: 2 4 gdansk 2 2 1 3 3 bydgoszcz 3 1 1
Output: 3 4
Warning: large Input/Output data, be careful with certain languages Added by: ukasz Kuszner Date: 2004-06-01 Time limit: 4s Source limit:50000B Languages: All Resource: PAL
Input
n [the number of multiplications <= 1000] l1 l2 [numbers to multiply (at most 10000 decimal digits each)] Text grouped in [ ] does not appear in the input file.
Output
The results of multiplications.
Example
Input: 5 4 2 123 43 324 342 0 12 9999 12345 Output: 8 5289 110808 0 123437655
Warning: large Input/Output data, be careful with certain languages Added by: Darek Dereniowski Date: 2004-06-01 Time limit: 2s Source limit:50000B Languages: All Resource: PAL
Input
The input consists of a number of test cases. Each test case is composed of three lines, containing: the length of the needle, the needle itself, the haystack. The length of the needle is only limited by the memory available to your program, so do not make any assumptions - instead, read the length and allocate memory as needed. The haystack is not limited in size, which implies that your program should not read the whole haystack at once. The KMP algorithm is stream-based, i.e. it processes the haystack character by character, so this is not a problem. The test cases come one after another, each occupying three lines, with no additional space or line breaks in between.
Output
For each test case your program should output all positions of the needles occurences within the haystack. If a match is found, the output should contain the position of the first character of the match. Characters in the haystack are numbered starting with zero. For a given test case, the positions output should be sorted in ascending order, and each of these should be printed in a separate line. For two different test cases, the positions should be separated by an empty line.
Example
Sample input:2 na banananobano 6 foobar
Sample output:
2 4 3 9 15 21
Note the double empty line in the output, which means that no match was found for the second test case. Warning: large Input/Output data, be careful with certain languages Added by: Micha Maafiejski Date: 2004-06-03 Time limit: 5s Source limit:50000B Languages: All Resource: the problem was phrased and test data was supplied by Mr. Maciej hawk Jarzbski
33. Trip
Problem code: TRIP
Alice and Bob want to go on holiday. Each of them has drawn up a list of cities to be visited in turn. A list may contain a city more than once. As they want to travel together, they have to agree upon a common route. No one wants to change the order of the cities on his list or add other cities. Therefore they have no choice but to remove some cities from the list. Of course the common route is to involve as much sight-seeing in cities as possible. There are exactly 26 cities in the region. Therefore they are encoded on the lists as lower case letters from a to z.
Input
The first line of input contains a number T <= 10 that indicates the number of test cases to follow. Each test case consists of two lines; the first line is the list of Alice, the second line is the list of Bob. Each list consists of 1 to 80 lower case letters.
Output
The output for each test case should contain all different trips exactly once that meet the conditions described above. There is at least one such trip, but never more than 1000 different ones. You should order the trips in lexicographic order. Print one blank line between the output of different test cases.
Example
Input
1 abcabcaa acbacba
Output
ababa abaca abcba acaba acaca acbaa acbca
Added by: Adrian Kuegel Date: 2004-06-05 Time limit: 3s Source limit:50000B Languages: All except: TECS Resource: own problem, used in CEOI 2003
Input
The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing three integers X, Y, M separated by space. The numbers satisfy conditions: 1 <= X,Y <=10000, 1 <= M <= 1000. The numbers X and Yindicate the dimensions of the Large Room which has arectangular shape. The number M stands for the number of holes. Then exactly M lines follow, each containing two integer numbers U i and V i (0 <= U i <= X, 0 <= V i <= Y) indicating the coordinates of one hole. There may be several holes at the same position.
Output
Print exactly one line for each test case. The line should contain the sentence "The safest point is (P, Q)." where P and Qare the coordinates of the point in the room that has the maximum distance from the nearest hole, rounded to the nearest number with exactly one digit after the decimal point (0.05 rounds up to 0.1).
Example
Sample Input: 3 1000 50 1 10 10 100 100 4 10 10 10 90 90 10 90 90 3000 3000 4 1200 85 63 2500 2700 2650 2990 100 Sample output: The safest point is (1000.0, 50.0). The safest point is (50.0, 50.0). The safest point is (1433.0, 1669.8).
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of T test cases (T is equal to about 10000). The number of them (T) is given on the first line of the input file. Each test case consists of a single line. The line contains exactly four integer numbers separated by spaces: A, B, X and Y. A and Bindicate the dimensions of the tiles, X and Y are the dimensions of the equipment box (1 <= A,B,X,Y <= 50000).
Output
Your task is to determine whether it is possible to put the box on asingle tile -- that is, if the whole box fits on asingle tile without touching its border. If so, you are to print one line with the sentence "Escape is possible.". Otherwise print the sentence "Box cannot be dropped.".
Example
Sample Input: 2 10 10 8 8 8 8 10 10 Sample output: Escape is possible. Box cannot be dropped.
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of T test cases (equal to about 100000). The number of them (T) is given on the first line of the input file. Each test case consists of one single line containing four integer numbers X r , X i , B r , B i (|X r |,|X i | <= 1000000, |B r |,|B i | <= 16). These numbers indicate the real and complex components of numbers X and B, i.e. X = X r + i.X i , B = B r + i.B i . B is the basis of the system (|B| > 1), X is the number you have to express.
Output
Your program must output a single line for each test case. The line should contain the digits a n , a n-1 , ..., a 1 , a 0 , separated by commas. The following conditions must be satisfied: for all i in {0, 1, 2, ...n}: 0 <= a i < |B| X = a 0 + a 1 B + a 2 B 2 + ...+ a n B n if n > 0 then a n <> 0 n <= 100 If there are no numbers meeting these criteria, output the sentence "The code cannot be decrypted.". If there are more possibilities, print any of them.
Example
Sample Input 4 -935 2475 -11 -15 1 0 -3 -2 93 16 3 2 191 -192 11 -12 Sample output: 8,11,18 1 The code cannot be decrypted. 16,15
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing two integers R and C (1 <= R,C <= 100) indicating the key size. Then exactly R rows follow, each containing C characters. Each character is either a hash mark (#) or a period (.). A hash mark represents one square field made of wood; a period is an empty field. The wooden fields are always connected, i.e. the whole key is made of one piece. Moreover, the key remains connected even if we cut off arbitrary number of rows from its top. There is always at least one non-empty field in the top-most and bottom-most rows and the left-most and right-most columns. After the key description, there is a line containing two integers D and W (1 <= D <= 10000, 1 <= W <= 1000). The number W is the lock width, and D is its depth. The next D lines contain W characters each. The character may be either a hash mark (representing the wood) or a period (the free space).
Output
Your program should print one line of output for each test case. The line should contain the statement "The key falls to depth X.". Replace X with the maximum depth to which the key can be inserted by moving it down and sliding it to the left or right only. The depth is measured as the distance between the bottom side of the key and the top side of the lock. If it is possible to move the key through the whole lock and take it away at the bottom side, output the sentence "The key can fall through.".
Example
Sample Input: 4 2 4 #.## ###. 3 6 #....# #....# #..### 2 3 ##. .## 2 7 #.#.#.# .#.#.#. 1 1 # 1 10 ###....### 3 2 ## .# .# 1 5 #.#.#
Sample output: The The The The key key key key falls to falls to can fall falls to depth 2. depth 0. through. depth 2.
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
38. Labyrinth
Problem code: LABYR1
The northern part of the Pyramid contains a very large and complicated labyrinth. The labyrinth is divided into square blocks, each of them either filled by rock, or free. There is also a little hook on the floor in the center of every free block. The ACM have found that two of the hooks must be connected by a rope that runs through the hooks in every block on the path between the connected ones. When the rope is fastened, a secret door opens. The problem is that we do not know which hooks to connect. That means also that the neccessary length of the rope is unknown. Your task is to determine the maximum length of the rope we could need for a given labyrinth.
Input
The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing two integers C and R (3 <= C,R <= 1000) indicating the number of columns and rows. Then exactly R lines follow, each containing C characters. These characters specify the labyrinth. Each of them is either a hash mark (#) or a period (.). Hash marks represent rocks, periods are free blocks. It is possible to walk between neighbouring blocks only, where neighbouring blocks are blocks sharing acommon side. We cannot walk diagonally and we cannot step out of the labyrinth. The labyrinth is designed in such a way that there is exactly one path between any two free blocks. Consequently, if we find the proper hooks to connect, it is easy to find the right path connecting them.
Output
Your program must print exactly one line of output for each test case. The line must contain the sentence "Maximum rope length is X." where Xis the length of the longest path between any two free blocks, measured in blocks.
Example
Sample Input: 2 3 3 ### #.# ### 7 6 ####### #.#.### #.#.### #.#.#.# #.....# #######
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
39. Piggy-Bank
Problem code: PIGBANK
Before ACM can do anything, abudget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound Money (IBM). The idea behind is simple. Whenever some ACM member has any small money, he takes all the coins and throws them into a piggy-bank. You know that this process is irreversible, the coins cannot be removed without breaking the pig. After a sufficiently long time, there should be enough cash in the piggy-bank to pay everything that needs to be paid. But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
Input
The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing two integers E and F. They indicate the weight of an empty pig and of the pig filled with coins. Both weights are given in grams. No pig will weigh more than 10 kg, that means 1 <= E <= F <= 10000. On the second line of each test case, there is an integer number N (1 <= N <= 500) that gives the number of various coins used in the given currency. Following this are exactly N lines, each specifying one coin type. These lines contain two integers each, Pand W (1 <= P <= 50000, 1 <= W <=10000). P is the value of the coin in monetary units, W is its weight in grams.
Output
Print exactly one line of output for each test case. The line must contain thesentence "The minimum amount of money in the piggy-bank is X." where X is the minimum amount of money that can be achieved using coins with the given total weight. If the weight cannot be reached exactly, print aline "This is impossible.".
Example
Sample Input: 3 10 110 2 1 1 30 50 10 110
2 1 1 50 30 1 6 2 10 3 20 4 Sample output: The minimum amount of money in the piggy-bank is 60. The minimum amount of money in the piggy-bank is 100. This is impossible.
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of T test cases (equal to about 500). The number of them (T) is given on the first line of the input file. Each test case begins with a line containing a single integer N (3 <= N <= 1000000) indicating the number of points that form the polygon. This is followed by N lines, each containing two integers X i and Y i (|X i |, |Y i | <= 20000). These numbers are the coordinates of the i-th point. When we connect the points in the given order, we get a polygon. You may assume that the edges never touch each other (except the neighbouring ones) and that they never cross. The area of the polygon is never zero, i.e. it cannot collapse into a single line.
Output
Print exactly one line for each test case. The line should contain exactly two numbers separated by one space. These numbers are the coordinates of the centre of gravity. Round the coordinates to the nearest number with exactly two digits after the decimal point (0.005 rounds up to 0.01). Note that the centre of gravity may be outside the polygon, if its shape is not convex. If there is such a case in the input data, print the centre anyway.
Example
Sample Input: 2 4 5 0 0 5 -5 0 0 -5 4 1 1 11 1 11 11 1 11 Sample output: 0.00 0.00 6.00 6.00
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of T test cases. The number of them (T, equal to about 500) is given on the first line of the input file. Each test case begins with a line containing asingle integer number N that indicates the number of plates (1 <= N <= 100000). Then exactly Nlines follow, each containing asingle word. Each word contains at least two and at most 1000 lowercase characters, that means only letters a through z will appear in the word. The same word may appear several times in the list.
Output
Your program has to determine whether it is possible to arrange all the plates in asequence such that the first letter of each word is equal to the last letter of the previous word. All the plates from the list must be used, each exactly once. The words mentioned several times must be used that number of times. If there exists such an ordering of plates, your program should print thesentence "Ordering is possible.". Otherwise, output thesentence "The door cannot be opened.".
Example
Sample input: 3 2 acm ibm 3 acm malform mouse 2 ok ok
Sample output: The door cannot be opened. Ordering is possible. The door cannot be opened.
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1999
Input
The input consists of N cases (equal to about 10000). The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the reversed numbers you are to add.
Output
For each case, print exactly one line containing only one integer - the reversed sum of two reversed numbers. Omit any leading zeros in the output.
Example
Sample input: 3 24 1 4358 754 305 794 Sample output: 34 1998 1
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases (equal to about 200). The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly two lines. At the first line, there are two integers m and k, 1 <= k <= m <= 500. At the second line, there are integers p 1 , p 2 , ... p m separated by spaces. All these values are positive and less than 10000000.
Output
For each case, print exactly one line. The line must contain the input succession p 1 , p 2 , ... p m divided into exactly k parts such that the maximum sum of a single part should be as small as possible. Use the slash character (/) to separate the parts. There must be exactly one space character between any two successive numbers and between the number and the slash. If there is more than one solution, print the one that minimizes the work assigned to the first scriber, then to the second scriber etc. But each scriber must be assigned at least one book.
Example
Sample input: 2 9 3 100 200 300 400 500 600 700 800 900 5 4
100 100 100 100 100 Sample output: 100 200 300 400 500 / 600 700 / 800 900 100 / 100 / 100 / 100 100
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases (equal to about 1000). The first line of the input contains only positive integer N. Then follow the cases. The first line of each case contains only two positive integers A, 1 <= A <= 26, and K, separated by space. A determines the size of the substitution alphabet (the substitution alphabet consists of the first A lowercase letters of the english alphabet (a--z) and K is the number of encrypted words. The plain words contain only the letters of the substitution alphabet. The plain message can contain any symbol, but only the letters of the substitution alphabet are encrypted. Then follow K lines, each containing exactly one encrypted word. At the next line is encrypted message.
Output
For each case, print exactly one line. If it is possible to decrypt the message uniquely, print the decrypted message. Otherwise, print the sentence Message cannot be decrypted..
Example
Sample input: 2 5 6 cebdbac cac ecd dca aba bac cedab 4 4 cca cad aac bca bdac Sample output: abcde Message cannot be decrypted.
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. The first line of each case contains only one integer M, 1 <= M <= 100. It is the size of 3D puzzle cube. Then follow M lines, each contains exactly M 2 numbers on the tiles for one layer. First is the layer on the top of the cube and the last one on the bottom. In each layer numbers are arranged from the left top corner linewise to the right bottom corner of the layer. In other words, slot with coordinates (x,y,z) is described by the (x+M.y+1)-th number on the (z+1)-th line. Numbers are separated by space. Number 0 means free position.
Output
For each case, print exactly one line. If the original configuration can be reached by sliding the tiles, print the sentence Puzzle can be solved.. Otherwise, print the sentence Puzzle is unsolvable..
Example
Sample input: 2 2 1 2 3 4 5 7 6 0 2 2 1 3 5
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases (equal to about 2000). The first line contains only one positive integer N. Then follow the cases. Each case starts with a line containing four integers F, E, A, B, where F, 1 <= F < 50000000 determines the number of floors in the skyscraper (this means that there are floors 0 to F-1), E, 0 < E < 100 is the number of elevators and A, B, 0 <= A,B < F are numbers of the two floors between which the piece of furniture should be moved. Then follow E lines. Each of them contains description of one elevator. There are exactly two integers X and Y, X > 0, Y >= 0 at each line. Y determines, that the elevator starts on the Y-th floor and X determines, that it stops on every X-th floor, eg. for X = 3, Y = 7 the elevator stops on floors 7, 10, 13, 16, etc.).
Output
For each case, print exactly one line. If floor B is reachable from floor A not using the stairway, print the sentence It is possible to move the furniture., otherwise print The furniture cannot be moved..
Example
Sample input: 2 22 4 0 6 3 2 4 7 13 6 10 0 1000 2 500 777 2 0 2 1 Sample output: It is possible to move the furniture. The furniture cannot be moved.
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line containing necklace description. Maximal length of each description is 10000 characters. Each bead is represented by a lower-case character of the english alphabet (a--z), where a < b ... z.
Output
For each case, print exactly one line containing only one integer -- number of the bead which is the first at the worst possible disjoining, i.e. such i, that the string A[i] is lexicographically smallest among all the n possible disjoinings of a necklace. If there are more than one solution, print the one with the lowest i.
Example
Sample input: 4 helloworld amandamanda dontcallmebfu aaabaaa Sample output: 10 11 6 5
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases (equal to about 5000). The first line of the input contains only positive integer N. Then follow the cases. Each case consists of six real numbers a, b, c, d, h 1998 and f 1998 , written in this order on three lines, two numbers per line, separated by one or more spaces. The numbers are given in the classical format, i.e. optional sign, sequence of digits, optional dot and optional sequence of digits. The text form of a number does not exceed 10 characters. Each case is followed by one empty line.
Output
For each case, print one of the following sentences: Ecological balance will develop. - if after sufficiently long time the population of both hares and foxes approaches the reference count with an arbitrary a priori given precision, i.e. lim h y =0 and lim f y =0. Hares will die out while foxes will overgrow. - if after sufficiently long time the population of hares resp. foxes falls under resp. exceeds any a priori given threshold, i.e. lim h y =-infinity and lim f y =+infinity. Hares will overgrow while foxes will die out. - if after sufficiently long time the population of foxes resp. hares falls under resp. exceeds any a priori given threshold, i.e. lim h y =+infinity and lim f y =-infinity. Both hares and foxes will die out. - if after sufficiently long time the population of both hares and foxes falls under any a priori given threshold, i.e. lim h y =-infinity and lim f y =-infinity.
Both hares and foxes will overgrow. - if after sufficiently long time the population of both hares and foxes exceeds any a priori given threshold, i.e. lim h y =+infinity and lim f y =+infinity. Chaos will develop. - if none of the above mentioned description fits.
Example
Sample input: 2 2 0.5 0.5 0.6 2 3 0.1 1 2 0.1 1 1 Sample output: Both hares and foxes will overgrow. Hares will die out while foxes will overgrow.
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Input
The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case begins with a line containing exactly two integers P and Q, 1 <= P,Q <= 1000000. P is the number of stops including CCS and Q the number of bus lines. Then there are Q lines, each describing one bus line. Each of the lines contains exactly three numbers - the originating stop, the destination stop and the price. The CCS is designated by number 1. Prices are positive integers the sum of which is smaller than 1000000000. You can also assume it is always possible to get from any stop to any other stop.
Output
For each case, print one line containing the minimum amount of money to be paid each day by ACM for the travel costs of its volunteers.
Example
Sample input: 2 2 2 1 2 13
2 4 1 2 1 3 2 4
1 6 2 1 3 4 4 1
33 10 60 20 10 5 50
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Prague 1998
Task
Your task is to write a program which determines the number of contestants of a given tournament for which it is possible to set it.
Input
t [number of tests to solve]. In the first line of each test: n (1<=n<=1000) - the number of participants of the tournament. We number the participants with numbers 1,2, ... ,n. The following line contains a list of participants who will inevitably win with participant 1. This list begins with a number m (the number of contestants "better" than 1) and numbers n 1 ,n 2 , ... , n m delimited by single spaces. Next n-1 lines contain analogous lists for participants 2, 3, ..., n. Remark 1. The fact that participant a would lose with b and b would lose with c doesnt necessarily mean that a would lose with c in a direct match. Remark 2. It is not possible that a is on the list of contestants better than b and b is on the list of a at the same time.
Output
For each test your program should output a single integer - the number of participants, for which it is possible to set the tournament.
Example
Input: 1 3 2 3 2 1 3 0 Output: 1
Added by: Adam Dzedzej Date: 2004-06-08 Time limit: 1s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmw (Algorithm Tamers) Resource: Round IV, 2001
54. Julka
Problem code: JULKA
Julka surprised her teacher at preschool by solving the following riddle: Klaudia and Natalia have 10 apples together, but Klaudia has two apples more than Natalia. How many apples does each of he girls have? Julka said without thinking: Klaudia has 6 apples and Natalia 4 apples. The teacher tried to check if Julkas answer wasnt accidental and repeated the riddle every time increasing the numbers. Every time Julka answered correctly. The surprised teacher wanted to continue questioning Julka, but with big numbers she couldt solve the riddle fast enough herself. Help the teacher and write a program which will give her the right answers.
Task
Write a program which reads from standard input the number of apples the girls have together and how many more apples Klaudia has, counts the number of apples belonging to Klaudia and the number of apples belonging to Natalia, writes the outcome to standard output
Input
Ten test cases (given one under another, you have to process all!). Every test case consists of two lines. The first line says how many apples both girls have together. The second line says how many more apples Klaudia has. Both numbers are positive integers. It is known that both girls have no more than 10 100 (1 and 100 zeros) apples together. As you can see apples can be very small.
Output
For every test case your program should output two lines. The first line should contain the number of apples belonging to Klaudia. The second line should contain the number of apples belonging to Natalia.
Example
Input: 10 2 [and 9 test cases more] Output: 6 4 [and 9 test cases more]
Added by: Adam Dzedzej Date: 2004-06-08 Time limit: 2s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round II, 2003
55. Jasiek
Problem code: JASIEK
Jasiek is only 6 years old, but he already has many skills. He likes drawing and asking riddles very much. This morning he got a sheet of grid paper and a pencil from his mother and he started drawing. All his drawings have some common properties: Jasiek colors full grid squares; if some coloured grid squares touch each other, it means they have a common edge or a corner; all grid squares are connected, which means between every two coloured grid squares there is a sequence of coloured grid squares, which have a common edge; there are no white holes, that is from every white grid box it is possible to draw a line to the boundary of the sheet which never touches any coloured grid square. At noon mom phoned and asked what Jasieks todays picture was. The boy didnt answer directly, but described the picture by a sequence of moves needed to walk around the centres of the coloured squares on its boundary, ie. those squares which have at least one common corner with a white square. Jasiek set the starting square and then gave the sequence of moves necessary to walk along the boundary squares anti-clockwise. Mom was very surprised by the complexity of the picture and especcialy by the number of coloured squares. Given Jasieks description, can you quickly count how many coloured squares there are in the picture?
Task
Write a program which reads (from standard input) Jasieks description of the picture, counts the number of coloured squares, writes out the outcome (to standard output).
Input
Ten test cases (given one under another, you have to process all!). Each of the test cases is a series of lines. Each line consists of only one character. The letter P means the beginning of the description. The letter K means the end of the desription (and the test case). All other lines (if any) contain one of the letters N, W, S or E (N meaning North, W - West, S - South and E - East). Every line of the description corresponds to the relative position of the centre of some square on the boundary of the picture. The first and the last line correspond to the same square. A letter in a line other than the first or the last tells you which way you have to go in order to get to the next boundary square when going around the picture anti-clockwise. Jasieks description finishes after going around the picture once. The length of the description doesnt exceed 20000 letters.
Output
For every testcase your program should write (to the standard output) only one line with one integer, equal to the number of coloured squares in Jasieks picture.
Example
Example illustration
Input: P S S S E N E E S E E N N N N S S S W W N N W W W N S K [and 9 test cases more] Output: 23 [and 9 test cases more]
Added by: Adam Dzedzej Date: 2004-06-09 Time limit: 3s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round III, 2003
56. Dyzio
Problem code: DYZIO
Dyzio is Jasieks friend and he also likes riddles. Here is a riddle he came up with: Jasiek, here is a piece of string, which has to be cut into smaller pieces. I will not tell you directly how to do it, but look at this sequence of zeros (0) and ones (1). A one at the begining means that the string has to be cut in half. If the first digit was zero, it would be the only digit in the sequence and mean you dont have to cut anything - I want the whole string. If you have to cut the string anyway then after the first 1 I wrote what to do with the left piece (according to the same rules as with the whole string) and then I wrote what to do with the right piece of string (all the time with the same rules of notation). Every time you have to cut the left piece first, only then can you cut the right one. Now start cutting and tell me, how many cuts you have to do until you have cut off the shortest piece. Unfortunately mom hid the scissors from Jasiek, but luckily a computer was at hand and Jasiek quickly wrote a program simulating the string cutting. Can you write such a program?
Task
Write a program which reads (from standard input) description of the way the string is cut, counts how many cuts have to be made in order to get the first shortest piece. writes out the outcome (to standard output)
Input
Ten test cases (given one under another, you have to process all!). Each test case consists of two lines. In the first line there is a number n (1<=n<=20000). In the second line one zero-one word (a sequence of zeros and ones without spaces between them) of length n - the description of the cutting procedure given by Dyzio.
Output
For every testcase your program should write (to the standard output) only one line with one integer equal to the number of cuts which have to be made in order to get the shortest piece.
Example
Input: 9 110011000 [and 9 test cases more] Output: 4 [and 9 test cases more]
Added by: Adam Dzedzej Date: 2004-06-10 Time limit: 3s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round III, 2003
Task
Write a program which reads a permutation from standard input, finds all its supernumbers, writes all found numbers to standard output.
Input
Ten test cases (given one under another, you have to process all!). Each test case consists of two lines. In the first line there is a number n (1<=n<=100000). In the second line: an n-element permutation - n numbers separated by single spaces.
Output
For every test case your program should write two lines. In the first line - the number of supernumbers in the input permutation. In the second line the supernumbers separated by single spaces in increasing order.
Example
Input: 5 2 1 4 5 3 [and 9 test cases more] Output: 4 1 2 4 5 [and 9 test cases more]
Added by: Adam Dzedzej Date: 2004-06-10 Time limit: 9s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round IV, 2003
Task
Write a program which reads from standard input the time interval during which the crime was commited and the data gathered by Scotland Yard, finds the minimal and the maximal number of people present simultaneously in the time interval when the crime could have been commited, (these numbers can be zero, though it would seem strange that noone was present at the crime scene when the crime was commited, but thats the type of crime Holmes and Watson have to deal with) writes the outcome to standard output.
Input
Ten test cases (given one under another, you have to process all!). The first line of each test case consists of two integer numbers p and k, 0<=p<=k<=100000000. These denote the first and the last moment when the crime could have been commited. The second line of each test case contains one integer n, 3<=n<=5000. This is the number of people interrogated by Scotland Yard. The next n lines consist of two integers - line i+2 contains numbers a i and b i separated by a single space, 0<=a i <=b i <=1000000000. These are the moments at which the i-th person apperared at and left the crime scene respectively. It means that the i-th person was at the crime scene for the whole time from moment a i until moment b i (inclusive).
Output
For every test case your program should write to the standard output only one line with two integers separated by a single space: the minimal and maximal number of people staying simultaneously at the crime scene, in the interval between moment p and k, (inclusive).
Example
Only one test case.
Input: 5 10 4 1 8 5 8 7 10 8 9 Output: 1 4
Added by: Adam Dzedzej Date: 2004-06-10 Time limit: 13s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round IV, 2003
Task
Write a program which reads a description of the net from standard input, finds all critical computers. writes the numbers of critical computers to standard output.
Input
Ten test cases (given one under another, you have to process all!). Each test case consists of several lines. In the first line there are numbers n and m. n denotes the number of computers in the net,(2<=n<=5000). m denotes the number of information channels, n-1<=m<=200000. The following m lines describes a single information channel and consist of two integer numbers a and b separated by a space. It means the computer a sends information to computer b by that channel. You may assume there are no two channels which start and end at the same points a, b.
Output
For every testcase your program should write two lines. In the first line k - the number of critical computers in the net. In the second line k numbers separated by single spaces - the numbers of critical computers in increasing order.
Example
Input: 4 5 1 2 1 4
Warning: large Input/Output data, be careful with certain languages Added by: Adam Dzedzej Date: 2004-06-14 Time limit: 7s Source limit:50000B Languages: All Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Resource: Round IV, 2003
Illustration
For example after the sequence SS we get the following configuration. The configuration after SS The shortest sequence of moves required to end the dance is of length 5: RSRSS.
Task
Write a program which reads from standard input the moves made in a dance, finds the minimal number of moves required to untangle the strings and stretch them horizontally and parallel (the dancers dont have to be in their starting spots). writes the outcome to standard output.
Input
Ten test cases (given one under another, you have to process all!). The first line of each test case consists of one integer n equal to the nmber of moves already made, 0<=n<=1000000. The second line of each test case consists of one word of length n, made up of letters S and/or R.
Output
For every testcase your program should write to standard output only one line with one integer number: the minimal number of moves required to untangle the strings and stretch them horizontally and parallel.
Example
Input: 2 SS [and 9 test cases more] Output: 5 [and 9 test cases more]
Warning: large Input/Output data, be careful with certain languages Added by: Adam Dzedzej Date: 2004-06-15 Time limit: 3s Source limit:50000B Languages: All Resource: Internet Contest Pogromcy Algorytmow(Algorithm Tamers) 2003 Round V
61. Brackets
Problem code: BRCKTS
We will call a bracket word any word constructed out of two sorts of characters: the opening bracket "(" and the closing bracket ")". Among these words we will distinguish correct bracket expressions. These are such bracket words in which the brackets can be matched into pairs such that every pair consists of an opening bracket and a closing bracket appearing further in the bracket word for every pair the part of the word between the brackets of this pair has equal number of opening and closing brackets On a bracket word one can do the following operations: replacement -- changes the i-th bracket into the opposite one check -- if the word is a correct bracket expression
Task
Write a program which reads (from standard input) the bracket word and the sequence of operations performed, for every check operation determines if the current bracket word is a correct bracket expression, writes out the outcome (to standard output).
Input
Ten test cases (given one under another, you have to process all!). Each of the test cases is a series of lines. The first line of a test consists of a single number n (1<=n<=30000) denoting the length of the bracket word. The second line consists of n brackets, not separated by any spaces. The third line consists of a single number m -- the number of operations. Each of the following m lines carries a number k denoting the operation performed. k=0 denotes the check operation, k>0 denotes replacement of k-th bracket by the opposite.
Output
For every test case your program should print a line: Test i: where i is replaced by the number of the test and in the following lines, for every check operation in the i-th test your program should print a line with the word YES, if the current bracket word is a correct bracket expression, and a line with a word NO otherwise. (There should be as many lines as check operations in the test.)
Example
Input: 4 ()(( 4 4 0 2 0 [and 9 test cases more] Output: Test 1: YES NO [and 9 test cases more]
Warning: large Input/Output data, be careful with certain languages Added by: Adam Dzedzej Date: 2004-06-15 Time limit: 11s Source limit:50000B Languages: All Resource: Internet Contest Pogromcy Algorytmow(Algorithm Tamers) 2003 Round IV
Task
Write a program which reads from standard input two pairs (a,b) and (c,d) of integers, different from (0,0), describing moves of the Imp, determines a pair of integers (x,y) different from (0,0), for which the Imp can jump (possibly in many moves) from square (0,0) to square (x,y) and for which the value |x|+|y| is the lowest. writes out to standard output the value |x|+|y|.
Input
Ten test cases. Each test consists of four numbers a,b,c,d in one line, separated by spaces. -100000 <= a, b, c, d <= 100000
Output
For every test case your program should write a single line with a number equal the lowest possible value |x|+|y|.
Example
Input: 13 4 17 5 [and 9 test cases more] Output: 2 [and 9 answers more]
Added by: Adam Dzedzej Date: 2004-06-15 Time limit: 3s Source limit:50000B Languages: All Resource: Internet Contest Pogromcy Algorytmow(Algorithm Tamers) 2003 Round V
Illustration
Several proper bracket expressions:
[[]][[[]][]] [[[][]]][][[]]
There is exactly one proper expression of length 8 with opening brackets in positions 2, 5 and 7.
Task
Write a program which for each data set from a sequence of several data sets: reads integers n, k and an increasing sequence of k integers from input, computes the number of proper bracket expressions of length 2n with opening brackets appearing at positions s 1 ,s 2 ,...,s k , writes the result to output.
Input
The first line of the input file contains one integer d, 1 <= d <= 10, which is the number of data sets. The data sets follow. Each data set occupies two lines of the input file. The first line contains two integers n and k separated by single space, 1 <= n <= 19, 1 <= k <= n. The second line contains an increasing sequence of k integers from the interval [1;2n] separated by single spaces.
Output
The i-th line of output should contain one integer - the number of proper bracket expressions of length 2n with opening brackets appearing at positions s 1 , s 2 ,...,s k .
Example
Sample input: 5 1 1 1 1 1 2 2 1 1 3 1 2 4 2 5 7 Sample output: 1 0 2 3 2
Added by: Adrian Kosowski Date: 2004-06-22 Time limit: 3s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
64. Permutations
Problem code: PERMUT1
Let A = [a 1 ,a 2 ,...,a n ] be a permutation of integers 1,2,...,n. A pair of indices (i,j), 1<=i<=j<=n, is an inversion of the permutation A if a i >a j . We are given integers n>0 and k>=0. What is the number of n-element permutations containing exactly k inversions? For instance, the number of 4-element permutations with exactly 1 inversion equals 3.
Task
Write a program which for each data set from a sequence of several data sets: reads integers n and k from input, computes the number of n-element permutations with exactly k inversions, writes the result to output.
Input
The first line of the input file contains one integer d, 1<=d<=10, which is the number of data sets. The data sets follow. Each data set occupies one line of the input file and contains two integers n (1<=n<=12) and k (0<=k<=98) separated by a single space.
Output
The i-th line of the output file should contain one integer - the number of n-element permutations with exactly k inversions.
Example
Sample input: 1 4 1 Sample output: 3
Added by: Adrian Kosowski Date: 2004-06-22 Time limit: 3s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
65. Ball
Problem code: BALL1
On the rectangular chessboard of n x m square fields we choose one field adjacent to the edge of the chessboard, called the starting field. Then we put a ball in the center of this field and push it to roll through the chessboard. The diameter of the ball equals the width (and height) of chessboard field. The angle between the direction of ball movement and the edge of the chessboard equals 45 degrees. The ball bounces off the edges of the chessboard: if the ball touches the edge of the chessboard then each composite of its velocity perpendicular to the edge touched is reversed. At the start the ball is pushed toward increasing coordinates (when the starting field is a field of the highest coordinate, the ball bounces momentarily). We assign a point to a field of the chessboard each time the point of adjacency between the ball and the chessboard enters the interior of the field. The game is over when a point is assigned to the starting field. What is the number of fields to which an odd number of points is assigned? The following figures illustrate the problem. The route of the ball is marked with a dashed line. Fields with the odd number of points are shadowed. [IMAGE]
Task
Write a program which for each data set from a sequence of several data sets: reads the dimensions of the chessboard and the coordinates of starting field from input, computes the number of fields with the odd number of points, writes the result to output.
Input
The first line of the input file contains one integer d, 1 <= d <= 10, which is the number of data sets. The data sets follow. Each data set occupies one line of the input file. Such a line consists of four integers x, y, a, b separated with single spaces. These integers are the x- and y-dimensions of the chessboard and x- and y-coordinates of the starting field, respectively. Integers x and y are greater than two, the number of fields of the chessboard does not exceed 10 9 ,the starting field is adjacent to the edge of the chessboard.
Output
The i-th line of output should contain one integer which is equal to the number of fields of the chessboard with the odd number of points.
Example
Sample input: 2 13 6 1 5 10 7 1 5 Sample output: 2 22
Added by: Adrian Kosowski Date: 2004-06-06 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
66. Cross-country
Problem code: CRSCNTRY
Agness, a student of computer science, is very keen on cross-country running, and she participates in races organised every Saturday in a big park. Each of the participants obtains a route card, which specifies a sequence of checkpoints, which they need to visit in the given order. Agness is a very atractive girl, and a number of male runners have asked her for a date. She would like to choose one of them during the race. Thus she invited all her admirers to the park on Saturday and let the race decide. The winner would be the one, who scores the maximum number of points. Agnes came up with the following rules: a runner scores one point if he meets Agnes at the checkpoint, if a runner scored a point at the checkpoint, then he cannot get another point unless he and Agnes move to the next checkpoints specified in their cards. route specified by the card may cross the same checkpoint more than once, each competitor must strictly follow race instructions written on his card. Between two consecutive meetings, the girl and the competitors may visit any number of checkpoints. The boys will be really doing their best, so you may assume, that each of them will be able to visit any number of checkpoints whilst Agnes runs between two consecutive ones on her route.
Task
Write a program which for each data set from a sequence of several data sets: reads in the contents of Agnes race card and contents of race cards presented to Tom, computes the greatest number of times Tom is able to meet Agnes during the race, writes it to output.
Input
There is one integer d in the first line of the input file, 1 <= d <= 10. This is the number of data sets. The data sets follow. Each data set consists of a number of lines, with the first one specifying the route in Agnes race card. Consecutive lines contain routes on cards presented to Tom. At least one route is presented to Tom. The route is given as a sequence of integers from interval [1, 1000] separated by single spaces. Number 0 stands for the end of the route, though when it is placed at the beginning of the line it means the end of data set. There are at least two and at most 2000 checkpoints in a race card.
Output
The i-th line of the output file should contain one integer. That integer should equal the greatest number of times Tom is able to meet with Agnes for race cards given in the i-th data set.
Example
Sample input: 3 1 1 2 1 1 1 0 1 3 0 1 1 0
2 3 5 1 3 2
3 4 5 8 2 0 7 8 9 1 1 1 1 3 5 35 0
6 7 8 9 0 0 1 2 3 0 7 8 9 3 4 0
3 5 7 0 7 5 1 0 2 1 1 0 1 1 0
Sample output: 6 2 3
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
Illustration
Three rectangles have been cut out from the square 10x10 in the figure shown below. The area of the largest rectangle that can be cut out from the remaining paper is 16. One of such rectangles is shown with a dashed line. [IMAGE]
Task
Write a program that for each data set from a sequence of several data sets: reads descriptions of a square and rectangles from the input, computes the area of the largest rectangle which can be cut out from the remaining paper, writes the result to output.
Input
The first line of the input file contains one positive integer d not larger than 10. This is the number of data sets. The data sets follow. Each set of data occupies two consecutive lines of the input file. The first line of each data set contains two integers n and r, 1 <= n <= 40000, 0 <= r <= 100. The integer n is the length of the sides of an input square. The integer r is the number of rectangles which have been cut out from the square. The second line of the data set contains a sequence of 4r integers x 1 , x 2 ,...,x 4r from the interval [0,n] separated by single spaces. For each i = 1,...,r, integers x 4i-3 , x 4i-2 , x 4i-1 , x 4i describe the i-th rectangle: x 4i-3 is the distance of its left side from the left side of the square, x 4i-2 is the distance of its right side from the left side of the square, x 4i-1 is the distance of the bottom side of the rectangle from the bottom side of the square and x 4i is the distance of its top side from the bottom side of the square.
Output
For each i = 1,...,d, your program should write only one integer to the i-th line of the output file -- the largest area of a rectangle which can be cut out from the rest of the i-th square.
Example
Sample input: 2 6 2 0 3 0 3 3 6 3 6 10 3 0 5 0 5 0 10 5 10 9 10 0 5 Sample output: 9 20
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
68. Expression
Problem code: EXPR1
We are given an integer k and an arithmetic expression E with the operations +, -, and arguments from the set {0,1,...,9}. Is it possible to put some parentheses in E to get a new expression E whose value equals k? If the answer is positive what is the minimum number of pairs of parentheses (, ) that are necessary?
Illustration
It is sufficient to put one pair of parentheses in the expression 5 - 4 + 5 to get an expression with value -4, namely 5 - (4 + 5) = -4.
Task
Write a program that for each data set from a sequence of several data sets: reads an expression E and an integer k from input, verifies whether it is possible to put some parentheses in E to get a new expression E whose value equals k and computes the minimal number of pairs of parentheses (, ) necessary, if the answer is positive, writes the result to output.
Input
The first line of the input file contains one positive integer d not larger than 10. This is the number of data sets. The data sets follow. Each set of data occupies two consecutive lines of the input file. The first line contains two integers n and k, 2 <= n <= 40, -180 <= k <= 180. The even integer n is the length of E. The second line contains the expression itself written as a string of length n. The string contains operators + or - in odd positions and numbers from the set {0,1,...,9} in even positions.
Output
For each i = 1,...,d, your program should write to the i-th line of the output file one word NO if the i-th input expression cannot be transformed into any expression of value k, and the smallest number of pairs of parentheses necessary otherwise.
Example
Sample input: 5 6 -4 +5-4+5 2 1 +1
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
69. Moulds
Problem code: MOULDS
In a factory, moulds for casting metal objects are produced by a special cutting device. The device is equipped with cuboid-shaped blade of size 1 mm x 1 mm x 30 mm (its height) which operates with each of its sides thus producing the mould from cuboid of size 250 mm x 250 mm x 30 mm (its height). The end of the blade newer lowers below the bottom surface of the cuboid. In any moment the distance between initial and current position doesnt exceed 1000. The machine understands special command language which has the following grammar:
<command block> <command> <lift> <shift> <direction> <distance> <number> <sign> <digit> ::= ::= ::= ::= ::= ::= ::= ::= ::= [ <command> ; {<command> ; } ] <lift> | <shift> | <command block> ^ <distance> @ <direction> <distance> N | S | W | E <sign> <number> | <number> <digit> {<digit>} - | + 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
where {exp} means zero or more exps. The command <lift> causes moving the blade downwards when the distance is a positive number and upwards otherwise. The command <shift> moves the blade in the appropriate direction (N--north, S--south, W--west, E--east).
Task
Write a program which for each data set from a sequence of several data sets: reads a command block from input, computes the volume of hollows made by the machine commanded by a given command block (assuming that before the execution the blade is located 1 mm above the north-west corner of the virgin cuboid), writes the result to output.
Input
The first line of the input file contains one integer d, 1 <= d <= 10, which is the number of data sets. The data sets follow. Each data set occupies one line of the input file and is a word derived from <command block> of the above grammar of length not exceeding 10000 characters.
Output
The i-th line of the output file should contain one integer -- the volume (in cubic mm) of the hollows made by the machine controlled by the command block given in the i-th data set.
Example
Sample input: 1 [^2;@S2;] Sample output: 3
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
70. Relations
Problem code: RELATS1
You are given a directed graph, whose edges are labeled with relational symbols <, > and =. For a nonnegative integer k, a k-correct G-labeling is a mapping from vertices of G into integers from interval [0,k] such that numbers at the ends of each edge satisfy the relation described by the label of the edge. We assume that an element on the left side of the relational symbol is a number assigned to the initial vertex. Compute the smallest k for which k-correct G-labeling exists or verify that such labeling doesnt exist for any k.
Illustration
For the graph in the figure the smallest k = 2. [IMAGE]
Task
Write a program that for each data set from a sequence of several data sets: reads a description of a graph G from the input file, verifies whether there exist an integer k for which it is possible to label G k-correctly and, if the answer is positive, computes the smallest such k, writes the result to the output file.
Input
The first line of the input file contains one positive integer d not larger than 10. This is the number of data sets. The data sets follow. Each data set is described in two consecutive lines of the input file. In the first line there are two integers n and m separated by a single space. The number n is the number of vertices of G and m is the number of edges of G. Numbers n and m satisfy the inequalities: 1 <= n <= 1000, 0 <= m <= 10000. The vertices are numbered with integers from 1 to n and are identified by these numbers. There are no parallel edges and self-loops in the graph. (Two different edges u 1 -> v 1 and u 2 -> v 2 are parallel iff u 1 = u 2 and v 1 = v 2 .) There are 3m integers separated by single spaces in the second line. The numbers at positions 3i-2 and 3i-1, 1 <= i <= m, are the ends of the i-th edge, the beginning and the end, respectively, whereas the number at position 3i is a number from the set {-1,0,1} and it is the label of the i-th edge: -1 represents <, 0 represents = and 1 represents >.
Output
For the i-th data set, 1 <= i <= d, your program should write one word NO in the i-th line of the output file if a k-correct labeling doesnt exist for any k, or the smallest integer k for which such a labeling exists.
Example
Sample input: 4 4 1 2 1 2 1 3 1
4 2 2 2 2 2 3 2
-1 2 3 0 2 4 -1 3 4 -1 -1 2 1 -1 -1 2 1 1 0 3 2 0 3 1 0
Sample output: 2 NO 1 0
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
71. Tree
Problem code: TREE1
Consider an n-vertex binary search tree T containing n keys 1,2,...,n. A permutation p = [p 1 ,...,p n ] of the integers 1,2,...,n is said to be consistent with the tree T if the tree can be built from the empty one as the result of inserting integers p 1 ,p 2 ,...,p n . Find how many permutations are consistent with the tree T.
Illustration
Exactly 2 permutations are consistent with the tree in the figure below. [IMAGE]
Task
Write a program that for each data set from a sequence of several data sets: reads from the input file a description of an input tree T, computes the number of permutations consistent with T, writes the result to output.
Input
The first line of the input file contains one positive integer d not larger than 10. This is the number of data sets. The data sets follow. Each set of data occupies two consecutive lines of the input file. The first line contains only one integer n, 1 <= n <= 30. This is the number of vertices of the tree. The second line contains a sequence of n integers separated by single spaces. The integers are keys in the input tree given in the prefix order. The first integer in the sequence is the key from the root of the tree. It is followed by the keys from the left subtree written in the prefix order. The sequence ends with the keys from the right subtree, also given in the prefix order.
Output
For each i = 1,...,d, your program should write to the i-th line of output the number of permutations consistent with the tree described in the i-th data set.
Example
Sample input: 5 3 2 1 3 3 1 2 3
1 1 4 2 1 3 4 4 1 4 2 3 Sample output: 2 1 1 3 1
Added by: Adrian Kosowski Date: 2004-06-08 Time limit: 5s Source limit:50000B Languages: All Resource: III Polish Collegiate Team Programming Contest (AMPPZ), 1998
73. Bacterial
Problem code: BAC
In the biology laboratory we are observing several bacterial samples, and under the microscope we have them shaded with different colors to see them expanding their territory on the plate. It is interesting to know that the bacterial are quite friendly that once they meet each other, they do not expand into each others occupation any more. The bacterial samples are expanding at similar speeds and we take them as the same speed. Since the experiment is tedious and lengthy (Oh My God! there are several thousand samples at our pick), we are going to run a simulation based on this reality, taking the variable that these samples may be planted in different starting spots. We are using rectangular plates and bacterial racing is bounded within the plate. [IMAGE]
Input format
There are multiple test cases (about 20000 of them) each taking the following format: one line with two integers between 1 and 1000 inclusive indicating width and height of the plate one line with one integer between 1 and 100 inclusive indicating the number of bacterial samples for each bacterial sample there is one line with two integers indicating the samples position: x y, where x, y specify a position within or on the bound of the plate. The plate lies in such a coordinating system that the lower-left corner of it is (0,0) and the upper-right corner is (width,height). A test with zero plate area marks the end of the tests and this one shall not be processed. Between each input block there is a blank line.
Output format
Generate a report having the samples sorted on their domination, with each line taking the following format: <sample id> <area occupation> where: sample id takes 3 columns right justified, with 0 padded to the left as necessary, and area occupation takes 14 columns with 2 digit precision, right justified. The sample occupying more area shall be reported prior to those occupying less. The input data will ensure enough difference in areas to avoid ambiguity.
Example
Sample input: 10 10 2 5 5 0 0 0 0 Sample output: 001 002 87.50 12.50
Warning: large Input/Output data, be careful with certain languages Added by: Neal Zane Date: 2004-06-08 Time limit: 9s Source limit:50000B Languages: All Resource: Neal Zane
Input
An integer stating the number of test cases (equal to about 200000), and that many lines follow, each containing one integer between 1 and 500000 inclusive.
Output
One integer each line: the divisor summation of the integer given respectively.
Example
Sample Input: 3 2 10 20 Sample Output: 1 8 22
Warning: large Input/Output data, be careful with certain languages Added by: Neal Zane Date: 2004-06-10 Time limit: 3s Source limit:5000B Languages: All Resource: Neal Zane
75. Editor
Problem code: EDIT1
Have you ever programmed in Brainf**k? If yes, then you know how annoying it is to press the same key several times in a row. So what we all need, is a good editor. Here are the functions that the editor should have: \n: begin a new line. If the last line was empty, stop processing and print out all lines. d: copy all characters from the current line, and append them after the last character in this line. For example, if current line contains ab, and d is pressed two times, the result will be abababab any other character: append it to the current line. Please note, that the solution may only be submitted in Brainf**k or Intercal.
Input
There is exactly one test case. You can assume, that there is no key press of d when the line is still empty.
Output
Print the output that the editor described above would produce on the given input. You can assume, that no line is created with more than 150 characters.
Example
Input: sample-test-dd-d-ddend signalled by two newlines Output: sample-test--------------------------------------------enen signalleenen signalle by two newlines
Added by: Adrian Kuegel Date: 2004-06-12 Time limit: 3s Source limit:50000B Languages: BF ICK Resource: own problem
Input
The input consists of exactly ten test cases. Each test case consists of a line with at most 600 characters. The character d is not used in any of the lines, but all other printable ascii characters may occur.
Output
For each test case, first print a line containing the minimum number of key strokes to produce the given line of text. In the next lines, write the keys that are pressed to produce the text. If there are several possibilites with minimum number of keystrokes, you should also minimise the number of lines, if there is still more than one possibility, minimise number of keystrokes before the first \n, then second \n, ... Since d is a costly operation in the editor, for each output line you should minimise the number of d characters as the 2nd criterion after minimising number of keystrokes in this line. The original input line should be the same as the output of the editor (processing the output you produce), if \n characters are ignored. Notice that you have to terminate the input for the editor with two \n.
Example
Here only two test cases.
Added by: Adrian Kuegel Date: 2004-06-12 Time limit: 3s Source limit:50000B Languages: All Resource: own problem
Input
There is a single integer c on the first line of input. Then c test cases follow: each of them consists of two lines of small letters (a..z) with lengths not exceeding 100000 (descriptions of starting and ending configurations), one integer m in the next line and then m lines with two letters ai,bi in each of them.
Output
For each test case you should print -1 if it is not possible to rearrange bricks or the minimal number of swaps if it is possible (if so, output this value modulo 2 32 ).
Example
Input: 4 ab ba 0 abc cba 3 ab cb ca cabbbc cbabbc 1 ab abba baab 1 ab Output: -1 3 1 2
Added by: Pawel Gawrychowski Date: 2004-06-17 Time limit: 9s Source limit:10000B Languages: All
78. Marbles
Problem code: MARBLES
Hnschen dreams he is in a shop with an infinite amount of marbles. He is allowed to select n marbles. There are marbles of k different colors. From each color there are also infinitely many marbles. Hnschen wants to have at least one marble of each color, but still there are a lot of possibilities for his selection. In his effort to make a decision he wakes up. Now he asks you how many possibilites for his selection he would have had. Assume that marbles of equal color cant be distinguished, and the order of the marbles is irrelevant.
Input
The first line of input contains a number T <= 100 that indicates the number of test cases to follow. Each test case consists of one line containing n and k, where n is the number of marbles Hnschen selects and k is the number of different colors of the marbles. You can assume that 1<=k<=n<=1000000.
Output
For each test case print the number of possibilities that Hnschen would have had. You can assume that this number fits into a signed 64 bit integer.
Example
Input: 2 10 10 30 7 Output: 1 475020
Added by: Adrian Kuegel Date: 2004-06-19 Time limit: 1s Source limit:10000B Languages: All Resource: own problem
Task
Write a program that: reads a history of submissions during an ACM contest, computes for each problem the number of accepted solutions of the problem, the average number of submissions and the average time consumed to solve it, writes the result.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line of the input contains one integer n (1 <= n <= 2000) being the number of submissions during the contest. Each of the next n lines describes one submission and contains a submission time (measured in seconds from the beginning of the contest), a team identifier, a problem identifier and a result of evaluating the submission separated by single spaces. The submission time is a positive integer not greater then 18000. The team identifier is a non-empty string consisting of at most five small letters or digits. The problem identifier is a capital letter A, B, ..., or I. The result is a capital letter A (the submission is accepted) or R (the submission is rejected). Submissions are given in nondecreasing order according to submission times and there are 62 teams competing. Please note that if a problem is accepted all further submission of this problem by the same team are possible but they should not be taken to the statistics.
Output
For each test case the output consists of nine lines. The first line corresponds to problem A, the second line to problem B, and so on. Each line should contain the problem identifier, the number of accepted solutions of the problem, the average number of submissions done by teams that solved that problem and the average time consumed to solve it separated by single spaces. The latter two statistics should be printed only if there was at least one accepted solution of the given problem and should be rounded to two fractional digits (in particular 1.235 should be rounded to 1.24).
Example
Sample input: 1 12 10 wawu1 B R 100 chau1 A A 2000 uwr2 B A 2010 wawu1 A R 2020 wawu1 A A 2020 wawu1 B A 4000 wawu2 C R 6000 chau1 A R 7000 chau1 A A 8000 pp1 A A 8000 zil2 B R 9000 zil2 B A Sample output: A 3 1.33 3373.33 B 3 1.67 4340.00 C 0 D 0 E 0 F 0 G 0 H 0 I 0
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
83. Bundling
Problem code: BUNDLE
Outel, a famous semiconductor company, recently released a new model of microprocessor called Platinium. Like many modern processors, Platinium can execute many instructions in one clock step providing that there are no dependencies between them (instruction I 2 is dependent on instruction I 1 if for example I 2 reads a register that I 1 writes to). Some processors are so clever that they calculate on the fly which instructions can be safely executed in parallel. Platinium however expects this information to be explicitly specified. A special marker, called simply a stop, inserted between two instructions indicates that some instructions after the stop are possibly dependent on some instructions before the stop. In other words instructions between two successive stops can be executed in parallel and there should not be dependencies between them. Another interesting feature of Platinium is that an instruction sequence must be split into groups of one, two or three successive instructions. Each group has to be packed into a container called a bundle. Each bundle has 3 slots and a single instruction can be put into each slot, however some slots may stay empty. Each instruction is categorized into one of 10 instruction types denoted by consecutive capital letters from A to J (instructions of the same type have similar functionality, for example type A groups integer arithmetic instructions and type F groups instructions). Only instructions of certain types are allowed to be packed into one bundle. A template specifies one permissible combination of instruction types within a bundle. A template can also specify a position of a stop in the middle of a bundle (there is at most one such stop allowed). In addition, stops are allowed between any two adjoining bundles. A set of templates is called a bundling profile. When packing instructions into bundles, one has to use templates from bundling profile only. Although Platinium is equipped with an instruction cache it was found that for maximal performance it is most crucial to pack instructions as densely as possible. Second important thing is to use a small number of stops. Your task is to write a program for bundling Platinium instructions. For the sake of simplicity we assume that the instructions cannot be reordered.
Task
Write a program that: reads a bundling profile and a sequence of instructions, computes the minimal number of bundles into which the sequence can be packed without breaking the dependencies and the minimal number of all stops that are required for the minimal number of bundles, writes the result.
Input
The input begins with the integer z, the number of test cases. Then z test cases follow. The first line of each test case descripition contains two integers t and n separated by a single space. Integer t (1 <= t <= 1500) is the number of templates in the bundling profile. Integer n (1 <= n <= 100000) is the number of instructions to be bundled. Each of the next t lines specifies one template and contains 3 capital letters t 1 ,t 2 ,t 3 with no spaces in between followed by a space and an integer p. Letter t i (A < = t i <= J) is an instruction type allowed in the i-th slot. Integer p (0 <= p <= 2) is the index of the slot after which the stop is positioned (0 means no stop within the bundle). Each of the next n lines specifies one instruction. The i-th line of these n lines contains one capital letter c i and an integer d i , separated by a single space. Letter c i (A <= c i <=J) is the type of the i-th instruction. Integer d i (0 < = d i < i) is the index of the last instruction (among the previous ones) that the i-th instruction is dependent on (0 means that the instruction is not dependent on any former instruction). You can assume that for each instruction type c describing an instruction in the instruction sequence there is at least one template containing c.
Output
For each test case, the first and only line of the output contains two integers b and s. Integer b is the minimal number of bundles in a valid packing. Integer s is the minimal number of all stops that are required for the minimal number of bundles.
Example
Sample input: 1 4 9 ABB 0 BAD 1 AAB 0 ABB 2 B 0 B 1 A 1 A 1 B 4 D 0 A 0 B 3 B 0 Sample output: 4 3
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
84. Shortcut
Problem code: SHORTCUT
Mirek has a favourite way from home to the university that he traverses every working day. The route consists of sections and each section is a straight segment 10 meters long. Each section is either a straight ahead extension of the previous section or it is perpendicular to the previous section. After traversing each section Mirek takes a small break to admire the beauty of the nature. During his walk he never visits the same place twice. A sample map Yesterday Mirek stayed up long in the night at the party and today he got up late from bed. He knows that he will miss the first lecture unless he changes his usual route. He plans to make one shortcut but he wants the shortcut to be as short as possible (well, we can tell you in secret that he doesnt want to be on time, he just wants to calm his conscience). The shortcut must be either a horizontal or vertical segment connecting two break points of Mireks route. Please help Mirek find the shortest shortcut.
Task
Write a program that: reads Mireks route, computes the shortest shortcut on the route, writes the result.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line of the input contains one integer n (3 <= n <= 250 000) being the number of sections of the route. The second line of the input contains a sequence of n characters N, E, S or W with no spaces in between. Each character is a description of one section of the route. Character N, E, S or W means that Mirek walks 10 meters north, east, south or west respectively. You may assume that at least one shortcut exists for the given route.
Output
The first and only line of the output contains integers l, b, e and character d separated by single spaces. Integer l is the length of the shortest shortcut (measured in 10 m segments). Integers b and e are the numbers of break points where the shortcut begins and ends respectively (we number break points with consecutive integers from 0 for Mireks home to n for the university). Character d is the direction of the shortcut. If more than one shortcut of the minimal length exists you should output the one that begins earliest on the route. If more than one shortcut of the minimal length begins at the same break point you should output the one that ends furthest on the route.
Example
Sample input: 1 12 NNNENNWWWSSW Sample output: 2 3 11 W
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
Task
Write a program that: reads the description of a die, a starting square and a target square, computes the minimal cost of rolling the die from the starting square to the target square, writes the result. Note: all teams participating in the contest received dice from the organisers.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains six integers l 1 , l 2 , l 3 , l 4 , l 5 , l 6 (1 < = l i < = 50) separated by single spaces. Integer l i is the number written on a side having originally i dots. The second line of the input contains four integers x 1 , y 1 , x 2 , y 2 ( -10 9 < = x 1 , x 2 < = 10 9 , 1 <= y 1 , y 2 < = 4) separated by single spaces. Integers x 1 , y 1 are the column and the row number of the starting square respectively. Integers x 2 , y 2 are the column and the row number of the target square respectively.
Output
For each test case the first and the only line of the output should contain the minimal cost of rolling the die from the starting square to the target square.
Example
Sample input: 1 1 2 8 3 1 4 -1 1 0 2 Sample output: 7
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
Task
Write a program that: reads the description of a roof, computes the amount of water down in one second from each segment of the roof, writes the results.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains one integer n (1 <= n < = 40000) being the number of segments of the roof. Each of the next n lines describes one segment of the roof and contains four integers x 1 , y 1 , x 2 , y 2 (0 <= x 1 , y 1 , x 2 , y 2 < = 1000000, x 1 < x 2 , y 1 <>y 2 ) separated by single spaces. Integers x 1 , y 1 are respectively the horizontal position and the height of the left end of the segment. Integers x 2 , y 2 are respectively the horizontal position and the height of the right end of the segment. The segments dont have common points and there are no horizontal segments. You can also assume that there are at most 25 segments placed above any point on the ground level.
Output
For each test case the output consists of n lines. The i-th line should contain the amount of water (in liters) down from the i-th segment of the roof in one second.
Example
Sample input: 1 6 13 7 15 6 3 8 7 7 1 7 5 6 5 5 9 3 6 3 8 2 9 6 12 8 Sample output: 2 4 2 11 0 3
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
87. Football
Problem code: FOOTBALL
Eric has a classic football that is made of 32 pieces of leather: 12 black pentagons and 20 white hexagons. Each pentagon adjoins 5 hexagons and each hexagon adjoins 3 pentagons and 3 hexagons. Eric drew a polygon (i.e. a closed line without intersections) along the edges of the pieces. The polygon divided the ball into two parts and Eric painted one of them green. Erics football He is curious if given a description of the polygon you are able to compute the number of black, white and green pieces?
Task
Write a program that: reads the description of a polygon, computes the number of black, white and green pieces, writes the result. Contest note: the first accepted solution will be awarded with the original football used for preparing the problem, signed by Eric, the author of the problem! SPOJ note: the first accepted solution will be awarded some other sphere, without anybodys signatures, sent in PNG format to the authors email address [the offer is invalid, the sphere has already been presented to Robin Nittka, University of Ulm, Germany].
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line of the input contains one integer n being the number of vertices of the polygon. The second line of the input contains n integers a 1 , a 2 ,..., a n separated by single spaces. Integer a i (equal 1 or 2) is the number of green pieces adjoining the i-th vertex of the polygon. The side of the polygon connecting the n-th and the first vertex always lies between two hexagons.
Output
For each test case the first and only line of the output contains three integers b, w and g - the numbers of black, white and green pieces respectively.
Example
Sample input: 1 21 1 2 1 2 1 2 1 1 1 2 2 1 1 1 1 2 2 2 1 1 1 Sample output: 11 15 6
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 2s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003 (E. Kopczynski)
Task
Write a program that: reads the identifier of some binary tree t, computes the identifier of the successor of t in B(|t|), writes the result.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first and only line of the input contains one integer n (0 <= n < = 2 30 ) - the identifier of some binary tree t.
Output
For each test case the first and only line of the output should contain one integer s - the identifier of the successor of t in B(|t|).
Example
Sample input: 1 20 Sample output: 24
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 2s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
Instruction
Semantics
MEM[a] := MEM[a] and MEM[b] MEM[a] := MEM[a] or MEM[b] MEM[a] := MEM[a] xor MEM[b] MEM[a] := not MEM[a] MEM[a] := MEM[b] MEM[a] := c MEM[a] := random value (0 or 1) jump to the instruction with the number x jump to the instruction with the number x if MEM[a] = 0 stop the program
The last instruction of a program is always STOP (although there can be more than one STOP instruction). Every program starts with the instruction number 0. Before the start, the contents of the registers can be arbitrary values. Each instruction (including STOP) takes 1 processor cycle to execute.
Task
Write a program that: reads the program, computes the shortest possible running time of the program, writes the result.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains an integer n (1 <= n <= 16) being the number of instructions of the program. Each of the next n lines contains one instruction of the program in the format given above. You may assume that the only white characters in the program are single spaces between successive tokens of each instruction.
Output
For each test case the first and only line of the output should contain the shortest possible running time of the program, measured in processor cycles. If the program cannot stop, output should contain the word HANGS.
Example
Sample input: 2 5 SET 0 1 JZ 4 0 RANDOM 0 JMP 1 STOP 5 MOV 3 5 NOT 3 AND 3 5 JZ 0 3 STOP Sample output: 6 HANGS
Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
Task
Write a program that: reads a description of a Maximizer, i.e. the initial sequence of sorters in the pipeline, computes the length of the shortest subsequence of the initial sequence of sorters still producing correct results for all possible input data, writes the result.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains two integers n and m (2 <= n <= 50000, 1 <= m <= 500000) separated by a single space. Integer n is the number of inputs and integer m is the number of sorters in the pipeline. The initial sequence of sorters is described in the next m lines. The k-th of these lines contains the parameters of the k-th sorter: two integers i k and j k (1 <= i k < j k <= n) separated by a single space.
Output
For each test case the output consists of only one line containing an integer equal to the length of the shortest subsequence of the initial sequence of sorters still producing correct results for all possible data.
Example
Sample input: 1 40 6 20 30 1 10 10 20 20 30 15 25 30 40 Sample output: 4
Warning: enormous Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-06-26 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2003
Input
First line of input contains one integer c<=100 - number of test cases. Then c lines follow, each of them consisting of exactly one integer 0<=n<=10^12.
Output
For each test case output Yes if it is possible to represent given number as a sum of two squares and No if it is not possible.
Example
Input: 10 1 2 7 14 49 9 17 76 2888 27 Output: Yes Yes No No Yes Yes Yes No Yes No
Added by: Pawel Gawrychowski Date: 2004-06-29 Time limit: 2s Source limit:50000B Languages: All
Input
An integer t denoting the number of test cases, (t<=10000) followed by t pairs of integers a, b, (1<=a<=b<=10 9 ) given in separate lines.
Output
For each test case, output the number of characters Michael has to write down (excluding spaces).
Example
Sample input: 2 1 1 2 3 Sample output: 7 8
(In the first case Michael has to write 1 1 first, in the second case 2 1 second.)
Added by: Adrian Kosowski Date: 2004-06-22 Time limit: 3s Source limit:50000B Languages: All Resource: DASM Programming League 2004 (problemset 1)
Input
The input file contains a list of numbers written down in Maya fashion. Of course, dots are represented as points (.), and dashes are represented as hyphens (-). The zero digit, the shell symbol, is written as a capital letter S (S). Description of a Maya number starts with n - the number of the Maya digits. The following n lines contain one digit each. One digit is written from top to bottom using spaces as vertical separators.
One number will not have more than seven digits. Each two numbers are separated by a blank line. Input terminates with n = 0
Output
Your program has to output the value of the number in the input file in the nowadays more common decimal system. One number per line.
Example
Sample input: 1 .. 5 ... . - S S S 0 Sample output: 2 1231200
Added by: Micha Czuczman Date: 2004-07-11 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
Input
There are several test cases. The first line of each test case contains a single number n, the number of love mobiles. The second line contains the numbers 1 to n in an arbitrary order. All the numbers are separated by single spaces. These numbers indicate the order in which the trucks arrive in the approach street. No more than 1000 love mobiles participate in the street parade. Input ends with number 0.
Output
For each test case your program has to output a line containing a single word yes if the love mobiles can be re-ordered with the help of the side street, and a single word no in the opposite case.
Example
Sample input: 5 5 1 2 4 3 0 Sample output: yes
Illustration
The sample input reflects the following situation: [IMAGE] The five trucks can be re-ordered in the following way: [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE]
Added by: Patryk Pomykalski Date: 2004-07-01 Time limit: 2s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
96. Shopping
Problem code: SHOP
Crowd in the supermarket The old tube screen to your computer turned out to be the cause of your chronic headaches. You therefore decide to buy one of these new flat TFT monitors. At the entrance of the computer shop you see that it is quite full with customers. In fact, the shop is rather packed with customers and moving inside involves a certain amount of elbowing. Since you want to return home quickly to complete your half finished SPOJ tasks, you want to sidestep the crowd as much as possible. You examine the situation somewhat closer and realise that the crowding is less in some parts of the shop. Thus, there is reason for hope that you can reach your goal in due time, provided that you take the shortest way. But which way is the shortest way? You sketch the situation on a piece of paper but even so, it is still a tricky affair. You take out your notebook from your pocket and start to write a program which will find the shortest way for you.
Input
The first line of the input specifies the width w and height h of the shop. Neither dimension exceeds 25. The following h lines contain w characters each. A letter X symbolises a shelf, the letter S marks your starting position, and the letter D marks the destination (i.e. the square in front of the monitors). All free squares are marked with a digit from 1 to 9, meaning the number of seconds needed to pass this square. There are many test cases separated by an empty line. Input terminates with width and height equal 0 0.
Output
Your program is to output the minimum number of seconds needed to reach to destination square. Each test case in a separate line. Movements can only be vertical and horizontal. Of course, all movements must take place inside the grid. There will always be a way to reach the destination.
Example
Sample input: 4 3 X1S3 42X4 X1D2 5 5 S5213 2X2X5 51248 4X4X2
Added by: Micha Czuczman Date: 2004-07-01 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
Input
The first line of the input specifies your party budget and the number n of parties. The following n lines contain two numbers each. The first number indicates the entrance fee of each party. Parties cost between 5 and 25 francs. The second number indicates the amount of fun of each party, given as an integer number ranging from 0 to 10. The budget will not exceed 500 and there will be at most 100 parties. All numbers are separated by a single space. There are many test cases. Input ends with 0 0.
Output
For each test case your program must output the sum of the entrance fees and the sum of all fun values of an optimal solution. Both numbers must be separated by a single space.
Example
Sample input:
50 12 15 16 16 10 21 18 12 17 18 10 3 8 9 6 2 9 4 4 8 9
50 13 19 16 12 10 12 13 15 11 16 0 0
10 8 10 8 9 2 8 5 5 7 2
Sample output:
49 26 48 32
Added by: Patryk Pomykalski Date: 2004-07-01 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
Input
There are several test cases. The first line of each case contains two integer numbers x and y, indicating the width and the height of the dance floor grid. The numbers are separated by a single space and satisfy 3 <= x,y <= 15. The following y lines containing xcharacters each describe the initial on/off states of the tiles. A zero means "the tile is switched off", a one digit means "the tile is alight". Input ends with 0 0.
Output
For each test case your program should output the number of steps needed to switch all the lights on, followed by exactly that many lines with two space-separated numbers i and j. Each individual line commands the singer to step on the i-th tile of the j-th row. Starting with the situation of the input file and executing all the commands in the output file, all the tiles must be switched on. If more than one solution exist, your program should output an arbitrary one of them. If, on the other hand, no solution exists, your program should write the number "-1".
Example
Sample input
4 3 0111 1010 1000 0 0
Sample output
3 1 2 1 3 4 3
Added by: Micha Czuczman Date: 2004-07-01 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
99. Bus
Problem code: BUS
[IMAGE] The city Buscelona (as the name suggests) has a great bus transport system. All buses have circular lines. The bus drivers in Buscelona like to chat. Fortunately most bus lines have some stops in common. If a bus driver meets a colleague on a bus stop they chat a bit and exchange all news they know. The operation of buses is highly synchronized. The time necessary to get from one stop to the next stop is always exactly 1 minute. Each morning each bus driver has some important news that only he knows. When a busdriver meets a colleague he will tell him all news he knows. If two bus drivers share the same start station, they will exchange their news there already (before they start working). Note that exchanging news and stopping does not take any time.
Input
The first line of a test case contains the number of bus lines n (0 < n < 50). The following n lines start with a number s (0 < s < 50) indicating the stops of a busline. On the same line follow s numbers representing a bus station each. A bus starts at the first station. When a bus reaches the last station, the bus will drive to the first station again. There are many test cases separated by an empty line. Input data terminates with n = 0.
Output
For each test case you should output the time in minutes which it takes until all bus drivers know all news. If that never happens, your program should write the word "NEVER" (without quotes).
Example
Sample input: 3 3 1 2 3 3 2 3 1 4 2 3 4 5 2 2 1 2 2 5 8 0 Sample output: 12 NEVER
Added by: Micha Czuczman Date: 2004-07-03 Time limit: 7s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
Input
The number of types of blocks n is located in the first line of each test case. On the subsequent n lines the height y i , the width x i and the depth z i of each type of blocks are given. There are never more than 30 different types available. There are many test cases, which come one by one. Input terminates with n = 0.
Output
For each test case your program should output one line with the height of the highest possible tower.
Example
Sample input: 5 31 41 59 26 53 58 97 93 23 84 62 64 33 83 27 1 1 1 1 0 Sample output: 342 1
Added by: Micha Czuczman Date: 2004-07-06 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
101. Fishmonger
Problem code: FISHER
A Fishmonger A fishmonger wants to bring his goods from the port to the market. On his route he has to traverse an area with many tiny city states. Of course he has to pay a toll at each border. Because he is a good business man, he wants to choose the route in such a way that he has to pay as little money for tolls as possible. On the other hand, he has to be at the market within a certain time, otherwise his fish start to smell.
Input
The first line contains the number of states n and available time t. The first state is the port, the last state is the market. After this line there are n lines with n numbers each, specifying for each state the travel time to the i-th state. This table is terminated with an empty line. The table of the tolls follows in the same format. n is at least 3 and at most 50. The time available is less than 1000. All numbers are integers. There are many test cases separated by an empty line. Input terminates with number of states and time equal 0 0.
Output
For each test case your program should print on one line the total amount of tolls followed by the actual travelling time.
Example
Sample input: 4 7 0 5 2 3 5 0 2 3 3 1 0 2 3 3 2 0 0 2 2 7 2 0 2 2 2 1 0 5 7 2 5 0
0 0 Sample output: 6 6
This corresponds to the following situation, the connections are labeled with (time, toll): [IMAGE] Added by: Micha Czuczman Date: 2004-07-07 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
Input
Each test case starts with the number of bent points n. Each of the next n lines contains a pair of real values x i , y i separated by space. The number of bent points never excedes 200. There are many test cases. Input terminates with n = 0.
Output
For each test case your program should output on a single line the maximal x-coordinate of the point where the light can reach from the source segment, written with precision of two decimal places. If the light goes trough all the pipe, your program should output x n .
Example
Sample input: 4 0.00 1.00 2.00 2.00 4.00 1.00 6.00 4.00 0 Sample output: 4.67
Added by: Micha Czuczman Date: 2004-07-11 Time limit: 3s Source limit:50000B Languages: All Resource: Swiss Olympiad in Informatics 2004
104. Highways
Problem code: HIGH
In some countries building highways takes a lot of time... Maybe thats because there are many possiblities to construct a network of highways and engineers cant make up their minds which one to choose. Suppose we have a list of cities that can be connected directly. Your task is to count how many ways there are to build such a network that between every two cities there exists exactly one path. Two networks differ if there are two cities that are connected directly in the first case and arent in the second case. At most one highway connects two cities. No highway connects a city to itself. Highways are two-way.
Input
The input begins with the integer t, the number of test cases (equal to about 1000). Then t test cases follow. The first line of each test case contains two integers, the number of cities (1<=n<=12) and the number of direct connections between them. Each next line contains two integers a and b, which are numbers of cities that can be connected. Cities are numbered from 1 to n. Consecutive test cases are separated with one blank line.
Output
The number of ways to build the network, for every test case in a separate line. Assume that when there is only one city, the answer should be 1. The answer will fit in a signed 64-bit integer.
Example
Sample input: 4 4 5 3 4 4 2 2 3 1 2 1 3 2 1 2 1 1 0 3 1 2 3 3 2 3 1
Sample output:
8 1 1 3
Added by: Piotr owiec Date: 2004-07-02 Time limit: 7s Source limit:50000B Languages: All
Task
Write a program that: reads the description of sides and diagonals given to Bob by Alice, computes the order of the vertices on the border of the polygon, writes the result.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 20. The data sets follow. Each data set consists of exactly two consecutive lines. The first of those lines contains exactly two integers n and m separated by a single space, 3 <= n <= 10 000, 0 <= m <= n-3. Integer n is the number of vertices of a polygon and integer m is the number of its diagonals, respectively. The second of those lines contains exactly 2(m+n) integers separated by single spaces. Those are ends of all sides and some diagonals of the polygon. Integers a j , b j on positions 2j-1 and 2j, 1 <= j < = m+n, 1 < = a j <= n, 1 < = b j < = n, a j <> b j , specify ends of a side or a diagonal. The sides and the diagonals can be given in an arbitrary order. There are no duplicates. Alice does not cheat, i.e. the puzzle always has a solution.
Output
Line i, 1 <= i < = d, should contain a sequence of n integers separated by single spaces - a permutation of 1, 2, ... , n, i.e. the numbers of subsequent vertices on the border of the polygon from the i-th data set, the sequence should always start from 1 and its second element should be the smaller vertex of the two border neighbours of vertex 1.
Example
Sample input: 1 4 1 1 3 4 2 1 2 4 1 2 3 Sample output: 1 3 2 4
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
Task
Write a program that: reads two positive integers n and m, computes S(n, m) mod 2, writes the result.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 200. The data sets follow. Line i + 1 contains the i-th data set - exactly two integers n i and m i separated by a single space, 1 < = m i < = n i <= 10 9 .
Output
The output should consist of exactly d lines, one line for each data set. Line i, 1 <= i < = d, should contain 0 or 1, the value of S(n i , m i ) mod 2.
Example
Sample input: 1 4 2 Sample output: 1
Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
The Haab calendar was an astronomical one. It had 365 days divided into 19 months each with 20 days, except the last one which had only 5 days. In a manner similar to the Tzolkin each month name had a number from 1 to 20 indicating the day number within the month. Again, from Spanish colonial sources, we know the names of the months: Pohp, Wo, Sip, Zotz, Sek, Xul, Yaxkin, Mol, Chen, Yax, Sak, Keh, Mak, Kankin, Muan, Pax, Kayab, Kumku, Wayeb. The month Wayeb had just 5 days and was considered an unlucky time of the year. The Tzolkin and Haab were combined in the inscriptions to create the Calendar Round, combining the 260 day cycle of the Tzolkin and the 365 day cycle of the Haab. A typical Calendar Round date in the inscriptions might be. 3 Lamat 6 Pax. Note that not all of the combination of days, months and coefficients are possible. A typical sequence of days in the Calendar Round (starting for example at 3 Lamat 6 Pax):
3 Lamat 6 Pax, 4 Muluk 7 Pax, 5 Ok 8 Pax, 6 Chuen 9 Pax, 7 Eb 10 Pax, 8 Ben 11 Pax, 9 Ix 12 Pax, 10 Men 13 Pax, 11 Kib 14 Pax, 12 Kaban 15 Pax, 13 Etznab 16 Pax, 1 Kawak 17 Pax, 2 Ajaw 18 Pax, 3 Imix 19 Pax, 4 Ik 20 Pax, 5 Akbal 1 Kayab, 6 Kan 2 Kayab, ...
Finally, at the beginning of the Classic Period (AD 200 - 900), the Maya developed an absolute calendar called Long Count which counted the days from a fixed date in the past (the date when the current world was created according to Maya belief). Dates in the Long Count are given (for simplicity) in 5-tuples of the form. 9.2.3.4.5. Such a date one reads "9 baktuns 2 katuns 3 tuns 4 winals 5 kins since the zero date". A "kin" is just one day. A winal is a group of 20 days. A tun is a group of 18 winals (thus a tun has 20*18 = 360 days, 5 days short of a year). From here on all units come in multiples of 20. Thus a katun is equal to 20 tuns (almost 20 years) and a baktun means 20 katuns (almost 400 years). Thus 9.2.3.4.5 really means "9*144000+2*7200+3*360+4*20+5 days since the zero date". Note that for every Long Count date b.k.t.w.i we have 0 <= k < 20; 0 <= t < 20; 0 <= w < 18; 0 <= i < 20. Given the periodicity of the Calendar Round, a legal date such as 3 Lamat 6 Pax has multiple occurrences in the Long Count. Thus, one difficulty in reading inscriptions is in establishing a
date for the inscription when the date is given only in terms of a Calendar Round (very common). In this case one must compute "all" the possible Long Count dates associated with the particular Calendar Round and based in some other context information deduce (for example, the text mentions a king for which other dates are known) which one applies. We limit our interest to the Long Count dates in the baktuns 8 and 9 (they cover all the Classic Period). We know that the Long Count date 8.0.0.0.0 fell on the Calendar Round 9 Ajaw 3 Sip.
Task
Write a program that: reads a Calendar Round date, computes all Long Count dates in the baktuns 8 and 9 for the given Calendar Round date if this date is legal, writes the result.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 30. The data sets follow. Each data set consists of exactly one line that contains exactly one Calendar Round date (maybe illegal). Tzolkin day number, Tzolkin day name, Haab day number and Haab month name separated by single spaces.
Output
For every data set your program must output an ascending sequence of Long Count dates computed for a given Calendar Round date. The first line of the output for the given input set should contain exactly one integer n equal to the length of the sequence (0, if the input date is illegal). Each of the next n lines should contain exactly one Long Count date specified by exactly 5 integers (meaning the numbers of baktuns, katuns, tuns, winals and kins respectively) separated by single dots.
Example
Sample input: 2 3 Lamat 6 Pax 1 Ajaw 9 Chen Sample output: 15 8.0.17.17.8 8.3.10.12.8 8.6.3.7.8 8.8.16.2.8 8.11.8.15.8 8.14.1.10.8 8.16.14.5.8 8.19.7.0.8 9.1.19.13.8 9.4.12.8.8
Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
Notice that in the absence of pauses between letters there might be multiple interpretations of a Morse sequence. For example, the sequence -.-..-- could be decoded both as CAT or NXT (among others). A human Morse operator would use other context information (such as a language dictionary) to decide the appropriate decoding. But even provided with such dictionary one can obtain multiple phrases from a single Morse sequence.
Task
Write a program that: reads a Morse sequence and a list of words (a dictionary), computes the number of distinct phrases that can be obtained from the given Morse sequence using words from the dictionary, writes the result. Notice that we are interested in full matches, i.e. the complete Morse sequence must be matched to words in the dictionary.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 20. The data sets follow. The first line of each data set contains a Morse sequence - a nonempty sequence of at most 10000 characters "." and "-" with no spaces in between. The second line contains exactly one integer n, 1 <= n <= 10000, equal to the number of words in a dictionary. Each of the following n lines contains one dictionary word - a nonempty sequence of at most 20 capital letters from "A" to "Z". No word occurs in the dictionary more than once.
Output
The output should consist of exactly d lines, one line for each data set. Line i should contain one integer equal to the number of distinct phrases into which the Morse sequence from the i-th data set can be parsed. You may assume that this number is at most 2*10 9 for every single data set.
Example
Sample input: 1 .---.--.-.-.-.---...-.---. 6 AT TACK TICK ATTACK DAWN DUSK Sample output: 2
Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
109. Exchanges
Problem code: EXCHNG
Given n integer registers r 1 , r 2 , ... , r n we define a Compare-Exchange Instruction CE(a,b), where a, b are register indices (1 <= a < b <= n):
CE(a, b):: if content(r a ) > content(r b ) then exchange the contents of registers r a and r b ;
A Compare-Exchange program (shortly CE-program) is any finite sequence of Compare-Exchange instructions. A CE-program is called a Minimum-Finding program if after its execution the register r 1 always contains the smallest value among all values in the registers. Such a program is called reliable if it remains a Minimum-Finding program after removing any single Compare-Exchange instruction. Given a CE-program P, what is the smallest number of instructions that should be added at the end of program P in order to get a reliable Minimum-Finding program? For instance, consider the following CE-program for 3 registers: CE(1, 2), CE(2, 3), CE(1, 2). In order to make this program a reliable Minimum-Finding program it is sufficient to add only two instructions: CE(1, 3) and CE(1, 2).
Task
Write a program that: reads the description of a CE-program, computes the smallest number of CE-instructions that should be added to make this program a reliable Minimum-Finding program, writes the result.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 10. The data sets follow. Each data set consists of exactly two consecutive lines. The first of those lines contains exactly two integers n and m separated by a single space, 2 <= n <= 10000, 0 <= m <= 25000. Integer n is the number of registers and integer m is the number of program instructions. The second of those lines contains exactly 2m integers separated by single spaces - the program itself. Integers a j , b j on positions 2j-1 and 2j, 1 <= j < = m, 1 < = a j < b j <= n, are parameters of the j-th instruction in the program.
Output
The output should consist of exactly d lines, one line for each data set. Line i, 1 <= i <= d, should contain only one integer - the smallest number of instructions that should be added at the end of the i-th input program in order to make this program a reliable Minimum-Finding program.
Example
Sample input: 1 3 3 1 2 2 3 1 2 Sample output: 2
Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
Task
Write a program that: reads the description of cisterns and the volume of water, computes the level to which the cisterns will be filled with the given amount of water, writes the result.
Input
The first line of the input contains the number of data sets k, 1 <= k <= 30. The data sets follow. The first line of each data set contains one integer n, the number of cisterns, 1 <= n <= 50000. Each of the following n lines consists of 4 nonnegative integers, separated by single spaces: b, h, w, d - the base level of the cistern, its height, width and depth in meters, respectively. The integers satisfy 0 <= b <= 10 6 and 1 <= h*w*d <= 40000. The last line of the data set contains an integer V - the volume of water in cubic meters to be injected into the network. Integer V satisfies 1 <= V <= 2*10 9 .
Output
The output should consist of exactly d lines, one line for each data set. Line i, 1 <= i <= d, should contain the level that the water will reach, in meters, rounded up to two fractional digits, or the word OVERFLOW, if the volume of water exceeds the total capacity of the cisterns.
Example
Sample input: 3 2 0 1 1 1 2 1 1 1 1
Warning: enormous Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
Task
Write a program that: reads the description of a set of vertical segments, computes the number of triangles in this set, writes the result.
Input
The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 20. The data sets follow. The first line of each data set contains exactly one integer n, 1 <= n < = 8000, equal to the number of vertical line segments. Each of the following n lines consists of exactly 3 nonnegative integers separated by single spaces: y i , y i , x i (that is the y-coordinate of the beginning of a segment, y-coordinate of its end and its x-coordinate, respectively). The coordinates satisfy: 0 < = y i < y i <= 8000, 0 < = x i <= 8000. The segments are disjoint.
Output
The output should consist of exactly d lines, one line for each data set. Line i should contain exactly one integer equal to the number of triangles in the i-th data set.
Example
Sample input: 1 5 0 4 4 0 3 1 3 4 2 0 2 2
0 2 3 Sample output: 1
Added by: Adrian Kosowski Date: 2004-07-02 Time limit: 13s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2001
115. Family
Problem code: FAMILY
We want to find out how much related are the members of a family of monsters. Each monster has the same number of genes but the genes themselves may differ from monster to monster. It would be nice to know how many genes any two given monsters have in common. This is impossible, however, since the number of genes is very large. Still, we do know the family tree (well, not actually a tree, but you cannot really blame them, these are monsters, right?) and we do know how the genes are inherited so we can estimate the number of common genes quite well. The inheritance rule is very simple: if a monster C is a child of monsters A and B then each gene of C is identical to the corresponding gene of either A or B, each with probability 50%. Every gene of every monster is inherited independently. Let us define the degree of relationship of monsters X and Y as the expected number of common genes. For example consider a family consisting of two completely unrelated (i.e. having no common genes) monsters A and B and their two children C and D. How much are C and D related? Well, each of Cs genes comes either from A or from B, both with probability 50%. The same is true for D. Thus, the probability of a given gene of C being the same as the corresponding gene of D is 50%. Therefore the degree of relationship of C and D (the expected number of common genes) is equal to 50% of all the genes. Note that the answer would be different if A and B were related. For if A and B had common genes, these would be necessarily inherited by both C and D. Your task is to write a program that, given a family graph and a list of pairs of monsters, computes the degree of relationship for each of these pairs.
Task
Write a program that: reads the description of a family and a list of pairs of its members from the standard input, computes the degree of relationship (in percentages) for each pair on the list, writes the result to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains two integers n and k separated by a single space. Integer n (2 <= n <= 300) is the number of members in a family. Family members are numbered arbitrarily from 1 to n. Integer k (0 <= k <= n - 2) is the number of monsters that do have parents (all the other monsters were created by gods and are completely unrelated to each other). Each of the next k lines contains three different integers a, b, c separated by single spaces. The triple a, b, c means that the monster a is a child of monsters b and c.
The next input line contains an integer m (1 <= m < = n 2 ) - the number of pairs of monsters on the list. Each of the next m lines contains two integers separated by a single space - these are the numbers of two monsters. You may assume that no monster is its own ancestor. You should not make any additional assumptions on the input data. In particular, you should not assume that there exists any valid sex assignment.
Output
For each test case the output consists of m lines. The i-th line corresponds to the i-th pair on the list and should contain single number followed by the percentage sign. The number should be the exact degree of relationship (in percentages) of the monsters in the i-th pair. Unsignificant zeroes are not allowed in the output (please note however that there must be at least one digit before the period sign so for example the leading zero in number 0.1 is significant and you cannot print it as .1). Confront the example output for the details of the output format.
Example
Sample input: 1 7 4 4 1 2 5 2 3 6 4 5 7 5 6 4 1 2 2 6 7 5 3 3 Sample output: 0% 50% 81.25% 100%
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 15s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
116. Intervals
Problem code: INTERVAL
You are given n closed integer intervals [a i , b i ] and n integers c 1 , ..., c n .
Task
Write a program that: reads the number of intervals, their endpoints and integers c 1 , ..., c n from the standard input, computes the minimal size of a set Z of integers which has at least c i common elements with interval [a i , b i ], for each i = 1, 2, ..., n, writes the answer to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains an integer n (1 <= n <= 50000) - the number of intervals. The following n lines describe the intervals. Line (i+1) of the input contains three integers a i , b i and c i separated by single spaces and such that 0 < = a i < = b i <= 50000 and 1 < = c i < = b i -a i +1.
Output
For each test case the output contains exactly one integer equal to the minimal size of set Z sharing at least c i elements with interval [a i , b i ], for each i= 1, 2, ..., n.
Example
Sample input: 1 5 3 7 3 8 10 3 6 8 1 1 3 1 10 11 1 Sample output: 6
Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
118. Rhombs
Problem code: RHOMBS
An unbounded triangular grid is a plane covered by equilateral triangles: rhombs Two neighboring triangles in the grid form a rhomb. There are 3 types of such rhombs: rhombs A grid polygon is a simple polygon which sides consist entirely of sides of triangles in the grid. We say that a grid polygon is rhombastic if it can be partitioned into internally disjoint rhombs of types A, B and C. As an example lets consider the following grid hexagon: rhombs This hexagon can be partitioned into 4 rhombs of type A, 4 rhombs of type B and 4 rhombs of type C: rhombs For a given rhombastic grid polygon P compute the numbers of rhombs of types A, B and C in some correct partition.
Task
Write a program that: reads a description of a rhombastic grid polygon from the standard input, computes the numbers of rhombs of types A, B and C in some correct partition of the polygon, writes the results to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains an integer n (3 <= n <= 50000) - the number of sides of a rhombastic grid polygon. Each of the next n lines contains a description of one side of the polygon. The sides are given one by one in the clockwise order. No two consecutive sides of the polygon lie on the same straight line. The description of a side consists of two integers d and k. Integer d says what is the direction of the side according to the following figure: rhombs
Integer k is the length of the polygon side measured in the number of sides of grid triangles. Sum of all numbers k is not larger than 100000.
Output
For each test case the first and only line of the output contains three integers separated by single spaces denoting the number of rhombs of type A, B and C respectively, in some partition of the input polygon.
Example
Sample input: 1 6 1 2 2 2 3 2 4 2 5 2 6 2 Sample output: 4 4 4
Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
119. Servers
Problem code: SERVERS
The Kingdom of Byteland decided to develop a large computer network of servers offering various services. The network is built of n servers connected by bidirectional wires. Two servers can be directly connected by at most one wire. Each server can be directly connected to at most 10 other servers and every two servers are connected with some path in the network. Each wire has a fixed positive data transmission time measured in milliseconds. The distance (in milliseconds) D(V, W) between two servers V and W is defined as the length of the shortest (transmission time-wise) path connecting V and W in the network. For convenience we let D(V, V) = 0 for all V. Some servers offer more services than others. Therefore each server V is marked with a natural number r(V), called a rank. The bigger the rank the more powerful a server is. At each server, data about nearby servers should be stored. However, not all servers are interesting. The data about distant servers with low ranks do not have to be stored. More specifically, a server W is interesting for a server V if for every server U such that D(V, U) <= D(V, W) we have r(U) <= r(W). For example, all servers of the maximal rank are interesting to all servers. If a server V has the maximal rank, then exactly the servers of the maximal rank are interesting for V . Let B(V) denote the set of servers interesting for a server V. We want to compute the total amount of data about servers that need to be stored in the network being the total sum of sizes of all sets B(V). The Kingdom of Byteland wanted the data to be quite small so it built the network in such a way that this sum does not exceed 30*n.
Task
Write a program that: reads the description of a server network from the standard input, computes the total amount of data about servers that need to be stored in the network, writes the result to the standard output.
Input
The input begins with the integer z, the number of test cases. Then z test cases follow. For each test case, in the first line there are two natural numbers n, m, where n is the number of servers in the network (1 <= n <= 30000) and m is the number of wires (1 <= m <= 5n). The numbers are separated by single space.
In the next n lines the ranks of the servers are given. Line i contains one integer r i (1 <= r i <= 10) the rank of i-th server. In the following m lines the wires are described. Each wire is described by three numbers a, b, t (1 <= t <= 1000, 1 <= a, b <= n, a<> b), where a and b are numbers of the servers connected by the wire and t is the transmission time of the wire in milliseconds.
Output
For each test case the output consists of a single integer equal to the total amount of data about servers that need to be stored in the network.
Example
Sample input: 1 4 3 2 3 1 1 1 4 30 2 3 20 3 4 20 Sample output: 9
(because B(1) = {1, 2}, B(2) = {2}, B(3) = {2, 3}, B(4) = {1, 2, 3, 4}) Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 12s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
120. Solitaire
Problem code: SOLIT
Solitaire is a game played on an 8x8 chessboard. The rows and columns of the chessboard are numbered from 1 to 8, from the top to the bottom and from left to right respectively. There are four identical pieces on the board. In one move it is allowed to: move a piece to an empty neighboring field (up, down, left or right), jump over one neighboring piece to an empty field (up, down, left or right). possible moves in solitaire There are 4 moves allowed for each piece in the configuration shown above. As an example lets consider a piece placed in the row 4, column 4. It can be moved one row up, two rows down, one column left or two columns right.
Task
Write a program that: reads two chessboard configurations from the standard input, verifies whether the second one is reachable from the first one in at most 8 moves, writes the result to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, each of two input lines contains 8 integers a 1 , a 2 , ..., a 8 separated by single spaces and describes one configuration of pieces on the chessboard. Integers a 2j-1 and a 2j (1 <= j <= 4) describe the position of one piece - the row number and the column number respectively.
Output
For each test case the output should contain one word for each test case - YES if a configuration described in the second input line is reachable from the configuration described in the first input line in at most 8 moves, or one word NO otherwise.
Example
Sample input: 1 4 4 4 5 5 4 6 5
Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
121. Timetable
Problem code: TTABLE
You are the owner of a railway system between n cities, numbered by integers from 1 to n. Each train travels from the start station to the end station according to a very specific timetable (always on time), not stopping anywhere between. On each station a departure timetable is available. Unfortunately each timetable contains only direct connections. A passenger that wants to travel from city p to city q is not limited to direct connections however - he or she can change trains. Each change takes zero time, but a passenger cannot change from one train to the other if it departs before the first one arrives. People would like to have a timetable of all optimal connections. A connection departing from city p at A oclock and arriving in city q at B oclock is called optimal if there is no connection that begins in p not sooner than at A, ends in q not later than at B, and has strictly shorter travel time than the considered connection. We are only interested in connections that can be completed during same day.
Task
Write a program that: reads the number n and departure timetable for each of n cities from the standard input, creates a timetable of optimal connections from city 1 to city n, writes the answer to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of the input contains an integer n (2 <= n <= 100000). The following lines contain n timetables for cities 1, 2, ..., n respectively. The first line of the timetable description contains only one integer m. Each of the following m lines corresponds to one position in the timetable and contains: departure time A, arrival time B (A < B) and destination city number t (1 <= t <= n) separated by single spaces. Departure time A and arrival time B are written in format hh : mm, where hh are two digits representing full hours (00 <= hh <= 23) and mm are two digits representing minutes (00 <= mm <= 59). Positions in the timetable are given in non-decreasing order according to the departure times. The number of all positions in all timetables does not exceed 1000000.
Output
For each test case the first line of the output contains an integer r - the number of positions in the timetable being the solution. Each of the following r lines contains a departure time A and an arrival time B separated by single space. The time format should be like in the input and positions in the timetable should be ordered increasingly according to the departure times. If there is more then one optimal connection with the same departure and arrival time, your program should output just one.
Example
Sample input: 1 3 3 09:00 15:00 3 10:00 12:00 2 11:00 20:00 3 2 11:30 13:00 3 12:30 14:00 3 0 Sample output: 2 10:00 14:00 11:00 20:00
Warning: enormous Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 9s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
Task
Write a program that: reads the parameters of the game from the standard input, computes the number of donuts Steve can count on, writes the result to the standard output.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first and only line of the input contains exactly two integers n and m separated by a single space, 1 <= m <= n <= 100 - the parameters of the game, where n is the number of donuts in the box at the beginning of the game and m is the upper limit on the number of donuts to be taken by one player in one move.
Output
For each test case the output contains exactly one integer equal to the number of donuts Steve can count on.
Example
Sample input: 1 5 2 Sample output: 3
Added by: Adrian Kosowski Date: 2004-07-07 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Central European Programming Contest, Warsaw 2002
Input
First line of input contains one integer c<=50 - number of test cases. Then c lines follow, each of them consisting of exactly one integer n<=10^1000.
Output
For each test case output minimal number of coins.
Example
Input: 5 507 29 8574 233 149 Output: 14 7 21 11 10
Added by: Pawel Gawrychowski Date: 2004-07-07 Time limit: 7s Source limit:50000B Languages: All
Small Example
Consider for instance the case where the company has 4 orders: Order 1 (start time 0, duration 5, price 10) Order 2 (start time 3, duration 7, price 8) Order 3 (start time 5, duration 9, price 7) Order 4 (start time 6, duration 9, price 8) The optimal solution consists in declining Order 2 and 3 and the gain is 10+8 = 18. Note that the solution made of Order 1 and 3 is feasible (the airplane is rented with no interruption from time 0 to time 14) but non-optimal.
Input
The first line of the input contains a number T <= 30 that indicates the number of test cases to follow. The first line of each test case contains the number of orders n (n <= 10000). In the following n lines the orders are given. Each order is described by 3 integer values: The start time of the order st (0 <= st < 1000000), the duration d of the order (0 < d < 1000000), and the price p (0 < p < 100000) the customer is ready to pay for this order.
Output
You are required to compute an optimal solution. For each test case your program has to write the total price paid by the airlines.
Example
Input: 1 4 0 5 10 3 7 14
5 9 7 6 9 8 Output: 18
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kuegel Date: 2004-07-13 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest, Paris 2003
Input
The first line of the input contains a number T <= 30 that indicates the number of test cases to follow. Each test case begins with a line containing two integers P and R: $ Ple 10^5$ is the number of primes occurring in the test case; R ($ le 10^5$ ) is the number of sets of primes that arrive. The subsequent R lines each contain two integers i and j making a set $ {p_i,q_i}(1le i,jle P)$ . Note that we actually do not deal with the primes, they are irrelevant to the solution.
Output
For each test case, output the number of squares that can be formed using the preceding rules.
Example
Input: 2 6 7 1 2 3 5 2 4 1 4 3 5 1 6 4 6 2 3 1 2 1 2 1 2 Output: 3 2
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kuegel Date: 2004-07-13 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest, Paris 2003
Input
The first line of the input contains a number T <= 10 that indicates the number of test cases to follow. Each test case begins with K on a line (K <= 1000), followed by the number of containers in the sequence, n, on the second line (1 <= n <= 1000000). There are two possible formats for the remaining lines. If it contains one integer, then this is the next v i . If it begins with the character b (for block), it is followed by 2 integers r and v. This means that the r next containers arriving have volume v.
Output
Your program must output the number s of starships used, followed by a blank, followed by the total waste w. You can assume, that at most 100000 starships are needed, and R2-D2 has to change the starships in which the next container is loaded at most 100000 times.
Example
Input: 2 100 3 50 25 70 100 4 50 b 2 40
20 Output: 2 55 2 50
Added by: Adrian Kuegel Date: 2004-07-14 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest, Paris 2003
Input
Each test case contains one line. On this line are written two integers $ N_{min}$ and $ N_{max}$ separated by a blank. The end of the input is signalled by a line containing two zeros. The number of test cases is approximately 2000.
Output
For each test case, output the list of phony primes in increasing order, one per line. If there are no phony primes in the interval, then simply output none on a line.
Example
Input:
10 2000 20000 21000 0 0
Output:
561 1105 1729 none
Added by: Adrian Kuegel Date: 2004-07-15 Time limit: 13s Source limit:2000B Languages: All Resource: ACM Southwestern European Regional Contest, Paris 2003
Input
The first line of the input contains a number T <= 10 that indicates the number of test cases to follow. The road network is represented on a N x N grid and the first line of each test case consists in the number N, 2 <= N <= 25. Then follows N lines of N characters that represent the road network at time zero. Those lines are made of "." (standing for open road) and "*" (standing for roadblock) and they encode the rows of the grid in increasing order, while columns are also presented in increasing order. Conventionally, your home is at the position first row, first column, while your workplace is at the position last row, last column. Furthermore, you leave home at time t=0, that is, your starting position is first row, first column at time zero. At a given time t, your car must be on some "open road" cell. It takes one time unit to drive to any of the four adjacent cells heading toward north, south, west or east, and you may also choose to stay on the same cell for one time unit. Of course, those five moves are valid if and only if the target cell exists and is free at time t+1. Finally comes N lines of N characters that represent the contractors schedules. Those lines match the ones of the grid description and are made of N characters 0,1,...,9 that specify the duration of the working (and rest) period for a given cell. Observe that 0 is a bit special, since it means that the corresponding cell status does not change.
Output
The output consist in a single line for each test case, holding either the requested time, or NO, if driving from home to work is not possible.
Example
Input:
2 10 .********* ........** *.******.* *.******.* *.******.* *........* *.******.* *.******.* *........* ********.. 0000000000 0000000000 0000000000 0000000000 0000000000 0123456780 0000000000 0000000000 0123456780 0000000000 3 ... **. **. 021 002 000
Output:
34 NO
Added by: Adrian Kuegel Date: 2004-07-16 Time limit: 9s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest, Paris 2003
136. Transformation
Problem code: TRANS
You are given two short sequences of numbers, X and Y. Try to determine the minimum number of steps of transformation required to convert sequence X into sequence Y, or determine that such a conversion is impossible. In every step of transformation of a sequence, you are allowed to replace exactly one occerunce of one of its elements by a sequence of 2 or 3 numbers inserted in its place, according to a rule specified in the input file.
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line of input contains four integers - N, M, U, V (1<=N,M<=50). The next two lines of input contain sequences X and Y, consisting of N and M integers respectively. The next U lines contain three integers: a b c each, signifying that integer a can be converted to the sequence b c in one step of transformation. The next V-U lines contain four integers: a b c d each, signifying that integer a can be converted to the sequence b c d in one step of transformation. With the exception of N and M, all integers provided at input are positive and do not exceed 30. The format of one set of input data is illustrated below. [IMAGE]
Output
For each test case output -1 if it is impossible to convert sequence X into sequence Y, or the minimum number of steps required to achieve this conversion otherwise.
Example
Sample input: 1 3 10 2 3 2 3 1 2 1 1 2 2 1 2 1 2 1 3 1 2 3 3 3 3 1 3 2 Sample output: 6
Adrian Kosowski 2004-07-18 7s 50000B All based on a problem from the VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
137. Partition
Problem code: PARTIT
A partition of positive integer m into n components is any sequence a 1 ,...,a n of positive integers such that a 1 +...+a n =m and a 1 <=a 2 <=...<=a n . Your task is to determine the partition, which occupies the k-th position in the lexicographic order of all partitions of m into n components. The lexicographic order is defined as follows: sequence a 1 ,...,a n comes before b 1 ,...,b n iff there exists such an integer i,1<=i<=n, that a j =b j for all j, 1<= j< i, and a i < b i .
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the input consists of three lines, containing the positive integers m, n and k respectively (1<=n<= 10, 1<= m<=220, k is not larger than the number of partitions of m into n components).
Output
For each test case output the ordered elements of the sought partition, separated by spaces.
Example
Sample input: 1 9 4 3 Sample output: 1 1 3 4
Added by: Adrian Kosowski Date: 2004-07-19 Time limit: 7s Source limit:50000B Languages: All Resource: VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. Each test case begins with a line containing integer n - the number of posters (1<=n<=40000). Then n lines follow, the i-th (1<=i<=n) containing exactly two integers l i r i , denoting the numbers of the leftmost and rightmost sections covered by the i-th poster (1<=l i < r i <= 10 7 ). The input order corresponds to the order of hanging posters.
Output
For each test case output a line containing one integer- the number of posters with visible sections.
Example
Sample input: 1 5 1 4 2 6 8 10 3 4 7 10 Sample output: 4
An illustration of the sample input is given below. The wall with posters
Added by: Adrian Kosowski Date: 2004-07-19 Time limit: 7s Source limit:50000B Languages: All Resource: VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. Each test case begins with a line containing a single integer n - the number of squares in one row of the maze (1<= n <= 200000). The next n lines contain three integers each, denoting the types of blocks in consecutive columns of the maze. A column description is of the form a b c (0<=a,b,c<=2), where a represents the type of the block in the first row, b - in the second row and c - in the third row.
Output
For each test case output the word yes if it is possible to rotate the squares so as to form a connection between the left and right edge, and the word no in the opposite case.
Example
Sample input: 1 6 1 0 1 1 2 2 2 2 1 2 2 1 2 2 1 1 2 2 Sample output: yes
Indeed, the sample input corresponds to the following maze: Input illustration for which there exists a correct solution to the problem: Illustration of the solution Warning: large Input/Output data, be careful with certain languages
Added by: Adrian Kosowski Date: 2004-07-19 Time limit: 10s Source limit:50000B Languages: All Resource: VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. Each test cases begins with the positive integer n <= 32000, denoting the size of the gaming board. The second and last line of the test case description contains a sequence of n characters 0 or 1, without any white spaces. The i-th square of the board is occupied by a pawn at the start of the game iff the i-th character of this sequence is 1.
Output
For each test case output the word yes if it is possible for the player to win the game for the presented starting configuration, or the word no in the opposite case.
Example
Sample input: 2 7 0110011 6 111001 Sample output: yes no
Added by: Adrian Kosowski Date: 2004-07-21 Time limit: 7s Source limit:50000B Languages: All Resource: VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. The first line of each test case contains positive integer n<=10000 - the number of dabs of glue on the floor. The next n lines contain two integers, x y (-15000<=x,y<=15000), representing the x and y coordinates of the dabs (given in the order in which they were placed by Johnny ;).
Output
For each test case output the number of different sections of floor Johnny may choose to cover (possibly 0).
Example
Sample input: 1 8 1 0 1 4 0 3 5 4 5 0 6 1 6 3 0 1 Sample output: 2
Adrian Kosowski 2004-07-22 7s 50000B All based on a problem from the VI Polish Collegiate Team Programming Contest (AMPPZ), 2001
145. Aliens
Problem code: ALIENS
Aliens visited our planet with an obvious intention to find some new species for their space zoo. After entering Earths orbit, they positioned themselves over the town of Belgrade, having detected some life-form activity on the ground. As they approached the surface, they saw a group of half-intelligent beings. Those creatures were actually competitors of the Balkan Olympiad in Informatics who were enjoying the excursion after intense contest. Aliens want to abduct all n (2<=n<=100000) competitors since they are very compassionate, and dont want their creatures to feel lonely in the space zoo. Aliens use tractor beam to take their prey. Tractor beam works in the following way: it projects a circle-shaped beam from the spacecraft to the ground vertically beneath it, and all beings that are found in that circle or on its boundary are taken. Projecting the tractor beam needs a certain amount of energy to be spent. As the radius of the tractor beam (radius of the circle on the ground) increases, more and more energy is required. Although extremely intelligent, aliens are much more advanced in social sciences than in programming. Thats why they are asking you to help them find the position of their spacecraft so that the energy required to take all of the n competitors is minimal. Help our alien brothers! Write a program that will find the required minimal radius of tractor beam that contains all n competitors and the optimal spacecraft location - which is the same as the center of the circle on the ground.
Input
First line of input contains one integer c<=20 - number of test cases. Each test case begins with number n (2<=n<=100000). Then n lines follow and i-th of them contains two real numbers xi and yi (-10000.0<=xi,yi<=10000.0) representing coordinates of the i-th competitor.
Output
For each test case output radius of the tractor beam and coordinates of the spacecraft. Numbers should be rounded to two decimal places.
Example
Input: 1 6 8.0 9.0 4.0 7.5 1.0 2.0 5.1 8.7 9.0 2.0 4.5 1.0 Output: 5.00 5.00 5.00
Added by: Pawel Gawrychowski Date: 2004-07-21 Time limit: 5s Source limit:50000B Languages: All Resource: Balkan Olympiad in Informatics 2002
Input
Two positive integers, ended with a line feed (ASCII 10) each.
Output
The product of the two integers, terminated by a line feed. You may assume that this number will be less than 10000.
Example
Input: 1 2 Output: 2
Added by: Robin Nittka Date: 2004-07-21 Time limit: 2s Source limit:5000B Languages: BF
147. Tautology
Problem code: TAUT
Write a program that checks if the given logical expression is a tautology. The logical expression is a tautology if it is always true, regardless of logical value of its variables.
Input
On the first line there is the number of expressions to check (at most 35). The expression is in a prefix notation, that means that operator precedes its arguments. The following logical operators will be used:
C D I E N and or implies if, and only if not
The variables will be lowercase letters (a-z). There will be no more than 16 different letters in the expression. The length of the expression will not exceed 111 characters.
Output
For each expression write one word: YES if it is a tautology, NO in other case.
Example
Sample input: 7 IIpqDpNp NCNpp Iaz NNNNNNNp IIqrIIpqIpr Ipp Ezz
Added by: Piotr owiec Date: 2004-07-25 Time limit: 7s Source limit:50000B Languages: C C99 strict C++ JAVA NEM PERL PYTH RUBY ICON TEXT
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line contains two integers n m, denoting the number of cities to be connected and the number of available potential roads,respectively(1<=n<= 120,1<=m<=820). The next line contains two integers t 1 t 2 , which stand for the earliest possible and latest possible moments of purchase (-10000<=t 1 <=t 2 <=10000). Each of the following m lines contains four integers, the i-th being: u i v i a i b i , which means that the i-th road connects city u i with city v i , and the purchase of the land under it costs b i +j*a i units of currency at moment j (e.g. at moment 0 the land costs b i units). Please note that these integers are chosen from the following ranges: 0<=u i ,v i <=n-1, -32000<=a i ,b i <=32000.
Output
For each test case output a line with two floating point numbers, accurate to three digits after the decimal point. The first represents the moment of transaction you ought to choose, the second - the total value of the transaction at that moment. If more than one moment fulfills the conditions of the problem, choose the earliest.
Example
Sample input: 2 5 6 0 5 1 0 -6 -4 2 0 3 -3 3 0 1 5 3 1 -2 -3 4 1 -3 -2 4 3 -2 -3 5 7 -20 20 1 0 1 2 2 1 -7 4 3 1 -9 0 3 2 4 9 4 1 0 -2 4 2 2 3 4 3 6 -5 Sample output: 0.000 -13.000 0.111 -1.000
Added by: Adrian Kosowski Date: 2004-07-24 Time limit: 7s Source limit:50000B Languages: All Resource: VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. The first line of each test case contains two integers n m, denoting the number of vertices of the polygon forming the fence, and the number of sheep in the whole herd (3<=n<=100000, 0<=m<=100000). The next n lines contain two integers each, the i-th being x i y i - the x and y coordinates of the i-th vertex of the fence (given in anti-clockwise order, -32000<=x i ,y i <=32000). The next m lines contain two integers each, the j-th being x j y j - the x and y coordinates of the j-th sheep (arranged in decreasing order of seniority, -32000<=x j ,y j <=32000). The shepherds observation point is within the pen and has coordinates (0,0).
Output
For each test case output a line with a single integer - the number of sheep within the pen. The sheep which are sitting back on the fence and enjoying a cigarette should be included in the count.
Example
Sample input: 1 6 5 2 2 4 4 6 6 -3 1 -1 -1 5 1 2 1 3 2 6 6 3 3 -3 0 Sample output: 3
Illustration of the sample test data: The sheep with their shepherd Warning: large Input/Output data, be careful with certain languages Added by: Date: Time limit: Source limit: Languages: Resource: Adrian Kosowski 2004-07-24 7s 50000B All based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line of input contains the integer n - the number of friends who want to meet (1<=n<=10000). The next n lines contain two integers each, the i-th being x i y i , standing for the x and y coordinates of the crossroads at which the i-th friend lives (0<=x i ,y i <=100000).
Output
For each test case output the total distance covered by all friends when walking to the meeting place.
Example
Sample input: 1 7 1 3 3 2 3 5 6 9 10 1 12 4 5 7 Sample output: 39
Adrian Kosowski 2004-07-28 6s 50000B All based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. Each test case begins with a line containing three integers: n m b, denoting the number of cities in Byteland, the number of roads, and the number of the couriers home city, respectively (1<=n<=100,1<=b<=m<=10000). The next m lines contain three integers each, the i-th being u i v i d i , which means that cities u i and v i are connected by a road of length d i (1<=u i ,v i <=100, 1<=d i <= 10000). The following line contains integer z - the number of transport requests the courier has received (1<=z<=5). After that, z lines with the description of the orders follow. Each consists of three integers, the j-th being u j v j b j , which signifies that b j parcels should be transported (individually) from city u j to city v j . The sum of all b j does not exceed 12.
Output
For each test case output a line with a single integer - the length of the shortest possible bicycle route for the courier.
Example
Sample input: 1 5 7 2 1 2 7 1 3 5 1 5 2 2 4 10 2 5 1 3 4 3 3 5 4 3
1 4 2 5 3 1 5 1 1 Sample output: 43
Adrian Kosowski 2004-07-28 7s 50000B All based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line contains three integers: N L D, where N denotes the number of weights at your disposal, L is the length of the binary representation of number W, and D is the modulus (1<= L<= N<= 1000000, 2<= D<=100). The second line contains the value of W, encoded in the binary system as a sequence of exactly L characters 0 or 1 without separating spaces.
Output
For each test case, output a single line containing one integer - the calculated number of possible weight placements, modulo D.
Example
Sample input: 2 6 4 6 1000 6 6 100 100110 Sample output: 3 5
Warning: large Input/Output data, be careful with certain languages Added by: Date: Time limit: Source limit: Languages: Resource: Adrian Kosowski 2004-07-31 7s 50000B All based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case, the first line of input contains one integer N - the length of the stick in centimetres (1<=N<=200). The next line is a sequence of N characters 0 or 1, describing the segments of the stick from the left end to the right end (0 denotes a sour segment, 1 - a sweet one).
Output
For each test case output a line with a single integer: the total length of rock that can be sold after breaking up the rock in the best possible way.
Example
Sample input: 2 15 100110001010001 16 0010111101100000 Sample output: 9 13
Adrian Kosowski 2004-08-03 7s 50000B All based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002
Input
The input begins with the integer t, the number of test cases. Then t test cases follow. For each test case the first line contains the positive integer n - the number of words in a sequence (1<=n<=30). The following n lines contain consecutive words of the sequence X, one word per line. The next n lines contain consecutive words of the sequence Y, one word per line. Words consist of lower case letters of the alphabet (a to z), are non-empty, and not longer than 400 characters.
Output
For each test case output one line containing a single integer - the number of different possible sequences P.
Example
Sample input: 1 5 ab a a ab a a baaaa a a ba Sample output: 12
Added by: Adrian Kosowski Date: 2004-08-07 Time limit: 7s Source limit:50000B Languages: All Resource: IV Polish Olympiad in Informatics (Wojciech Rytter)
Example
Consider two matrices of size 2. [IMAGE] The upper matrix was shifted 2 columns right and 2 rows up. There are three places where holes agree.
Task
Write a program that for each test case: reads the sizes of two matrices and the numbers of columns and rows that the upper matrix should be shifted by, from the standard input; computes the number of yellow stains on the canvas; writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line There is one integer n, 0 <= n <= 100 in the first line of each test case. This number is the size of matrices used for production of paintings. In the second line there is one integer x and in the third line one integer y, where 0 <= x,y <= 2 n . The integer x is the number of columns and y is the number of rows that the upper matrix should be shifted by.
Output
For each test case your program should produce one line with exactly one integer - the number of stains on the canvas.
Example
Sample input: 1 2 2 2 Sample output: 3
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 3s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 1 (Wojciech Rytter)
175. Polygon
Problem code: POLY1
We say that two triangles intersect if their interiors have at least one common point. A polygon is called convex if every segment connecting any two of its points is contained in this polygon. A triangle whose vertices are also vertices of a convex polygon is called an elementary triangle of this polygon. A triangulation of a convex polygon is a set of elementary triangles of this polygon, such that no two triangles from the set intersect and a union of all triangles covers the polygon. We are given a polygon and its triangulation. What is the maximal number of triangles in this triangulation that can be intersected by an elementary triangle of this polygon?
Example
Consider the following triangulation: [IMAGE] The elementary triangle (1,3,5) intersects all the triangles in this triangulation.
Task
Write a program that for each test case: reads the number of vertices of a polygon and its triangulation; computes the maximal number of triangles intersected by an elementary triangle of the given polygon; writes the result to standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line In the first line of a test case there is a number n, 3 <= n <= 1000, which equals the number of vertices of the polygon. The vertices of the polygon are numbered from 0 to n-1 clockwise. The following n-2 lines describe the triangles in the triangulation. There are three integers separated by single spaces in the (i+1)-st line, where 1 <= i <= n-2. These are the numbers of the vertices of the i-th triangle in the triangulation.
Output
For each test case your program should produce one line with exactly one integer - the maximal number of triangles in the triangulation, that can be intersected by a single elementary triangle of the input polygon.
Example
Sample input: 1 6 0 1 2 2 4 3 0 5 4 2 4 0 Sample output: 4
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 1 (Krzysztof Diks)
Task
Write a program that for each test case: reads two integers describing the length of the sequence and the sum of its elements; finds a one-sequence of the given length whose elements sum up to the given value or states that such a sequence does not exist; writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there is a number n, such that 1 <= n <= 10 000, which is the number of elements in the sequence. In the second line there is a number S, which is the sum of the elements of the sequence, such that |S| <= 50 000 000.
Output
For each test case there should be written n integers (each integer in a separate line) that are the elements of the sequence (k-th element in the k-th line) whose sum is S or the word "No" if such a sequence does not exist. If there is more than one solution your program should output any one. Consequent test cases should by separated by an empty line.
Example
Sample input: 1 8 4 Sample output: 0 1 2
1 0 -1 0 1
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 3s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 1 (Grzegorz Jakacki)
177. AB-words
Problem code: ABWORDS
Every sequence of small letters a and b (also the empty sequence) is called an ab-word. If X = [x 1 , ..., x n ] is an ab-word and i, j are integers such that 1 <= i <= j <= n then X[i..j] denotes the subword of X consisting of the letters x i , ..., x j . We say that an ab-word X = [x 1 ..x n ] is nice if it has as many letters a as b and for all i = 1, ..., n the subword X[1..i] has at least as many letters a as b. Now, we give the inductive definition of the similarity between nice ab-words. Every two empty ab-words (i.e. words with no letters) are similar Two non-empty nice ab-words X = [x 1 , ..., x n ] and Y = [y 1 , ..., y m ] are similar if they have the same length (n = m) and one of the following conditions if fulfilled: 1. x 1 = y 1 , x n = y n and X[2..n-1] and Y[2..n-1] are similar ab-words and they are both nice; 2. there exists i, 1 <= i <= n, such that X[1..i], X[i+1..n] are nice ab-words and a) Y[1..i], Y[i+1..n] are nice ab-words and X[1..i] is similar to Y[1..i] and X[i+1..n] is similar to Y[i+1..n], or b) Y[1..n-i], Y[n-i+1..n] are nice ab-words and X[1..i] is similar to Y[n-i+1..n] and X[i+1..n] is similar to Y[1..n-i]. A level of diversity of a non-empty set S of nice ab-words is the maximal number of ab-words that can be chosen from S in such a way that for each pair w 1 ,w 2 of chosen words, w 1 is not similar to w2.
Task
Write a program that for each test case: reads elements of S from standard input; computes the level of diversity of the set S; writes the result to standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there is a number n of elements of the set S, 1 <= n <= 1000; in the following n lines there are elements of the set S, i.e. nice ab-words (one word in each line); the first letter of every ab-word is the first symbol in line and there are no spaces between two consecutive letters in the word; the length of every ab-word is an integer from the range [1..200].
Output
For each test case your program should output one line with one integer - the level of diversity of S.
Example
Sample input: 1 3 aabaabbbab abababaabb abaaabbabb Sample output: 2
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 13s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 1 (Krzysztof Diks)
Example
For the table of distances: A A B C 0 1 2 B 1 0 3 C 2 3 0
Task
Write a program that for each test case: reads the table of distances from standard input; finds all the pairs of neighbouring towns; writes the result to standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is an integer n, 1 <= n <= 200, which equals the number of towns on the map. Towns are numbered from 1 to n. The table of distances is written in the following n lines. In the (i+1)-th line, 1 <= i <= n, there are n non-negative integers not greater than 200, separated by single spaces. The j-th integer is the distance between towns i and j.
Output
For each test case your program should write all the pairs of the neighbouring towns (i.e. their numbers). There should be one pair in each line. Each pair can appear only once. The numbers in each pair should be given in increasing order. Pairs should be ordered so that if the pair (a, b) precedes the pair (c, d) then a < c or (a = c and b < d). Consequent test cases should by separated by an empty line.
Example
Sample input: 1 3 0 1 2 1 0 3 2 3 0 Sample output: 1 2 1 3
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 2 (Piotr Chrzstowski-Wachtel)
Example
Let a, b, c, d, e be variables and let 4, 2, 4, 4, 2 be their lengths (4 is the length of a, 2 is the length of b etc.). Consider the equation: 1bad1 = acbe This equation has 16 distinct solutions.
Input
The number of equations t is in the first line of input, then t descriptions of equations follow separated by an empty line. Each description consists of 6 lines. An equation is described in the following way: in the first line of the description there is an integer k, 0 <= k <= 26, which denotes the number of distinct variables in the equation. We assume that variables are the first k small letters of English alphabet. In the second line there is a sequence of k positive integers separated by single spaces. These numbers denote the lengths of variables a, b, ... from the equation (the first number is the length of a, the second - b, etc.). There is an integer l in the third line of the description, which is the length of the left size of equation, i.e. the length of the word built of digits 0 or 1 and variables (single letters). The left side of the equation is written in the next line as a sequence of digits and variables with no spaces between them. The next two lines contain the description of the right side of the equation. The first of these lines contains a positive integer r, which is the length of the right side of the equation. The second line contains the right side of the equation which is encoded in the same way as the left side. The number of digits plus sum of the lengths of variables (we count all appearances of variables) on each side of the equation is not greater than 10000.
Output
For each equation your program should output one line with the number of distinct solutions.
Example
Sample input: 1 5 4 2 4 4 2 5 1bad1 4 acbe Sample output: 16
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 2 (Wojciech Rytter)
Two containers of size 1 and 2 can be tightly packed with two boxes of total value 3, 4 or 5, or three boxes with total value 9. The container of size 5 cannot be tightly packed with boxes from the warehouse.
Task
Write a program that for each test case: reads descriptions of boxes (size, value) from a warehouse and descriptions of containers (how many containers of a given size we have); checks if all containers can be tightly packed with boxes from the warehouse and if so, computes the minimal value of goods that can be tightly packed into these containers; writes the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there is an integer n, 1 <= n <= 10000, which is the number of boxes in the warehouse. In each of the following n lines there are written two non-negative integers separated by a single space. These numbers describe a single box. First of them is the size of the box and the second - the value of goods contained in this box. The size is not greater than 1000 and the value is not
greater than 10000. The next line contains a positive integer q, which is the number of different sizes of containers delivered to the warehouse. In each of the following q lines there are two positive integers separated by a single space. The first integer is the size of a container and the second one is the number of containers of this size. The maximal number of containers is 5000, a size of a container is not greater than 1000.
Output
For each test case your program should output exactly one line containing: a single word "No" if it is not possible to pack the containers from the given set tight with the boxes from the warehouse, or a single integer equal to the minimal value of goods in boxes with which all the containers from the given set can be packed tight.
Example
Sample input: 1 5 1 3 1 2 3 5 2 1 1 4 2 1 1 2 1 Sample output: 3
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 2 (Wojciech Rytter)
Example
The scuba diver has at his disposal 5 cylinders described below. Each description consists of: volume of oxygen, volume of nitrogen (both values are given in litres) and weight of the cylinder (given in decagrams):
3 36 120 10 25 129 5 50 250 1 45 130 4 20 119
If the scuba diver needs 5 litres of oxygen and 60 litres of nitrogen then he has to take two cylinders of total weight 249 (for example the first and the second ones or the fourth and the fifth ones).
Task
Write a program that for each test case: reads scuba divers demand for oxygen and nitrogen, the number of accessible cylinders and their descriptions; computes the minimal total weight of cylinders the scuba diver needs to complete his task; outputs the result. Note: the given set of cylinders always allows to complete the given task.
Input
The number of test cases c is in the first line of input, then c test cases follow separated by an empty line. In the first line of a test case there are two integers t, a separated by a single space, 1 <= t <= 21 and 1 <= a <= 79. They denote volumes of oxygen and nitrogen respectively, needed to complete the task. The second line contains one integer n, 1 <= n <= 1000, which is the number of accessible cylinders. The following n lines contain descriptions of cylinders; i-th line contains three integers t i , a i , w i separated by single spaces, (1 <= t i <= 21, 1 <= a i <= 79, 1 <= w i <= 800). These are respectively:
volume of oxygen and nitrogen in the i-th cylinder and the weight of this cylinder.
Output
For each test case your program should output one line with the minimal total weight of cylinders the scuba diver should take to complete the task.
Example
Sample input: 1 5 60 5 3 36 120 10 25 129 5 50 250 1 45 130 4 20 119 Sample output: 249
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 2
182. Window
Problem code: WINDOW1
We have a polygon chosen in the cartesian coordinate system. Sides of the polygon are parallel to the axes of coordinates. Every two consecutive sides are perpendicular and coordinates of every vertex are integers. We have also given a window that is a rectangle whose sides are parallel to the axes of coordinates. The interior of the polygon (but not its periphery) is coloured red. What is the number of separate red fragments of the polygon that can be seen through the window?
Example
Look at the figure below: [IMAGE] There are two separate fragments of the polygon that can be seen through the window.
Task
Write a program that for each test case: reads descriptions of a window and a polygon; computes the number of separate red fragments of the polygon that can be seen through the window; outputs the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there are four integers x 1 , y 1 , x 2 , y 2 from the range [0..10000], separated by single spaces. The numbers x 1 , y 1 are the coordinates of the top-left corner of the window. The numbers x 2 , y 2 are the coordinates of the bottom-right corner of the window. The next line of the input file contains one integer n, 4 <= n <= 5000, which equals the number of vertices of the polygon. In the following n lines there are coordinates of polygons vertices given in anticlockwise direction, i.e. the interior of the polygon is on the left side of its periphery when we move along the sides of the polygon according to the given order. Each line contains two integers x, y separated by a single space, 0 <= x <= 10000, 0 <= y <= 10000. The numbers in the i-th line, are coordinates of the i-th vertex of the polygon.
Output
For each test case you should output one line with the number of separate red fragments of the polygon that can be seen through the window.
Example
Sample input: 1 0 5 8 1 24 0 0 4 0 4 2 5 2 5 0 7 0 7 3 3 3 3 2 2 2 2 4 1 4 1 5 2 5 2 6 3 6 3 5 4 5 4 6 5 6 5 4 7 4 7 7 0 7 Sample output: 2
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 2 (Wojciech Guzicki)
Task
Write a program that for each test case: reads a description of an assembler program; computes the minimal number of gates in an assembler circuit equivalent to the given program; writes the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is one integer n (1 <= n <= 1000), which is the number of instructions in the program.
In the following n lines there are descriptions of consecutive instructions in the program. Each description is a four-letter word beginning with an elementary operation symbol: A, B, C or D. The second and the third letter (which are small letters of English alphabet) are names of registers, in which data are placed. The fourth letter is a name of a register, in which the result should be placed.
Output
For each test case you should output one line with the minimal number of gates in an assembler circuit equivalent to the given program.
Example
Sample input: 1 8 Afbc Bfbd Cddd Bcbc Afcc Afbf Cfbb Dfdb Sample output: 6
A circuit equivalent to the given program is shown in the figure. [IMAGE] Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Marcin Kubica)
Example
A client who is going to loan 7 ducats gets 16 ducats from the ATM # 4 and 1 ducat from the ATM # 0 and then he returns 8 ducats in the ATM # 3 and 2 ducats in the ATM # 1. In order to return the amount of 7 ducats he receives 1 ducat from the ATM # 0 and then he returns 8 ducats in ATM # 3.
Task
Write a program that: reads the number of clients n, for every client reads from the same file the amount of money he is going to loan; checks for every client if he is able to get the money using every ATM at most once and if so, determines the numbers of ATMs he has to use; outputs the results.
Input
In the first line of input there is one positive integer n <= 10000, which equals the number of clients. In each of the following n lines there is one positive integer less than 10 30 (at most 30 decimal digits). The number in the i-th line describes the amount of ducats which the client i is going to loan.
Output
For each client you should output two lines with a decreasing sequence of positive integers from the range [0..99] separated by single spaces, or one word "No": In the first line of the i-th pair of lines there should be numbers of ATMs (in decreasing order) that the client i should use to get his loan or one word "No" if the loan cannot be received according to the rules;
In the second line of the i-th pair there should be numbers of ATMs (in decreasing order) which the client i should use to return his loan or the word "No".
Example
Sample input: 2 7 633825300114114700748351602698 Sample output: 4 3 1 0 3 0 No 99 3 1
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Piotr Chrzstowski-Wachtel)
185. Chase
Problem code: CHASE1
Chase is a two-person board game. A board consists of squares numbered from 1 to n. For each pair of different squares it is known if they are adjacent to one another or they are not. Each player has a piece at his disposal. At the beginning of a game pieces of players are placed on fixed, distinct squares. In one turn a player can leave his piece on the square it stands or move it to an adjacent square. A game board has the following properties: it contains no triangles, i.e. there are no three distinct squares such that each pair of them is adjacent, each square can be reached by each player. A game consists of many turns. In one turn each player makes a single move. Each turn is started by player A. We say that player A is caught by player B if both pieces stand on the same square. Decide, if for a given initial positions of pieces, player B can catch player A, independently of the moves of his opponent. If so, how many turns player B needs to catch player A if both play optimally (i.e. player A tries to run away as long as he can and player B tries to catch him as quickly as possible).
Example
[IMAGE] Consider the board in the figure. Adjacent squares (denoted by circles) are connected by edges. If at the beginning of a game pieces of players A and B stand on the squares 9 and 4 respectively, then player B can catch player A in the third turn (if both players move optimally). If game starts with pieces on the squares 8 (player A) and 4 (player B) then player B cannot catch player A (if A plays correctly).
Task
Write a program that for each test case: reads the description of a board and numbers of squares on which pieces are placed initially. decides if player B can catch player A and if so, computes how many turns he needs (we assume that both players play optimally); outputs the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line.
In the first line of a test case there are four integers n, m, a and b separated by single spaces, where 2 <= n <= 3000, n-1 <= m <= 15000, 1 <= a, b <= n. These are (respectively): the number of squares of the board, the number of adjacent (unordered) pairs, the number of the square on which the piece of player A is placed, the number of the square on which the piece of player B is placed. In each of the following lines there are two distinct positive integers separated by a single space, which denote numbers of adjacent squares.
Output
For each test case you should output one line containing: one word "No", if player B cannot catch player A, or one integer - the number of turns needed by B to catch A (if B can catch A).
Example
Sample input: 1 9 11 9 4 1 2 3 2 1 4 4 7 7 5 5 1 6 9 8 5 9 8 5 3 4 8 Sample output: 3
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Adam Borowski)
Example
Assume that k = 2, the weight of the letter a is W(a) = 2 and the weight of the letter b is W(b) = 5. The weight of the word ab is W(ab) = 2 + 5 = 7. W(aba) = 2 + 5 + 2 = 9. The weight of the language J = {ab, aba, b} is W(J) = 21. The language J is not prefixless, since the word ab is a prefix of aba. The lightest three-element, prefixless language over the alphabet A 2 (assuming that weights of the letters are as before) is {b, aa, ab}; its weight is 16.
Task
Write a program that for each test case: reads two integers n, k and the weights of k letters of an alphabet A k ; computes the minimal weight of a prefixless, n-element language over the alphabet A k ; outputs the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there are two positive integers n and k separated by a single space, (2 <= n <= 10000, 2 <= k <= 26). These are the number of words in a language and the number of letters in an alphabet respectively. The second line contains k positive integers separated by single spaces. Each of them is not greater than 10000. The i-th number is the weight of the i-th letter.
Output
For each test case you should output one line with the weight of the lightest prefixless n-element language over the alphabet A k .
Example
Sample input: 1 3 2 2 5 Sample output: 16
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Wojciech Rytter)
Example
[IMAGE] For 6 points whose coordinates are (1,6), (10,8), (1,5), (2,20), (4,4), (6,2) the minimal number of flat broken lines covering them is 3.
Task
Write a program that for each test case: reads the number of points and their coordinates; computes the minimal number of flat broken lines that should be drawn to cover all the points; outputs the result.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there is one positive integer n, not greater than 30000, which denotes the number of points. In the following n lines there are coordinates of points. Each line contains two integers x, y separated by a single space, 0 <= x <= 30000, 0 <= y <= 30000. The numbers in the i-th line are the coordinates of the i-th point.
Output
For each test case you should output one line with the minimal number of flat broken lines that should be drawn to cover all the points.
Example
Sample input: 1 6 1 6 10 8 1 5 2 20 4 4 6 2 Sample output: 3
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Grzegorz Jakacki, Krzysztof Sobusiak)
188. Rectangles
Problem code: RECTNG1
There are n rectangles drawn on the plane. Each rectangle has sides parallel to the coordinate axes and integer coordinates of vertices. We define a block as follows: each rectangle is a block, if two distinct blocks have a common segment then they form the new block otherwise we say that these blocks are separate.
Examples
The rectangles in Figure 1 form two separate blocks. Figure 1 [IMAGE] The rectangles in Figure 2 form a single block Figure 2 [IMAGE]
Task
Write a program that for each test case: reads the number of rectangles and coordinates of their vertices; finds the number of separate blocks formed by the rectangles; writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of a test case there is an integer n, 1 <= n <= 7000, which is the number of rectangles. In the following n lines there are coordinates of rectangles. Each rectangle is described by four numbers: coordinates x, y of the bottom-left vertex and coordinates x, y of the top-right vertex. All these coordinates are non-negative integers not greater than 10000.
Output
For each test case you should output one line with the number of separate blocks formed by the given rectangles.
Example
Sample input: 1 9 0 3 2 6 4 5 5 7 4 2 6 4 2 0 3 2 5 3 6 4 3 2 5 3 1 4 4 7 0 0 1 4 0 0 4 1 Sample output: 2
Added by: Micha Czuczman Date: 2004-08-10 Time limit: 5s Source limit:50000B Languages: All Resource: 5th Polish Olympiad in Informatics, stage 3 (Wojciech Rytter)
196. Musketeers
Problem code: MUSKET
In the time of Louis XIII and his powerful minister cardinal Richelieu in the Full Barrel Inn n musketeers had consumed their meal and were drinking wine. Wine had not run short and therefore the musketeers were eager to quarrel, a drunken brawl broke out, in which each musketeer insulted all the others. A duel was inevitable. But who should fight who and in what order? They decided (for the first time since the brawl they had done something together) that they would stay in a circle and draw lots in order. A drawn musketeer fought against his neighbor to the right. A looser "quit the game" and to be more precise his corpse was taken away by servants. The next musketeer who stood beside the looser became the neighbor of a winner. After years, when historians read memories of the winner they realized that a final result depended in a crucial extent on the order of duels. They noticed that a fence practice had indicated, who against who could win a duel. It appeared that (in mathematical language) the relation "A wins B" was not transitive! It could happen that the musketeer A fought better than B, B better than C and C better than A. Of course, among three of them the first duel influenced the final result. If A and B fight as the first, C wins eventually. But if B and C fight as the first, A wins finally. Historians fascinated by their discovery decided to verify which musketeers could survive. The fate of France and the whole civilized Europe indeed depended on that!
Task
N persons with consecutive numbers from 1 to n stay in a circle. They fight n-1 duels. In the first round one of these persons (e.g. with the number i) fights against its neighbor to the right, i.e. against the person numbered i+1 (or, if i=n, against the person numbered 1). A looser quits the game, and the circle is tighten so that the next person in order becomes a winners neighbor. We are given the table with possible duels results, in the form of a matrix. If Ai,j = 1 then the person with the number i always wins with the person j. If Ai,j = 0 the person i looses with j. We can say that the person k may win the game if there exists such a series of n-1 drawings, that k wins the final duel. Write a program which: reads matrix A from the standard input, computes numbers of persons, who may win the game, writes them into the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case integer n which satisfies the inequality 3<=n<=100 is written. In each of the following n lines appears one word consisting of n digits 0 or 1. A digit on j-th position in i-th line denote Ai,j. Of course Ai,j = 1 - Aj,i, for i<>j. We assume that Ai,i = 1, for each i.
Output
For each test case in the first line there should be written m - the number of persons, who may win the game. In the following m lines numbers of these persons should be written in ascending order, one number in each line.
Example
Sample input: 1 7 1111101 0101100 0111111 0001101 0000101 1101111 0100001 Sample output: 3 1 3 6
The order of duels: 1-2, 1-3, 5-6, 7-1, 4-6, 6-1 gives a final victory to the person numbered 6. You can also check that only two persons more (1 and 3) may win the game. Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 1
Task
Write a program which: reads from the standard input the coordinates of points from the set A, finds one of the regular cuboids of maximal volume which does not contain any points from the set A, writes the result to standard output.
Input
Input begins with a line containing integer t<=10, the number of test cases. t test cases follow. In the first line of each test case one non-negative integer n is written ( n <= 5000). It is the number of elements in the set A. In the following n lines of the input there are triples of integers from the interval [1..10 6 ], which are the X, Y and Z coordinates of points from A, repectively. Numbers in each line are separated by single spaces.
Output
For each test case there should be three integers separated by single spaces. These are the X, Y and Z coordinates (respectively) of the vertex of the regular cuboid of maximal volume. If there is more than one such a cuboid, choose whichever. We require that all coordinates be positive.
Example
Sample input: 1 4 3 3 300000 2 200000 5 90000 3 2000
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 1
Example
Each of the following expressions is the 5-representation of the number 12: 5+5+(5:5)+(5:5) (5+(5))+5:5+5:5 55:5+5:5 (55+5):5 The length of the K-representation is the number of occurrences of digit K in the expression. In the example above the first two representations have the length 6, the third - 5, and the forth - 4.
Task
Write a program which: reads the digit K and the series of numbers from the standard input, verifies for each number from the series, whether it has a K-representation of length at most 8, and if it does, then the program finds the minimal length of this representation, writes results to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. The first line of each test case contains digit K, K is en element of {1,...,9}. The second line contains number n, 1<=n<=10. In the following n lines there is the series of natural numbers a 1 ,...,a n , 1<=a i <=32000 (for i=1,..,n), one number in each line.
Output
The output for each test case composes of n lines. The i-th line should contain: exactly one number which is the minimal length of K-representation of a i , assuming that such a representation of length not grater then 8 exists, one word NO, if the minimal length of the K-representation of the number a i is grater than 8.
Example
Sample input: 1 5 2 12 31168 Sample output 4 NO
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 1
Task
Write a program which: reads from the standard input the description of the polygon, verifies whether the player who starts the game has a winning strategy, writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. The first line of each test case contains an integer n, 4 <= n <= 50000. This is the number of vertices in the polygon. The vertices of the polygon are numbered, clockwise, from 0 to n-1. The next n-2 lines comprise descriptions of triangles in the polygon. In thei+1-th line, 1 <= i <= n-2, there are three non-negative integers a, b, c separated by single spaces. Theses are numbers of vertices of the i-th triangle. The first triangle in a sequence is black.
Output
The output for each test case should have one line with the word: YES, if the player, who starts the game has a winning strategy, NO, if he does not have a winning strategy.
Example
Sample input: 1 6 0 1 2 2 4 3 4 2 0 0 5 4 Sample output: YES
Warning: large Input/Output data, be careful with certain languages Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 1
202. Rockets
Problem code: ROCKETS
There are two separate, n-element sets of points of a two dimensional map: R and W. None triple of points from the set RUW is collinear. Rockets earth-to-earth are located on points from the set R. Enemy objects, which should be destroyed, are located on points from the set W. The rockets may fly only in the straight line and their trajectories cannot intersect. We are about to find for each rocket a target to destroy.
Task
Write a program which: reads from the standard input coordinates of the points from the sets R and W, finds the set of n pairwise not-intersecting segments, so that one end of each segment belongs to the set R, while the other belongs to the set W, writes the result into the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is written one integer n, 1<=n<=10000, equal to the number of elements of the sets R and W. In each of the following 2n lines of the input one pair of integer numbers from the interval [-10000, 10000] is written. Numbers in each pair are separated by a single space. They are coordinates of the point on a map (first coordinate x, then y). The first n lines comprise coordinates of the points from the set R, the last n lines comprise the points from the set W. In the (i+1)-th line there are coordinates of the point r i , in the (i+n+1)-th line there are coordinates of the point w i , 1<= i<= n.
Output
The output for each test case should consist of n lines. In the i-th line there should be one integer k(i), such that the segment r i w k(i) belongs to the set of segments which your program found. (This means that the rocket from the point r i destroys an object in the point w k(i) ).
Example
Sample input: 1 4 0 0 1 5 4 2 2 6 1 2
5 4 4 5 3 1 Sample output: 2 1 4 3
Warning: large Input/Output data, be careful with certain languages Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 2
203. Potholers
Problem code: POTHOLE
A team of speleologists organizes a training in the Grate Cave ofByte Mountains. During the training each speleologist explores a route from Top Chamber to Bottom Chamber. The speleologists may move down only, i.e. the level of every consecutive chamber on a route should be lower then the previous one. Moreover, each speleologist has to start from Top Chamber through a different corridor and each of them must enter Bottom Chamber using different corridor. The remaining corridors may be traversed by more then one speleologist. How many speleologists can train simultaneously?
Task
Write a program which: reads the cave description from the standard input, computes the maximal number of speleologists that may train simultaneously, writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is one integer n (2<=n<=200), equal to the number of chambers in the cave. The chambers are numbered with integers from 1 to n in descending level order - the chamber of grater number is at the higher level than the chamber of the lower one. (Top Chamber has number 1, and Bottom Chamber has number n). In the following n-1lines (i.e. lines 2,3,...,n) the descriptions of corridors are given. The (i+1)-th line contains numbers of chambers connected by corridors with the i-th chamber. (only chambers with numbers grater then i are mentioned). The first number in a line, m, 0<=m<=(n-i+1), is a number of corridors exiting the chamber being described. Then the following m integers are the numbers of the chambers the corridors are leading to.
Output
Your program should write one integer for each test case. This number should be equal to the maximal number of speleologists able to train simultaneously,
Example
Sample input: 1 12 4 3 4 2 5 1 8 2 9 7 2 6 11 1 8 2 9 10 2 10 11
1 2 1 1
12 10 12 12 12
Sample output: 3
The sample input corresponds to the following cave: [IMAGE] Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 2
204. Sleepwalker
Problem code: SLEEP
There is a building with flat square roof of size 3 k *3 k and sides parallel to north-south and east-west directions. The roof is covered with square tiles of size 1 (with a side of length 1), but one of the tiles has been removed and there is a hole in the roof (big enough to fall in). The tiles form a rectangular mesh on the roof, so their positions may be specified with coordinates. The tile at the southwestern corner has coordinates (1,1). The first coordinate increases while going eastwards, and the second while going northwards. Sleepwalker wanders across the roof, in each step moving from the tile he is standing on to the adjacent one on the east(E), west(W), south(S), or north(N). The sleepwalker roof ramble starts from the southwestern corner tile. The description of the path is a word d k built of the letters N, S, E, Wdenoting respectively a step to the north, south, east and west. For k = 1 the word describing the path of sleepwalker is d 1 = EENNWSWN For k = 2 the word describing the path of sleepwalker is d2 = NNEESWSEENNEESWSEEEENNWSWNNEENNWSW NNEENNWSWNWWWSSENESSSSWWNENWWSSW WNENWNEENNWSWN.
(See the picture that shows how the sleepwalker would go across a roof of dimension 3*3 or 9*9.) Generally, if k>=1, the description of a sleepwalkers path on the roof of dimension 3 k+1 *3 k+1 is a word: d k+1 = a(d k ) E a(d k ) E d k N d
k
where functions a, b and c denote the following permutations of letters specifying directions:
a: E->N W->S N->E S->W b: E->S W->N N->W S->E c: E->W W->E N->S S->N
E.g. a(SEN)=WNE, b(SEN)=ESW, c(SEN)=NWS. We start observing sleepwalker at the time he stands on the tile of coordinates (u 1 , u 2 ). After how many steps will sleepwalker fall into the hole made after removing the tile of coordinates (v 1 , v 2 )?
Example
There are sleepwalkers paths on roofs of dimension 3*3 and 9*9 on the picture below. In the second case, the point at which the observation starts and the hole have been marked. The sleepwalker has exactly 20 steps to the hole (from the moment the observation starts). [IMAGE] [IMAGE]
Task
Write a program which: reads from the standard input integer k denoting the size of the roof (3 k *3 k ), the position of the sleepwalker at the moment the observation starts and the position of the hole, computes the number of steps that the sleepwalker will make before he falls into the hole, writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case one integer k, 1<=k<=60, denoting the size of the roof (3 k *3 k ) is written. In each of the following two lines of the test case two natural numbers x, y separated with a space are written, 1<=x<=3^k, 1<=y<=3^k. The numbers in the second line are the coordinates of the tile the sleepwalker is standing on. The numbers in the third line are the coordinates of the hole. You may assume, that with these data the sleepwalker will eventually fall into the hole after some number of steps.
Output
The only line of output for each test case should contain the number of steps on the sleepwalkers path to the hole.
Example
Sample input: 1 2 3 2 7 2 Sample output 20
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 2
205. Icerink
Problem code: ICERINK
A skating competition was organized on the largest icerink in Byteland. The icerink is a square of size 10000 * 10000. A competitor begins skating at the START point chosen by referees and his task is to finish sliding at the FINISH point, also chosen by referees. The points of START and FINISH are different. One can slide in directions parallel to the sides of the icerink. There are some obstacles placed on the icerink. Each obstacle is a prism, which base is a polygon with sides parallel to the sides of the icerink. Each two adjacent sides of the base are always perpendicular. The obstacles do not have common points. Each slide finishes up at the point where a competitor, for the first time, meets the wall of an obstacle, which is perpendicular to the direction of the slide. In other words, one can stop only when he crashes on a wall or in the FINISH point. Falling out of the icerink causes disqualification. Competitor may slide along walls of an obstacle. [IMAGE] [IMAGE] Decide, whether a competitor who slides according to the given rules may reach the finish point, assuming he begun sliding from the starting point. If so, what is the minimal number of slides he needs to do?
Task
Write a program which: reads the description of the icerink, obstacles, and the coordinates of the start and finish point from the standard input, verifies, whether a competitor who begins from the starting point and slides according the rules may reach the finish point, and if so, computes the minimal number of slides he needs to do, writes the result in the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. We define a system of coordinates to describe positions of objects on a rink. The rink is a square with vertices (0,0),(10000,0),(10000,10000),(0,10000). In the first line of each test case there are two integers z 1 and z 2 separated by a single space, 0<=z 1 , z 2 <=10000. The pair (z 1 , z 2 ) denotes coordinates of the START point. In the second line of the file there are two integers t 1 and t 2 separated by single space, 0<=t 1 , t 2 <=10000. The pair (t 1 , t 2 ) denotes coordinates of the FINISH point. The third line of the file contains one integer s, 1<=s<=2500. This is the number of obstacles. The following lines comprise descriptions of s obstacles. Each description of an obstacle begins with the line containing one positive integer r equal to the number of walls (sides of the base) of the obstacle. In each of the following r lines there are two integers x and y separated by a single space.
These are the coordinates of the vertices of the obstacles base, given in a clockwise order. (i.e. when going around the obstacle in this direction the inside is on the left-hand side). The total number of side walls of the obstacles does not exceed 10000.
Output
Your program should write for each test case: either one word NO if its impossible to get from the START point to the FINISH point or the minimal number of slides necessary to get to the FINISH point, if it is possible.
Example
Sample input: 1 40 10 5 40 3 6 0 15 0 60 20 60 20 55 5 55 5 15 12 30 55 30 60 60 60 60 0 0 0 0 5 55 5 55 35 50 35 50 40 55 40 55 55 6 30 25 15 25 15 30 35 30 35 15 30 15 Sample output: 4
The sample input corresponds to the following situation: [IMAGE] These are the possible sequences of slides of length 4:
[IMAGE]
[IMAGE]
[IMAGE]
Warning: large Input/Output data, be careful with certain languages Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 2
206. Bitmap
Problem code: BITMAP
There is given a rectangular bitmap of size n*m. Each pixel of the bitmap is either white or black, but at least one is white. The pixel in i-th line and j-th column is called the pixel (i,j). The distance between two pixels p 1 =(i 1 ,j 1 ) and p 2 =(i 2 ,j 2 ) is defined as: d(p 1 ,p 2 )=|i 1 -i 2 |+|j 1 -j 2 |.
Task
Write a program which: reads the description of the bitmap from the standard input, for each pixel, computes the distance to the nearest white pixel, writes the results to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is a pair of integer numbersn, m separated by a single space, 1<=n <=182, 1<=m<=182. In each of the following n lines of the test case exactly one zero-one word of length m, the description of one line of the bitmap, is written. On the j-th position in the line (i+1), 1 <= i <= n, 1 <= j <= m, is 1 if, and only if the pixel (i,j) is white.
Output
In the i-th line for each test case, 1<=i<=n, there should be written m integers f(i,1),...,f(i,m) separated by single spaces, where f(i,j) is the distance from the pixel (i,j) to the nearest white pixel.
Example
Sample input: 1 3 4 0001 0011 0110 Sample output: 3 2 1 0 2 1 0 0 1 0 0 1
Added by: Piotr owiec Date: 2004-09-13 Time limit: 4s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 2
Task
Write a program which: reads the specification of the tree from the standard input, computes the maximal and the minimal number of vertices that may be painted green, writes the results in the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. Each test case consists of one word (no longer then 10000 characters), which is a specification of a tree.
Output
Your program should write for each test case exactly two integers separated by a single space, which respectively denote the maximal and the minimal number of vertices that may be painted green.
Example
Sample input: 1
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
208. Store-keeper
Problem code: STORE
The floor of a store is a rectangle divided into n*m square fields. Two fields are adjacent, if they have a common side. A parcel lays on one of the fields. Each of the remaining fields is either empty, or occupied by a case, which is too heavy to be moved by a store-keeper. The store-keeper has to shift the parcel from the starting field P to the final field K. He can move on the empty fields, going from the field on which he stands to a chosen adjacent field. When the store-keeper stays on a field adjacent to the one with the parcel he may push the parcel so that if moves to the next field (i.e. the field on the other side of the parcel), assuming condition that there are no cases on this field.
Task
Write a program, which: reads from the standard input a store scheme, a starting position of the store-keeper and a final position of the parcel, computes minimal number of the parcel shifts through borders of fields, which are necessary to put the parcel in the final position or decides that it is impossible to put the parcel there, writes the result into the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case two positive integers separated by a single space, n,m<=100, are written. These are dimensions of the store. In each of the following n lines there appears one m-letter word made of letters S, M, P, K, w. A letter on i-th position in j-th word denotes a type of the field with coordinates (i,j) and its meaning is following: S - case, M - starting position of the store-keeper, P - starting position of the parcel, K - final position of the parcel, w - empty field. Each letter M, P and K appears in the test case exactly once.
Output
Your program should write to the standard output for each test case: exactly one word NO if the parcel cannot be put on the target field, exactly one integer, equal to the minimal number of the parcel shifts through borders of the fields, necessary to put a parcel on a final position, if it is possible to put the parcel there.
Example
Sample input: 1 10 12 SSSSSSSSSSSS SwwwwwwwSSSS SwSSSSwwSSSS SwSSSSwwSKSS SwSSSSwwSwSS SwwwwwPwwwww SSSSSSSwSwSw SSSSSSMwSwww SSSSSSSSSSSS SSSSSSSSSSSS Sample output 7
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
Task
Write a program which: reads the population of regions in Byteland from the standard input, computes the minimal cumulative error, writes the result to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case an integer n is written, which is the number of regions in Byteland, 10< n <3000. In the second line the number m denoting the number of colors used to color the map is written, 2 <= m <= 10. In each of the following n lines there is one non-negative integer - a population of one of the regions of Byteland. No population exceeds 2^30.
Output
Your program should write for each test case one integer number equal to a minimal cumulative error, which can be achieved while the map is colored (optimally).
Example
Sample input: 1 11 3 21 14 6 18 10
2 15 12 3 2 2 Sample output: 15
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
Task
Write a program which: reads descriptions of the temples from the standard input, verifies which temples could be profaned, writes their numbers to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case one integer n, the number of temples 1 <= n <= 1000, is written. In each of the following n lines there is a description of one temple (in i-th line a description of the i-th temple). The description of a temple consists of four non-negative integers, not greater than 8000 and a letter E, W, S or N. Two first numbers are coordinates of a temples northern-west corner and two following are coordinates of an opposite southern-east corner. In order to specify coordinates of a point first we give its geographical longitude, which increases from the west to the east, and then its latitude, which increases from the south to the north. The fifth element of the description indicates the wall with the entrance (E - Eastern, W - Western, S - Southern, N - Northern). The elements of the temples description are separated by single spaces.
Output
In the following lines of the output for each test case your program should write in ascending order numbers of the temples, which may be profaned by an evil spirit. Each number is placed in a separate line. If there are no such numbers, you should write one word: NONE.
Example
Sample input
6 1 7 4 1 E 3 9 11 8 S 6 7 10 4 N 8 3 10 1 N 11 4 13 1 E 14 8 20 7 W
Sample output
1 2 5 6
The picture shows the temples described in the example. The dashed lines show possible routes of evil spirits. [IMAGE] Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
Task
Write a program which: reads the list of the features from the standard input, computes the length of the shortest genetic code having given features, writes the results to the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case one positive integer number n is written. It is the number of different features of the primitivus. In each of the following n lines there is a pair of natural numbers l and r separated by a single space, 1 <= l <= 1000, 1 <= r <= 1000. A pair (l, r) is one of the primitivus features. The features do not repeat in the input file
Output
Your program should write for each test case exactly one integer number equal to the length of the shortest genetic code of the primitivus, comprising the features from the input.
Example
Sample input: 1 12 2 3 3 9 9 6 8 5 5 7 7 6 4 5 5 1 1 4 4 2 2 8
8 6 Sample output: 15
All the features from the example are written in the following genetic code: (8, 5, 1, 4, 2, 3, 9, 6, 4, 5, 7, 6, 2, 8, 6) Warning: enormous Input/Output data, be careful with certain languages Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
Task
Write a program which: reads from the standard input a size of the chessboard and heights of cuboids put on the fields, computes maximal water volume, which may gather in puddles after the rain, writes results in the standard output.
Input
The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case two positive integers 1 <= n <= 100, 1 <= m <= 100 are written. They are the size of the mesh. In each of the following n lines there are m integers from the interval [1..10000];i-th number in j-th line denotes a height of a cuboid given in inches put on the field in the i-th column and j-th raw of the chessboard.
Output
Your program should write for each tes case one integer equal to the maximal volume of water (given in cubic inches), which may gather in puddles on the construction.
Example
Sample input: 1 3 6 3 3 4 4 4 2 3 1 3 2 1 4 7 3 1 6 4 1 Sample output: 5
The picture below shows the mesh after the rain (seen from above). Puddles are drawn in gray. [IMAGE] [IMAGE]
Added by: Piotr owiec Date: 2004-09-13 Time limit: 7s Source limit:50000B Languages: All Resource: 6th Polish Olympiad in Informatics, stage 3
Input
The first line of input contains a single integer t<=500, the number of test cases. t test cases follow. Each test case begins with a line containing three integers n m k (1<=n<=50000, 0<=m<=250000, 0<=k<=n) denoting the total number of plazas, the number of streets in the city, and the number of plazas in which bags are planted, respectively. Each of the following m lines contains 4 integers u v t uv t vu (1<=u,v<=n, 1<=t uv ,t vu <=1000) representing a single road in the city - leading from plaza u to plaza v and requiring t uv time to cover when running at constant speed from u to v, and t vu time when running the other way. The last line of a test case description contains a list of the k numbers of plazas at which bags explode at noon.
Output
For each test case, the output should contain a single line with a space separated increasing sequence of integers - the numbers of all the plazas which offer the maximum possible survival time to a person sitting there at noon.
Example
Input: 2 4 1 2 3 4 3 1 5 2 4 2 3 1 2 2 10 30 10 50 5
10 30 10 5 50
2 0 1 2 Output: 2 3 4 1
(In the first case the life expectancy is 22.5, in the second case it is more or less infinite.) Warning: enormous Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-09-27 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004 (problemset 2)
Input
The first line of input contains a single positive integer t<=10 - the number of provinces which are proposing new laws. t sets of rules follow, separated by empty lines. Each set of rule begins with a line containing two non-negative integers n p (n<=100000, p<=100000) - the number of soldiers arranged and the number of rules proposed in the province, respectively. Each of the next p lines contains a single rule: an integer b i (2<=b i <=n), followed by b i integers a 1 ,a 2 ,...,a bi (1<=a k <=n). Such a rule means that soldiers standing at positions a 1 ,a 2 ,...,a bi must all be of different rank.
Output
For every set of rules presented at input, output a single line containing the word rejected if no unit of soldiers can be arranged in accordance with protocol, or the word approved in the opposite case.
Example
Input: 2 2 1 2 1 2 5 2 3 1 3 2 4 2 3 4 5 Output: approved rejected
Added by: Adrian Kosowski Date: 2004-10-08 Time limit: 9s Source limit:50000B Languages: All Resource: DASM Programming League 2004 (problemset 1)
Input
The first line of input contains a single positive integer t<=10, the number of test cases. t test cases follow. Each test case begins with integer n (n<=10), the number of messages. The next n lines contain the messages, consisting only of between 2 and 10000 characters a-z, possibly with some additional trailing white space which should be ignored.
Output
For each test case output the length of longest string which appears disjointly at least twice in all of the messages.
Example
Input: 1 4 abbabba dabddkababa bacaba baba Output: 2
(in the example above, the longest substring which fulfills the requirements is ba) Added by: Adrian Kosowski Date: 2004-10-11 Time limit: 9s Source limit:50000B Languages: All Resource: DASM Programming League 2004 (problemset 1)
Now Vonny wants to arrange her 28 stones in such way that her stones cover all squares of the box. A stone can only be placed on two adjacent squares if the numbers of the squares and of the domino stone are equal. Tommy asks Vonny in how many different ways she can arrange the dominos. Tommy assumes that Vonny need a lot of time to answer the question. And so he can take some of Vonnys candies while she solves the task. But Vonny is a smart and clever girl. She asks you to solve the task and keeps an eye on her candies.
Input
The first line of the input contains the number of testcases. Each case consists of 56 numbers (7 rows and 8 cols) between 0 and 6 which represents Tommys box.
Output
For each testcase output a single line with the number which answers Tommys question.
Example
Input: 2 0 3 0 2 1 5 6 5 3 4 1 4 6 6 1 0 4 0 3 2 1 4 1 5 1 2 6 5 2 5 5 5 4 6 5 0 1 4 2 1 6 6 2 2 4 3 6 3 3 3 2 4 0 0 0 3
5 3 1 0 0 1 6 3 0 2 0 4 1 2 5 2 1 5 3 5 6 4 6 4
0 4 2 2
5 5 3 1
0 3 5 1
2 6 3 6
0 0 4 6
4 6 4 2
6 1 5 4
2 1 3 3
Output: 18 1
Added by: Simon Gog Date: 2004-10-18 Time limit: 20s Source limit:50000B Languages: All
Input
The first line of input contains a single integer t<=500, the number of test cases. The next t lines contain one test case each, in the form of a string of at most 8000 characters a-z (terminated by a new line, optionally preceded by whitespace which should be ignored). The i-th character of the line corresponds to the design on the i-th stone in the amber string it represents. The total length of the input file is not more than 100kB.
Output
For each test case output two numbers: the largest possible total length of the pair of earrings which can be produced from the string, and a positive integer denoting the number of the stone after which the string ought to be cut so as to achieve this. If more than one cutting position is possible, output the leftmost (smallest) one.
Example
Input: 3 abcacdd acbddabedff abcbca Output: 4 3 6 4 4 2
(the first case is illustrated in the figure, in the second case we produce a pair of earrings of the form abd, in the third - a pair of earrings which look like ab after rotating the second one by 180 degrees). Added by: Adrian Kosowski Date: 2004-10-29 Time limit: 25s Source limit:50000B Languages: All except: C99 strict Resource: DASM Programming League 2004, problemset 2
Input
The first line of input contains an integer t<=50, the number of test cases. It is followed by t test cases, each consisting of 2 lines. The first line contains a single integer n (1<=n<=200000). The second line contains n space separated integers w i , denoting how far the i-th soldier in line must walk to the left when applying Msgt Johnnys algorithm.
Output
For each test case, output a single line consisting of n space separated integers - the ranks of the soldiers, given from left to right in their initial arrangement.
Example
Input: 2 3 0 1 0 5 0 1 2 0 1 Output: 2 1 3 3 2 1 5 4
Warning: large Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-10-30 Time limit: 13s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 2
228. Shamans
Problem code: SHAMAN
In the far bare land there lives a mysterious tribe. They suffer from drought every year but they stick to their faith in god that they will never leave their home land. To counter the dry weather the shamans in the tribe must pray during the hard time and hope the blessed rain will aid their production of food. There are 4 chief shamans in the tribe and each of them will choose a summit in the territory to proceed with his praying. The area in which the shamans spells take effect will be the quadrangle they form, each of them being one of its vertices (which the god will see when he looks down from the high heavens). The land is quite full of pinch and punch and the tribe has selected quite a few peaks for the shamans to pray on. Of course the area of the quadrangle is expected to be as large as possible so before the shamans actually go out, they will have to choose the 4 peaks that best suit their purpose.
Input
One integer in the first line, stating the number of test cases, followed by a blank line. There will be not more than 80 tests. For each test case, the first line is an integer n (4 <= n <= 2000) stating the number of peaks. Then n lines follow, each presenting the position of a peak, with two integers x, y (-20000 <= x, y <= 20000). The test cases will be separated by a single blank line.
Output
A floating point number with exactly 1 digit precision: the maximum area the shamans can cover.
Example
Input: 2 4 0 1 1 0 4 0 0 1 1
0 0 1 1
0 1 1 0
Added by: Neal Zane Date: 2004-11-02 Time limit: 3s Source limit:50000B Languages: All Resource: Neal Zane
Input
The input consists of a line of up to 1000 uppercase letters, terminated with a \n character (ASCII value 10).
Output
The output should contain a line consisting of the same characters as the input line, but in non-descending order.
Example
Input: BRAINFUCK Output: ABCFIKNRU
Added by: Adrian Kuegel Date: 2004-11-04 Time limit: 1s Source limit:500B Languages: BF Resource: own problem
Input
Input starts with a single integer t, the number of test cases (t<=100). t test cases follow. Each test case begins with a line containing three integers n w v, denoting the number of people other than you who wish to cross the street, the width of the street expressed in meters, and the maximum speed you can walk at given in meters per second, respectively (1<=n<=10000, 1<=w<=100, 1<=v<=10000). Each of the next n lines contains three integers x i t i a i , which describe the starting position of the i-th pedestrian measured in meters, the time (in seconds) he takes to cross the street, and the angle at which he is walking with respect to the line normal to the sides of the street, expressed in 1/60 parts of a degree (-10000<=x i <=10000, 1<=t i <=10000, -5000<=a i <=5000). Illustration of problem input
Output
For each test case output a single integer -- the maximum number of people you can collide with by the time you reach the opposite side of the street.
Example
Input: 1 5 20 2 -20 10 2700 20 10 -2700 -5 1 4000 -4 1 4000 5 1 -4000 Output: 2
(In the example, due to the imposed speed limit, it is only possible to collide with the first two pedestrians while crossing the street, at the last possible moment.) Added by: Adrian Kosowski Date: 2004-11-13 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 7
Input
The first line of input contains a single integer t<=200 - the number of test cases. t test case descriptions follow. For each test case, the first line contains two space separated integers n k (1<=k < n<=30), denoting the total number of holidays and the number of holidays to be removed. The next line contains n space separated integers, the i-th being t i (1<=t i <=10 18 ) - the number of days every which the i-th holiday occurs.
Output
For each test case, output one line containing an increasing sequence of exactly k integers - the numbers of the holidays to be removed (holidays are numbered in the input order from 1 to n).
Example
Input: 1 5 2 6 13 10 15 7 Output: 2 5
(The shortest period between two successive holiday parties is 2 days.) Added by: Adrian Kosowski Date: 2004-11-25 Time limit: 17s Source limit:4096B Languages: All Resource: DASM Programming League 2004, problemset 4
Input
n [the number of multiplications <= 101] l1 l2 [numbers to multiply (at most 300000 decimal digits each)] Text grouped in [ ] does not appear in the input file.
Output
The results of multiplications.
Example
Input: 5 4 2 123 43 324 342 0 12 9999 12345 Output: 8 5289 110808 0 123437655
Warning: large Input/Output data, be careful with certain languages Added by: Darek Dereniowski Date: 2004-11-27 Time limit: 3s Source limit:50000B Languages: All Resource: PAL
Input
Input is given by spelling the number in english digits (all upper case letters). Thus the range of (32-bit) input values permissible extends from ZERO (or OH) through FOUR TWO NINE FOUR NINE SIX SEVEN TWO NINE FIVE.
Output
Output 2 lines for each test case. Output is in the form of "extended" Roman numerals (also called "butchered" Roman numerals), with an overline (see sample for details) indicating the value below is "times 1000", and lower-case letters indicating "times 1000000". Thus, the range of (32-bit) output values possible is from through ivccxcivCMLXVIICCXCV, where there is a line above iv and CMLXVII. Note: For values whose residues modulo 1000000 are less than 4000, M is used to represent 1000; for values whose residues are 4000 or greater, I is used. Thus 3999 would read out as MMMCMXCIX while 4000 would readout as IV with an overline. Similar rules apply to the use of M and i for 1000000, and to that of m and i for 1000000000. WARNING: This problem has a somewhat strict source limit
Example
Input: THREE FOUR OH ONE NINE NINE NINE NINE NINE NINE NINE NINE NINE ONE TWO THREE ZERO FOUR FIVE Output: XL ______ mcmxcixCMXCIXCMXCIX ___ CXXMMMXLV
Added by: Robin Nittka Date: 2004-11-30 Time limit: 9s Source limit:2048B Languages: All
Input
In the first line integer n - the number of test cases (equal to about 1000). Then n test cases follow. Each test case starts with the number of lines which is followed by their content.
Output
For each test case write the determined value in a separate line.
Example
Input: 2 3 1 2 1 1 2 3 4 1 1 2 4 1 2 2 3 1 1 Output: 5 9
ukasz Kuszner 2004-12-01 2s 256B All 6-th International Olympiad In Informatics July 3-10. 1994. Stockholm - Sweden, Problem 1
Input
The first line of input contains a single integer t<=100 - the number of test cases. t test case descriptions follow. For each test case, the first line contains two space separated integers n k (1<=k < n<=100), denoting the total number of holidays and the number of holidays to be removed. The next line contains n space separated integers, the i-th being t i (1<=t i <=10 18 ) - the number of days every which the i-th holiday occurs.
Output
For each test case, output one line containing an increasing sequence of exactly k integers - the numbers of the holidays to be removed (holidays are numbered in the input order from 1 to n).
Example
Input: 2 6 4 1 3 4 5 6 1 8 4 200 125 200 999 380 500 200 500 Output: 1 3 4 6 2 4 5 6
(In the first test case r is equal to 3 days, in the second case it is equal to 100 days. For the second test case the output 1 2 4 5, 2 3 4 5, 2 4 5 6, 2 4 5 7 or 2 4 5 8 is also correct.) Added by: Adrian Kosowski Date: 2004-12-07 Time limit: 17s Source limit:4096B Languages: All Resource: DASM Programming League 2004, problemset 4
Input
The input starts with a line containing a single integer t<=200, the number of test cases. t test cases follow. Each test case begins with a line with two integers n m, denoting the number of intersections and the number of streets in Byteland, respectively (1<=n<=1000). m lines follow, each containing three integers u i v i d i , denoting the end points and the length of the i-th street segment, respectively (1<=u i <=v i <=n, 1<=d i <=10 6 ).
Output
For each test case output a single line containing exactly two space separated non-negative integers d c - the length of the shortest possible race loop, and the number of routes of this length in the graph. Output 0 0 if the race cannot be held.
Example
Input: 2 3 2 1 2 1 1 3 2 4 6 1 2 5 1 4 5
2 2 3 3
3 4 4 1
4 5 5 5
Output: 0 0 14 2
Added by: Krzysztof Kluczek Date: 2004-12-09 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 4
Input
The input starts with a line containing a single integer t<=200, the number of test cases. t test cases follow. Each test case begins with a line containing integer n (1<=n<=500). The next n lines contain n integers P i,j each, forming a bitmap matrix representing the colours of the blocks in their initial configuration (1<=P i,j <=n 2 ). The following n lines contain n integers Q i,j each, corresponding to the matrix for the final configuration (1<=Q i,j <=n 2 ).
Output
For each test case output a line with a single non-negative integer corresponding to the number of minutes required to transform matrix P into matrix Q, or the word no if no such transformation is possible.
Example
Input: 3 3 1 3 4 2 1 3 2 5 5 3 1 3 2 1 2 4 5 5 3 1 2 3 4 5 6 7 8 9 1 5 6 4 2 9
7 2 1 1 1 1
8 3 2 2 3 2
Output: 2 1 no
The actions taken in the first test case are illustrated below. 2 step transformation: 134 213 255 -> 413 312 255 -> 313 212 455 Warning: enormous Input/Output data, be careful with certain languages Added by: Adrian Kosowski Date: 2004-12-09 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 4
Input
The first line contains a positive integer t<=100 indicating the number of test cases. Each test case is an instance of the stable marriage problem defined above. The first line of each test case is a positive integer n<=500 (the number of marriages to find). The next n lines are the womans preferences: ith line contains the number i (which means that this is the list given by the ith woman) and the numbers of men (the first choice of ith woman, the second choice,...). Then, the mens preferences follow in the same format.
Output
For each test case print n lines, where each line contains two numbers m and w, which means that the man number m and the woman number w should get married.
Example
Input: 2 4 1 4 3 1 2 2 1 3 3 1 3 4 4 4 3 1 1 3 2 4 2 2 3 1 3 3 1 2 4 3 2 4 7 1 3 4 2 2 6 4 2 3 6 3 5 4 1 6 3 5 1 6 5 6 1 7 3 7 5 6 2 1 4 5 3 2 5 6 4 3 1 6 5 4 3 5 6 5 1 7 6 6 6 3 7
2 4 2 2 1 4 4 1 1 3 7 2 3 4 4 7 7 4 7 4 5 6 5 2 4 4 5 3 2 3 3 2 3 2 7 1 4 7 7 6 7 6 2 7 4 5 4 5 7 1 5 2 2 1 1 1 2 1 2 1
7 1 7 4 2 6 5 3
Output: 1 3 2 2 3 1 4 4 1 4 2 5 3 1 4 3 5 7 6 6 7 2
Warning: large Input/Output data, be careful with certain languages Added by: Darek Dereniowski Date: 2004-12-13 Time limit: 1s-3s Source limit:50000B Languages: All Resource: problem known as the Stable Marriage Problem
Input
t - the number of test cases [t <= 50] then t positive numbers follow, each of them have up to 800 digits in decimal representation.
Output
Output must contain exactly t numbers equal to the square root for given numbers. See sample input/output for details.
Example
Input: 3 36 81 226576 Output: 6 9 476
Roman Sol 2004-12-15 5s 50000B C C99 strict C++ PAS gpc PAS fpc ASM D FORT ADA SCM guile CAML PRLG WSPC BF ICK ZCon 2005
247. Chocolate
Problem code: CHOCOLA
We are given a bar of chocolate composed of m*n square pieces. One should break the chocolate into single squares. Parts of the chocolate may be broken along the vertical and horizontal lines as indicated by the broken lines in the picture. A single break of a part of the chocolate along a chosen vertical or horizontal line divides that part into two smaller ones. Each break of a part of the chocolate is charged a cost expressed by a positive integer. This cost does not depend on the size of the part that is being broken but only depends on the line the break goes along. Let us denote the costs of breaking along consecutive vertical lines with x 1 , x 2 , ..., x m-1 and along horizontal lines with y 1 , y 2 , ..., y n-1 . The cost of breaking the whole bar into single squares is the sum of the successive breaks. One should compute the minimal cost of breaking the whole chocolate into single squares. [IMAGE] For example, if we break the chocolate presented in the picture first along the horizontal lines, and next each obtained part along vertical lines then the cost of that breaking will be y 1 +y 2 +y 3 +4*(x 1 +x 2 +x 3 +x 4 +x 5 ).
Task
Write a program that for each test case: Reads the numbers x 1 , x 2 , ..., x m-1 and y 1 , y 2 , ..., y n-1 Computes the minimal cost of breaking the whole chocolate into single squares, writes the result.
Input
One integer in the first line, stating the number of test cases, followed by a blank line. There will be not more than 20 tests. For each test case, at the first line there are two positive integers m and n separated by a single space, 2 <= m,n <= 1000. In the successive m-1 lines there are numbers x 1 , x 2 , ..., x m-1 , one per line, 1 <= x i <= 1000. In the successive n-1 lines there are numbers y 1 , y 2 , ..., y n-1 , one per line, 1 <= y i <= 1000. The test cases will be separated by a single blank line.
Output
For each test case : write one integer - the minimal cost of breaking the whole chocolate into single squares.
Example
Input: 1 6 4 2 1 3 1 4 4 1 2 Output: 42
Added by: Thanh-Vy Hua Date: 2004-12-23 Time limit: 3s Source limit:50000B Languages: All Resource: 10th Polish Olympiad in Informatics, stage 1
260. Containers
Problem code: CTAIN
We are given n containers, where 1 <= n <= 4. At the beginning all of them are full of water. The liter capacity of the i-th container is a natural number o i satisfying inequalities 1 <= o i <= 49. Three kinds of moves can be made: 1. Pouring the whole content of one container into another. This move can be made unless there is too little room in the second container. 2. Filling up one container with part of the water from another one. 3. Pouring away the whole content of one container into a drain.
Task
Write a program that for each test case: Reads the number of containers n, the capacity of each container and the requested final amount of water in each container. Verifies, whether there exist a series of moves which leads to the requested final situation, and if there is one, the program computes the minimal number of moves leading to the requested situation, Writes the result. The result should be the minimal number of moves leading to the requested final situation, or one word "NO" if there is no such a sequence of moves.
Input
One integer in the first line, stating the number of test cases, followed by a blank line. There will be not more than 20 tests. For each test case, at the first line, one positive integer n is written, n <= 4, this is the number of containers. There are n positive integers written in the second line. These are the capacities of the containers (the i-th integer o i denotes the capacity if the i-th container,1 <= o i <= 49). In the third line there are written n numbers. These are the requested final volumes of water in the containers (the i-th integer w i denotes the requested final volume of water in the i-th container, 0 <= w i <= o i ). All integers in the second and the third line are separated by single spaces. The test cases will be separated by a single blank line.
Output
For each test case : write one integer - the minimal number of moves which lead to the requested final situation or write only one word "NO" if it is not possible to reach the requested final situation making only allowed moves.
Example
Input: 2 3 3 5 5 0 0 4 2 20 25 10 16 Output: 6 NO
Added by: Thanh-Vy Hua Date: 2004-12-24 Time limit: 5s Source limit:50000B Languages: All Resource: 3rd Polish Olympiad in Informatics, stage 1
Input
First line of the input file contains an integer N (0 < N < 35) that indicates how many lines of input there are. Each line contains three integers a, b, c (0 < a,b,c < 100) which indicate the sides of a valid triangle. (A valid triangle means a real triangle with positive area.)
Output
For each line of input you should produce an integer T, which indicates the number of different styles of small triangles, formed for the triangle at input. Look at the example for details. You can safely assume that for any triangle T will be less than 100.
Example
Input: 2 3 4 5 12 84 90 Output: 3 41
Added by: Thanh-Vy Hua Date: 2004-12-24 Time limit: 1s Source limit:50000B Languages: All Resource: Thanh Vy Hua Le, special thanks to my friends in EPS
262. Connections
Problem code: CONNECT
Byteotian Ministry of Infrastructure has decided to create a computer program that helps to find quickly the lengths of routes between arbitrary towns. It would be small wonder if the inhabitants of Byteotia always wanted to find the shortest route. However, it happens that they want to know the k-th shortest route. Moreover, cycles in routes are possible, i.e. routes that have recurring towns. For example, if there are 4 routes between two towns and their lengths are 2, 4, 4 and 5, then the length of the shortest connection is 2, the second shortest is 4, the third is 4, and the fourth is 5.
Task
Write a program that for each test case: Reads a description of Byteotian road network and queries concerning lengths of journey routes. Computes and writes answers to the queries read.
Input
One integer in the first line, stating the number of test cases, followed by a blank line. There will be not more than 15 tests. For each test case, at the first line, there are two positive integers n and m, separated by a single space, 1 <= n <= 100, 0 <= m <= n 2 -n. They are the number of towns in Byteotia and the number of roads connecting the towns, respectively. The towns are numbered from 1 to n. In each of m successive lines there are three integers separated by single spaces: a, b and l, a <> b, 1 <= l <= 500. Each triple describes one one-way road of length l enabling to move from the town a to b. For each two towns there exist at most one road that enables to move in the given direction. In the following line there is one integer q, 1 <= q <= 10000, denoting the number of queries. In the successive q lines there are queries written, one per line. Each query has a form of three integers separated by single spaces: c, d and k, 1 <= k <= 100. Such a query refers to the length of the k-th shortest route from the town c to the town d. The test cases will be separated by a single blank line.
Output
For each test case, your program should write the answers to the queries read, one answer per line. In the i-th line the answer to the i-th query should be written: one integer equal to the length of the route being sought or -1, when such a route does not exist.
Example
Input: 1 5 1 2 3 1 1 8 1 1 1 1 2 2 2 1 5 2 3 2 3 4 3 3 3 4 5 2 2 1
3 2 1 10 1 1 2 3 2 1 1 2 2
Output: 5 8 10 -1 -1 3 6 -1
Added by: Thanh-Vy Hua Date: 2004-12-25 Time limit: 5s Source limit:50000B Languages: All Resource: 10th Polish Olympiad in Informatics, stage 2
263. Period
Problem code: PERIOD
For each prefix of a given string S with N characters (each character has an ASCII code between 97 and 126, inclusive), we want to know whether the prefix is a periodic string. That is, for each i (2 <= i <= N) we want to know the largest K > 1 (if there is one) such that the prefix of S with length i can be written as A K , that is A concatenated K times, for some string A. Of course, we also want to know the period K.
Input
The first line of the input file will contains only the number T (1 <= T <= 10) of the test cases. Each test case consists of two lines. The first one contains N (2 <= N <= 1 000 000) - the size of the string S. The second line contains the string S.
Output
For each test case, output "Test case #" and the consecutive test case number on a single line; then, for each prefix with length i that has a period K > 1, output the prefix size i and the period K separated by a single space; the prefix sizes must be in increasing order. Print a blank line after each test case.
Example
Input: 2 3 aaa 12 aabaabaabaab Output: Test case #1 2 2 3 3 Test case #2 2 2 6 2 9 3 12 4
Added by: Thanh-Vy Hua Date: 2004-12-26 Time limit: 3s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
Input
The first line of the input file will contains only the number T of the test cases (1 <= T <= 5). Each test will start with the number N of enterprises (5<=N<=20000). Then some number of lines (no more than 200000) will follow with one of the commands: E I- asking the length of the path from the enterprise I to its serving center at the moment; I I J informing that the serving center I is linked to the enterprise J. The test case finishes with a line containing the word O. There are fewer I commands than N commands.
Output
The output should contain as many lines as the number of E commands in all test cases. Each line must contain a single number - the requested sum of lengths of lines connecting the corresponding enterprise with its serving center.
Example
Input: 1 4 E 3 I 3 1 E 3 I 1 2 E 3 I 2 4 E 3 O Output:
0 2 3 5
Added by: Thanh-Vy Hua Date: 2004-12-27 Time limit: 1s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
Input
In the first line there is an integer T (T <= 20) - the number of different maps. For each map in the first line there is an integer N (N <= 1000) - the number of corridors. It is known that no two vertical corridors have a common point and no two horizontal corridors have a common point. The next N lines contain the following information: the line starts with one of the characters V or H - vertical or horizontal corridor. Then one Y-coordinate and two X-coordinates are given for a horizontal corridor or one X-coordinate and two Y-coordinates for a vertical corridor. The last line for each map contains the X and Y coordinates of the entry point (start and end point of travel) and the direction (W - left, E - right, N - up and S - down). You may assume that: the entry point is not located at the cross-point of two corridors, and the explorer can always move forward in the direction given in the input. All coordinates are integers and do not exceed 32767 by absolute value and there are no more than 500 vertical corridors and no more than 500 horizontal corridors.
Output
For each map the program has to print the number of unvisited corridors (in a separate line).
Example
Input: 2 6 H 0 6 0 H 2 1 6 V 1 0 4 V 5 3 0 V 3 0 2 H 1 2 4 6 0 W 1 V 0 -5 5 0 0 S
Output: 1 0
An example of a cave Added by: Thanh-Vy Hua Date: 2004-12-31 Time limit: 3s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
Input
The first line of input contains the integer t<=100, the number of test cases. t test cases follow. Every test case begins with a line containing two integers n k, denoting the total number of plants and the number of water melon fruit to be protected, respectively (1<=n<=1000, 1<=k<=10 6 , k doesnt exceed the total number of fruit in the plantation). Each of the next n lines describes a single plant, the i-th line containing three integers x i y i f i - the X and Y coordinates of the plant, and the number of water melon fruit on it, respectively (1<=x i , y i , f i <=1000).
Output
For each test case output a single integer, denoting the area of the smallest possible rectangular glass house with horizontal and vertical edges, sufficient to cover at least k fruit of the plantation.
Example
Input: 1 6 11 1 1 2 1 2 2 3 1 2 3 2 3 4 2 5
3 3 2 Output: 2
Illustration of sample test data Added by: Adrian Kosowski Date: 2005-01-03 Time limit: 17s Source limit:50000B Languages: All DASM Programming League 2004, problemset 5 (acknowledgement to Thanh Vy Hua Resource: Le)
Input
Input begins with integer t<=100, the number of test cases. t test cases follow. Each test case consists of two lines. The first contains a single integer n (3<=n<=100000), the number of cities around the Circle. The second line is a description of the old waterway - a sequence of exactly n characters A, B or C, without separating spaces, terminated by a new line. These characters correspond to the state of the arcs between cities 1 and 2, 2 and 3,..., n-1 and n, n and 1, respectively, and mean: A - the arc is passable when going anticlockwise, B - the arc is passable in both directions, C - the arc is passable when going clockwise.
Output
For each test case output a line, containing a single integer - the number of circles required for the new waterway.
Example
Input: 2 3 AAA 4 BACB Output: 3 5
A solution to the first test case which requires 3 circles is presented below. Illustration to test case 1 Added by: Adrian Kosowski Date: 2005-01-03 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: DASM Programming League 2004, problemset 5
Input
The first line of the input contains an integer K - determining the number of datasets. Next lines contain the area descriptions. One description is defined in the following way: The first line contains two integers-area length M<=1000 and width N<=1000, separated by a blank space. The next M lines contain N symbols that mark the reserved or free grid units,separated by a blank space. The symbols used are: R - reserved unit F - free unit In the end of each area description there is a separating line.
Output
For each data set in the input print on a separate line, on the standard output, the integer that represents the profit obtained by erecting the largest building in the area encoded by the data set.
Example
Input: 2 5 6 R F F F F F F F R R R F F F F F F F F F
F F F F F
F F F F F
5 R R R R R
5 R R R R R
R R R R R
R R R R R
R R R R R
Output: 45 0
Added by: Thanh-Vy Hua Date: 2005-01-08 Time limit: 3s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
278. Bicycle
Problem code: BICYCLE
Peter likes to go to school by bicycle. But going by bicycle on sidewalks is forbidden and going along roads is dangerous. Thats why Peter travels only along special bicycle lanes. Fortunately Peters home and school are in the immediate proximity of such paths. In the city where Peter lives there are only two bycycle lanes. Both lanes have the form of a circle. At the points where they cross it is possible to move from one path to the other. Peter knows the point where he enters the road and the point at which it is necessary to leave to enter the school. Peter is interested in the question: "What is the minimal distance he needs to cover along the lanes to get to school?"
Input
t - the number of test cases [t<=100], then t test cases follow. The first 2 lines of each test case contain the description of the bicycle lanes: x1 y1 r1 - 3 integers (x1, y1 - coordinates of the center of the 1st circle, r1 - radius of 1st circle) x2 y2 r2 - 3 integers (x2, y2 - coordinates of the center of the 2nd circle, r2 - radius of 2nd circle) -200 <= x1, x2, y1, y2 <= 200 0 <= r1, r2 <= 200 Next 2 lines contain the coordinates of Peters home and school: px1, py1 - 2 real numbers px2, py2 - 2 real numbers You may assume that this points lie on the circle with high accuracy (10 -8 ). Both points may lie on the same circle.
Output
For each test case output the minimum distance that Peter needs to go from home to get to school. The precision of the answer must be under 0.0001. If its impossible to get to school using the bicycle lanes output -1.
Example
Input: 3 0 0 5 4 0 3 3.0 4.0 1.878679656440357 -2.121320343559643 0 0 4 0 4.0 4.0 5 3 3.0 -3.0
0 0 4
Illustration of sample test data Added by: Roman Sol Date: 2005-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: 5th Russian National Command Olympiad for schoolboys in programming
Input
t - the number of test cases, then t test cases follow. (t <= 50) Test case description: n - integer such that 0 < n <= 1000
Output
For each test case output the required number (without leading zeros).
Example
Input: 2 1 10 Output: 1 190
Added by: Roman Sol Date: 2005-01-13 Time limit: 7s Source limit:4096B Languages: All Resource: XII team championship of St.-Petersburg in programming
280. Lifts
Problem code: LIFTS
Serj likes old games very much. Recently he has found one arcade game in his computer. When controlling the hero it is necessary to move on a map and collect various items. At a certain stage of the game Serj has faced an unexpected problem. To continue his adventures the hero should get past over a chasm. For this purpose it is possible to use consistently located lifts which look like horizontal platforms. Each lift moves up-down vertically between some levels. The hero can pass between the next adjacent platform, however it can be done only at the moment when they are at the same level. Similarly, passing from the edge of a chasm onto the lift and vice versa is only possible at the moment when the lift appears on the level of the edge. Each lift has a width equal to 4 meters. At the beginning the hero is in at a distance of two meters from the edge of a chasm. He should finish travel two meters after the opposite edge of the chasm. The hero moves at a speed of 2 meters a second. Thus, if the hero is in the initial position or in the center of the lift and wishes to pass to the next lift (or to descend from last lift onto the opposite edge of a chasm), he should begin movement exactly one second before they meet at one level. In two seconds the hero appears in the center of the next lift (or in the final position on the other side). The edges of the chasm are at the same level. For each lift the range of heights between which it moves, its initial position and the direction of movement at the initial moment are given. All lifts move with a speed of one meter a second. Find out whether the hero can get over to the opposite edge of the chasm, and if so what the minimal time required for this purpose is. A sample illustration
Input
t - the number of test cases, then t test cases follows. [empty line] A test case begins with n - the number of lifts, a positive integer (n <= 100), then n lines follow. The i-th line (0 < i <= n) contains four integers li ui si di, where: li - lowest position of the lift, ui - highest position of the lift, si - initial position of the lift, di - initial direction of movement (1 means up, -1 means down); (-100 <= li <= si <= ui <= 100, l1 < ui).
Output
For each test case output the minmal time in seconds, required to get to the opposite edge of the chasm. If it is impossible output -1.
Example
Input: 1 4
-1 2 1 -1 0 3 0 1 -4 0 0 -1 -2 1 0 -1 Output: 29
Added by: Roman Sol Date: 2005-01-17 Time limit: 3s Source limit:10000B Languages: All Resource: 5th Russian National Command Olympiad for schoolboys in programming
Input
t - the number of test cases, then t test cases follows. Each test case is of the following form: Two space-separated integers: R and C, then R lines follows Each line contains a string of C characters, with * representing a muddy patch, and . representing a grassy patch. No spaces are present.
Output
For each test case output a single integer representing the number of boards FJ needs.
Example
Input: 1 4 4 *.*. .*** ***. ..*. Output: 4 Output details: Boards 1, 2, 3 and 4 are placed as follows: 1.2. .333 444. ..2. Board 2 overlaps boards 3 and 4.
Added by: Roman Sol Date: 2005-01-19 Time limit: 5s Source limit:30000B Languages: All Resource: USACO January 2005 Gold Division
283. Naptime
Problem code: NAPTIME
Goneril is a very sleep-deprived cow. Her day is partitioned into N (3 <= N <= 3,830) equal time periods but she can spend only B (2 <= B < N) not necessarily contiguous periods in bed. Due to her bovine hormone levels, each period has its own utility U_i (0 <= U_i <= 200,000), which is the amount of rest derived from sleeping during that period. These utility values are fixed and are independent of what Goneril chooses to do, including when she decides to be in bed. With the help of her alarm clock, she can choose exactly which periods to spend in bed and which periods to spend doing more critical items such as writing papers or watching baseball. However, she can only get in or out of bed on the boundaries of a period. She wants to choose her sleeping periods to maximize the sum of the utilities over the periods during which she is in bed. Unfortunately, every time she climbs in bed, she has to spend the first period falling asleep and gets no sleep utility from that period. The periods wrap around in a circle; if Goneril spends both periods N and 1 in bed, then she does get sleep utility out of period 1. What is the maximum total sleep utility Goneril can achieve?
Input
t - the number of test cases, then t test cases follow. Each test case takes the following form: Two space-separated integers: N and B, then N lines follows Each line contains a single integer, U_i, between 0 and 200,000 inclusive
Output
For each test case output a single integer, the maximum total sleep utility Goneril can achieve.
Example
Input: 1 5 3 2 0 3 1 4 Output: 6 Input/Output details: The day is divided into 5 periods, with utilities 2, 0, 3, 1, 4 in that order. Goneril must pick 3 periods.
Goneril can get total utility 6 by being in bed during periods 4, 5, and 1, with utilities 0 [getting to sleep], 4, and 2 respectively.
Added by: Roman Sol Date: 2005-01-19 Time limit: 5s Source limit:50000B Languages: All Resource: USACO January 2005 Gold Division
Input
The first line contains a positive integer t<=1000 indicating the number of test cases. Each test case is an instance of the problem defined above. The first line of each test case is a pair of positive integers C1 and C2 (the number of cities wanting to sell their goods C1<=100 and the number of cities wanting to buy goods C2<=100). The lines that follow contain a sequence of (c1,c2,g) trios ending with three zeros. (c1,c2,g) means that the city c1 can offer the city c2 the amount of g<=100 goods.
Output
For each test case print the maximal amount of goods exchanged.
Example
Input: 3 3 2 1 1 10 2 1 19 2 2 11 3 2 1 0 0 0 4 4 1 1 6 1 2 6 2 1 8 2 3 9 2 4 8 3 2 8 4 3 7 0 0 0 3 2 1 1 10 2 1 21 2 2 11 3 2 1 0 0 0
Output: 21 29 22
Added by: Tomasz Niedzwiecki Date: 2005-01-22 Time limit: 8s Source limit:50000B Languages: All
Input
t [the number of test cases, t<=500] n m k [n <=500 the number of houses (the index of the admins house is 1)] [m the number of streets, k the number of houses to connect] h 1 h 2 ... h k [a list of k houses wanting to be conected to the network, 2<=h i <=n] [The next m lines contain pairs of house numbers describing street ends] e 11 e 12 e 21 e 22 ... e m1 e m2 [next cases]
Output
For each test case print the minimal number of cable colors necessary to make all the required connections.
Example
Input: 2 5 5 4 2 3 4 5 1 2 1 3 2 3 2 4 3 5 8 8 3 4 5 7 1 2 1 8
8 1 3 3 2 2
7 3 6 2 4 5
Output: 2 1
Illustration to the first example Warning: large Input/Output data, be careful with certain languages Added by: Tomasz Niedzwiecki Date: 2005-01-23 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 6
Input
t - the number of test cases, then t test cases follows. [t <= 500] Each line contains one integer: N [2 <= N <= 2^63-1]
Output
For each test case output string "YES" if given number is prime and "NO" otherwise.
Example
Input: 5 2 3 4 5 6 Output: YES YES NO YES NO
C C99 strict C++ PAS gpc PAS fpc PERL PYTH RUBY SCM guile SCM qobi LISP sbcl LISP clisp HASK CAML PRLG WSPC BF ICK Resource: ZCon 2005
Input
t - the number of test cases, then t test cases follow. [t <= 100] Each line contains one polynomial F(x) given as string s in the form described above. The length of string s is not more than 300 characters.
Output
For each test case output all solutions (including repeated) of the given equation in non-decreasing order. All solutions lie within the interval [-100.0; 100.0]. Each solution must be given with an error of not more than 0.01. Its guaranteed that all solutions are real, not complex.
Example
Input: 2 x^4-6*x^3+11*x^2-6*x -x^2+2*x-1 Output: 0.00 1.00 2.00 3.00 1.00 1.00
Added by: Roman Sol Date: 2005-01-27 Time limit: 13s Source limit:50000B Languages: All Resource: ZCon 2005
Input
The input starts with a line containing a single integer t <= 20, the number of test cases. t test cases follow. The next lines consist of large positive integers of up to 150 decimal digits. Each number is on its own separate line of the input file. The input file may contain empty lines. Numbers can be preceded or followed by whitespaces but no line exceeds 255 characters.
Output
For each number in the input file your program should output a line consisting of two values separated by single space. The second value is the cube root of the given number, truncated (not rounded!) after the 10th decimal place. First value is a checksum of all printed digits of the cube root, calculated as the sum of the printed digits modulo 10.
Example
Input: 5 1 8 1000 2 33076161 Output: 1 1.0000000000 2 2.0000000000 1 10.0000000000 0 1.2599210498 6 321.0000000000
Added by: Thanh-Vy Hua Date: 2005-01-29 Time limit: 5s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
292. Alibaba
Problem code: ALIBB
Alibaba the famous character of our childhood stories would like to be immortal in order to keep bringing happiness to children. In order to reach this status he needs to prove that he is still able to do some unusual things. There are n treasures, (n <= 10000) each in a different place located along a straight road. Each treasure has a time limit, after that it vanishes. Alibaba must take all the n treasures, and he must do it quickly. So he needs to figure out the order in which he should take the treasures before their deadlines starting from the most favorable position. Alibaba has the list of places and deadlines of the treasures. A place i is located at distance d i from the leftmost end of the road. The time it takes to take a treasure is instantaneous. Alibaba must find the smallest time by which he can take all the treasures.
Input
The first line of the input contains an integer K <= 10 - determining the number of datasets Each data set in the input stands for a particular set of treasures. For each set of treasures the input contains the number of treasures, and the list of pairs place - deadline in increasing order of the locations. White spaces can occur freely between the numbers in the input.The input data are correct.
Output
For each set of data the program prints the result to the standard output on a separate line. The solution is represented by the smallest time by which Alibaba can take all the treasures before they vanish. If this is not possible then the output is "No solution".
Example
Input: 2 5 1 3 3 1 5 8 8 19 10 15 5 1 5 2 1 3 4 4 2 5 3 Output: 11 No solution
Added by: Thanh-Vy Hua Date: 2005-01-29 Time limit: 5s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
Input
The first line of input contains t - the number of test cases. t test cases follow. For each test case, the first line contains a single integer n - the number of sections the city wall consists of (4 <= n <= 2000). The second line contains exactly n integers a 1 ,...,a n describing successive sections of wall (1<=|a i |<=100000). Any two successive sections of wall are perpendicular to each other. The length of the i-th section is the absolute value of a i , while its direction is described by the sign of a i (positive means northbound or eastbound, negative - southbound or westbound when traversing the walls clockwise).
Output
For each test case output a single integer k - the number of elements of the patrolled set of streets selected by the Captain.
Example
Input: 1 14 +2 +2 +2 +2 -4 +2 +1 +2 -3 +2 -2 -8 +4 -2 Output: 4
Illustration of the sample test data. Blue lines indicate the set of patrolled streets Added by: Adrian Kosowski Date: 2005-02-05 Time limit: 17s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 6
Input
Input starts with a single integer t, the number of test cases (t<=100). t test cases follow. Each test case begins with a line containing two integers n m (4<=n<=m<=20000, n is the number of scientists and is divisible by 4). Exactly m lines follow containing a pair of integers a i b i each which denote that scientists a i and b i are acquaintances (1<=a i , b i <=n, each scientist has either 2 or 3 acquaintances). Acquaintanceship is mutual.
Output
For each test case, output a line containing a single integer k - the number of workgroups you have formed. In each of the next k lines output exactly 3 integers, representing the numbers of scientists belonging to respective workgroups. Your solution will be regarded as incorrect if for some test case more than 25% of all scientists are left without a valid assignment to a workgroup.
Example
Input: 1 8 10 1 2 1 3 2 5 4 6 3 7 2 3 5 6 6 7 7 8 8 4 Output: 2 1 3 7 4 5 6
Added by: Adrian Kosowski Date: 2005-02-14 Time limit: 5s Source limit:50000B Languages: All Resource: DASM Programming League 2004, problemset 7
Input
t - the number of test cases, then t test cases follows. * Line 1: Two space-separated integers: N and C * Lines 2..N+1: Line i+1 contains an integer stall location, xi
Output
For each test case output one integer: the largest minimum distance.
Example
Input:
1 5 3 1 2 8 4 9
Output:
3
Output details: FJ can put his 3 cows in the stalls at positions 1, 4 and 8, resulting in a minimum distance of 3.
Added by: Roman Sol Date: 2005-02-16 Time limit: 2s Source limit:10000B Languages: All Resource: USACO February 2005 Gold Division
Input
The input starts with a line containing a single integer t <= 20, the number of test cases. t test cases follow. Write a program that computes the safety factor for the cable networks encoded by the data sets. Each data set starts with two integers: 0 <= n <=50,the number of relays in the net, and m, the number of cables in the net. Follow m data pairs (u,v), u < v, where u and v are relay identifiers (integers in the range 0..n-1). The pair (u,v) designates the cable that interconnects the relays u and v. The pairs may occur in any order. Except the (u,v) pairs, which do not contain white spaces, white spaces can occur freely in input. Input data terminate with an end of file and are correct.
Output
For each data set, prints from the beginning of a line, the safety factor of the encoded net.
Example
Input: 5 0 0 1 0 3 3 (0,1) (0,2) (1,2) 2 0 5 7 (0,1) (0,2) (1,3) (1,2) (1,4) (2,3) (3,4) Output: 0
1 3 0 2
Added by: Thanh-Vy Hua Date: 2005-02-27 Time limit: 5s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
301. Booklets
Problem code: BOOK
Bob has a difficult job. He must distribute advertising booklets for extra school activities in different schools. The booklets have different number of pages. Bob has a list with the number of pages of each booklet and the number of schools that he must visit. He has to distribute the booklets such that each school gets a number of booklets equal to either the lower integer part (LIP),or the upper integer part (UIP) of the number of booklets divided by the number of schools. Poor Bob must obey other rules too. He must distribute all the UIP number of booklets first and then the LIP number of booklets. Any booklet A that is distributed to a school S_i must have fewer or at most an equal number of pages that any other booklet B that is distributed to a school S_j, if S_i gets the booklets before S_j (i.e if i < j then pages(A) <= pages(B)). When Bob distributes the booklets to a school he must distribute them in the same relative order in which they are on his list. Moreover, he must distribute them very fast. When he comes back to the advertising company his boss verifies if he accomplished well his task, by asking him the number of pages of the first booklet distributed to a specific school, following the order in which Bob visited the schools (starting with 0). Difficult job, isnt it? Can you help him?
Input
The input starts with a line containing a single integer t <= 20, the number of test cases. t test cases follow. Each data set in the input stands for a particular set of bookets. For each set of booklets the input contains the number of schools, the school specified by Bobs boss, the number of booklets (less than 3000), the number of pages of each booklet (fits in integer). White spaces can occur freely between the numbers in the input. The input data are correct.
Output
For each set of data the program prints the result to the standard output on a separate line. The solution is represented by the number of pages of the first booklet distributed to the specified school.
Example
Input: 1 3 2 7 3 5 9 1 11 14 2 Output: 11
Added by: Thanh-Vy Hua Date: 2005-02-27 Time limit: 5s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
In the above diagram, the first term is 1/1, the second term is 1/2, the third term is 2/1, the fourth term is 3/1, the fifth term is 2/2, and so on.
Input
The input starts with a line containing a single integer t <= 20, the number of test cases. t test cases follow. Then, it contains a single number per line.
Output
You are to write a program that will read a list of numbers in the range from 1 to 10^7 and will print for each number the corresponding term in Cantors enumeration as given below.
Example
Input: 3 3 14 7 Output: TERM 3 IS 2/1 TERM 14 IS 2/4 TERM 7 IS 1/4
Added by: Thanh-Vy Hua Date: 2005-02-27 Time limit: 5s Source limit:50000B Languages: All Resource: ACM South Eastern European Region 2004
Input
t - the number of test cases, then t test cases follow. N - size of the big cube [1 <= N <= 10] In the next N lines views of the cube from 6 sides are described (in the following order: from the front, left, back, right, from above, from below). Each such view is represented by a table of size NxN in which different letters denote different colors, and the symbol "." (point) means that it is possible to see all the way through the cube at this point. Consecutive views are separated by exactly one space. The bottom border of the top view corresponds to the top border of the front view, and the top border of the bottom view - to the bottom border of the front view. For the front, back, left and right views the top and bottom sides of a view correspond to the top and bottom of the cube. The input file is correct, i.e. each test case describes a possible configuration.
Output
For each test case output one integer: the required maximum number of blocks remaining in the unstable cube.
Example
Input: 2 3 .R. YYR .Y. GRB YGR BYG .R. YRR .Y. 2 ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ Output: 11 8
Added by: Roman Sol Date: 2005-03-01 Time limit: 1s Source limit:20000B Languages: All Resource: The Moscow Olympiad on computer science 2004/05. Correspondence round.
Input
t - the number of test cases, then t test cases follow. In the first line of each test case three numbers are written: N, M (the sizes of the room) and K (number of accessible types of tiles). [1<= N, M <= 8], [1 <= K <= 10]. Next there is a description of the desired painting of the floor. The description is given in the form of N lines of M numbers each, where 0 denotes the color white, 1 - the color black, 2 - a square which has already been covered by a tile. In the last K lines the descriptions of available types of tiles are given in the following format: [Form] [cost] [painting] where: [Form] is a number from 1 to 4, describing the form of a tile (see figure above) [Cost] is an integer not larger than 10000, describing the cost of one tile of the type. [Painting] is a sequence of between one and three numbers 0 or 1. Its length is the same as the number of squares of which the tile consists, and the respective numbers describe colors of square tiles in the order in which the squares are numbered in the figure.
Output
For each test case output one integer: the minimal cost of laying the remaining part of the parquet, or -1 if the task cannot be performed.
Example
Input:
1 4 2 2 2 2 2 1 4
3 3 2 2 0 0 1 2 2 2 10 0 0 5 1 6 0 0 1
Output:
15
Added by: Roman Sol Date: 2005-03-05 Time limit: 17s Source limit:20000B Languages: All Resource: The Moscow Olympiad on computer science 2004/05. Correspondence round.
Input
t - number of test cases [t <= 100], than t lines follow, each line contains one integer - N, equal to the required number of different rectangular triangles. [1 <= N <= 2000]
Output
For each test case your program should output a number R in a separate line (R fits in a 64-bit integer), equal to the minimal integer value of a hypotenuse for which exactly N different rectangular triangles can be constructed; then in separate lines follow exactly N numbers equal to the shorter cathetus (side adjacent to the right angle) of each of the rectangular triangles, in ascending order.
Example
Input: 2 1 2 Output: 5 3 25 7 15
Added by: Roman Sol Date: 2005-03-01 Time limit: 9s Source limit:8192B Languages: All Resource: ZCon 2005
Input
Input starts with a single integer t, the number of test cases (t<=100). t test cases follow. Each test case consists of exactly one integer n (1<=n<=100) - the number of windmills Johnny intends to construct.
Output
For each test case output a line with exactly n numbers, denoting the heights of successive windmills given in the order in which they are arranged along the road.
Example
Input: 3 1 2 3 Output: 1 1 2 2 4 1
Added by: Adrian Kosowski Date: 2005-04-13 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: DASM Programming League 2004, problemset 9
Input
Input starts with a single integer t, the number of test cases (t<=2000). t test cases follow. Each test case consists of one line containing two integers l r seperated by a single space, denoting the range of numbers ( 1<= l < r <=5000, r-l < 200 ).
Output
For the i-th test case output a line with the text case i. In the next line print n - number of pairs from range (l,r). Then exactly n lines follow with two numbers seperated by single space. The first number is not greater than the second. Pairs are printed in increasing sum order.
Example
Input 2 1 10 2 8 Output case 1 0 case 2 0
Added by: Bogusaw K. Osuch Date: 2005-04-14 Time limit: 15s Source limit:50000B Languages: All except: C99 strict Resource: :P
328. Bishops
Problem code: BISHOPS
Yesterday was Sams birthday. The most interesting gift was definitely the chessboard. Sam quickly learned the rules of chess and defeated his father, all his friends, his little sister, and now no one wants to play with him any more. So he decided to play with another birthday gift - a Book of Math Problems for Young Mathematicians. He opened the book somewhere in the middle and read the following problem: "How many knights can be placed on a chessboard without threatening each other?" After a while he realized that this was trivial and moved on to the next problem: "How many bishops can be placed on a chessboard without threatening each other?". Sam is in trouble here. He is not able to solve this problem and needs your help. Sams chessboard has size N x N. A bishop can move to any distance in any of the four diagonal directions. A bishop threatens another bishop if it can move to the other bishops position. Your task is to compute the maximum number of bishops that can be placed on a chessboard in such a way that no two bishops threaten each other.
Input
The input file consists of several lines. The line number i contains a single number N representing the size of the i-th chessboard. [N <= 10^100]
Output
The output file should contain the same number of lines as the input file. The i-th line should contain one number - the maximum number of bishops that can be placed on i-th chessboard without threatening each other.
Example
Input: 2 3 Output: 2 4
Added by: Roman Sol Date: 2005-04-17 Time limit: 1s Source limit:10000B Languages: All Resource: IPSC 2004
329. Calls
Problem code: CALLS
A young archeologist Senoj Anaidni recently made a very important discovery which will make him famous (or at least he thinks so). He found several scraps of paper resembling advertisement flyers of an ancient phone company. His research showed that modern phone companies follow a few basic rules to compose their flyers (and there is no reason to assume that old companies were an exception). Each company operates certain number of phone lines. Each phone line connects a pair of cities, and it can be used in both directions. The cost of using each line is a fixed positive number. A call from city A to city B may be routed through one or more other cities, in which case the cost of the call is the sum of the costs of all lines used. (In fact, sometimes it is cheaper to route the call through several other cities than to use the direct connection, even if there exists one.) To make the information comprehensible to the customer, the phone company lists the cost of the cheapest possible call between every pair of cities serviced by the company. To impress the customer even more, the company also lists the number of lines it operates. Indeed, each of Senojs ancient flyers start like this: "Using our 47 telephone lines, we serve 10 most important cities of the world! A call from Sparta to Troja costs 12 dennario, Sparta to Athens is 15 dennario, ...". The list of all pairs of cities and the respective costs of the cheapest possible call between them follows. This supports Senojs hypothesis about the origin of the papers, but he is not sure whether they are really genuine. Other archeologists often play dirty jokes on him by making ridiculous forgeries in a hope, that he will make a fool of himself. Luckily, they are often not very meticulous, so we can safely assume, that a flyer is a forgery if and only if it could not have been published by any phone company.
Input
The first line of the input file gives the number t of flyers found by Senoj. [t <= 50] Each flyer is described in a separate block starting with a line containing two integers - N and K - where N is the number of cities and K is the number of phone lines. [N <= 300 K <= 1200] The block continues with N-1 lines giving the costs of the cheapest calls between all pairs of cities. In particular, the i-th line contains (N-i) numbers, where j-th number represents the cost of a call between the cities i and (i+j).
Output
For every input block, output a line containing either "YES" or "NO". "YES" should be printed, if it is possible to assign costs to the phone lines operated by the company so that the cheapest calls are as advertised in the flyer. "NO" should be printed if this is not possible.
Example
Input: 2 3 3 1 2 2 3 2
1 2 2
Output: YES NO
Added by: Roman Sol Date: 2005-04-17 Time limit: 3s Source limit:10000B Languages: All Resource: IPSC 2004
Input
Input file consists of several test cases separated by a blank line. Each test case starts with two integers N and M. Next N lines contain the coordinates of the vertices of the NP. Each of the following M lines describes one plot. For each plot, the coordinates of two opposite corners of the rectangle are given. The values N=0, M=0 end the input and should not be processed. [N, M <= 3000]
Output
For each test case output either YES or NO depending on whether it is possible to set up the NP using P or not.
Example
Input: 4 2 0 0 0 2 2 2 2 0 1 0 0 2 1 0 2 2 3 0 2 2 0 1 0 2 0 0 1 1
0 0 Output: YES NO
Added by: Roman Sol Date: 2005-04-17 Time limit: 5s Source limit:30000B Languages: All Resource: IPSC 2004
Input
t - number of tests [t <= 150], than t test cases follows. The first line of each test case contains the coordinates (x0, y0) of the dot center (-1 <= x0, y0 <= 1). The second line contains eps <= 0.0001 - the radius of the dot (the dot is essentially a small circle).
Output
For each test case output any value of t in the segment [0, 10^12], which corresponds to the line crossing the dot, or "FAIL", if the line doesnt cross the dot.
Example
Sample input: 1 0.744 0.554 0.01 Sample output: 5.3
Added by: Roman Sol Date: 2005-04-25 Time limit: 3s Source limit:20000B Languages: All Resource: IX Ural Championship (Round II)
Input
The first line of the input file contains an integer representing the number of test cases to follow. Each test case contains a sequence of twelve numbers consisting of 0,1,2,..,11, separated by single space. You can assume that the given sequence can always be sorted in increasing order by using the exchange operations
Output
For each test case, output the minimum number of exchange operations required to sort the given sequence in increasing order.
Example
Input: 2 1 10 2 3 0 5 7 4 8 6 9 11 6 4 1 0 3 5 9 7 2 10 11 8 Output: 8 9
Added by: Walrus Date: 2005-04-28 Time limit: 19s Source limit:50000B Languages: All Resource: Based on a problem from acm.uva.es
Input
On the first row there is the number C of test cases (equal to about 50). Each test contains four lines: k - number of elements of (c) and (b) (1 <= k <= 10) b 1 ,...,b k - k natural numbers where 0 <= b j <= 10 9 separated by spaces c 1 ,...,c k - k natural numbers where 0 <= c j <= 10 9 separated by spaces n - natural number (1 <= n <= 10 9 )
Output
Exactly C lines, one for each test case: a n modulo 10 9
Example
Input: 3 3 5 8 2 32 54 6 2 3 1 2 3 4 5 6 6 3 24 354 6 56 57 465 98765432 Output: 8 714 257599514
Added by: Pawe Dobrzycki Date: 2005-04-29 Time limit: 2s Source limit:8196B Languages: All Resource: IV Podlasian Contest in Team Programming
344. Poker
Problem code: POKER
In poker, you have 5 cards. There are 10 kinds of poker hands (from highest to lowest): royal flush - ace, king, queen, jack and ten, all in the same suit straight flush - five cards of the same suit in sequence, such as 10,9,8,7,6 of clubs; ace can be counted both as the highest card or as the lowest card - A,2,3,4,5 of hearts is a straight flush. But 4,3,2,A,K of hearts is not a straight flush - its just a flush. four of a kind - four cards of the same rank, such as four kings. full house - three cards of one rank plus two cards of another rank flush - five cards of the same suit (but not a straight flush) straight - five cards in order - just like the straight flush, but mixed suits three of a kind - three cards of one rank and two other cards two pairs - two cards of one rank, two cards of another rank, and one more card pair - two cards of the same rank high card - none of the above Write a program that will help you play poker by telling you what kind of hand you have.
Input
The first line of input contains the number of test cases (no more than 20). Each test case consists of one line - five space separated cards. Each card is represented by a two-letter (or digit) word. The first character is the rank (A,K,Q,J,T,9,8,7,6,5,4,3 or 2), the second character is the suit (S,H,D,C standing for spades, hearts, diamonds and clubs). The cards can be in any order (but they will not repeat).
Output
For each test case output one line describing the type of a hand, exactly like in the list above.
Example
Input: 3 AH KH QH TH JH KH 5S 3C 5C 7D QH QD 2S QC 2C Output: royal flush pair full house
Added by: Tomek Czajka Date: 2005-05-03 Time limit: 7s Source limit:50000B Languages: All Resource: Purdue Programming Contest Training
345. Mixtures
Problem code: MIXTURES
Harry Potter has n mixtures in front of him, arranged in a row. Each mixture has one of 100 different colors (colors have numbers from 0 to 99). He wants to mix all these mixtures together. At each step, he is going to take two mixtures that stand next to each other and mix them together, and put the resulting mixture in their place. When mixing two mixtures of colors a and b, the resulting mixture will have the color (a+b) mod 100. Also, there will be some smoke in the process. The amount of smoke generated when mixing two mixtures of colors a and b is a*b. Find out what is the minimum amount of smoke that Harry can get when mixing all the mixtures together.
Input
There will be a number of test cases in the input. The first line of each test case will contain n, the number of mixtures, 1 <= n <= 100. The second line will contain n integers between 0 and 99 - the initial colors of the mixtures.
Output
For each test case, output the minimum amount of smoke.
Example
Input: 2 18 19 3 40 60 20 Output: 342 2400
In the second test case, there are two possibilities: first mix 40 and 60 (smoke: 2400), getting 0, then mix 0 and 20 (smoke: 0); total amount of smoke is 2400 first mix 60 and 20 (smoke: 1200), getting 80, then mix 40 and 80 (smoke: 3200); total amount of smoke is 4400
The first scenario is a much better way to proceed. Added by: Tomek Czajka Date: 2005-05-03 Time limit: 9s Source limit:50000B Languages: All Resource: Purdue Programming Contest Training
Input
The input will contain several test cases (not more than 10). Each testcase is a single line with a number n, 0 <= n <= 1 000 000 000. It is the number written on your coin.
Output
For each test case output a single line, containing the maximum amount of American dollars you can make.
Example
Input: 12 2 Output: 13 2
You can change 12 into 6, 4 and 3, and then change these into $6+$4+$3 = $13. If you try changing the coin 2 into 3 smaller coins, you will get 1, 0 and 0, and later you can get no more than $1 out of them. It is better just to change the 2 coin directly into $2. Added by: Tomek Czajka Date: 2005-05-03 Time limit: 9s Source limit:50000B Languages: All Resource: Purdue Programming Contest Training
348. Expedition
Problem code: EXPEDI
A group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being rather poor drivers, the cows unfortunately managed to run over a rock and puncture the trucks fuel tank. The truck now leaks one unit of fuel every unit of distance it travels. To repair the truck, the cows need to drive to the nearest town (no more than 1,000,000 units distant) down a long, winding road. On this road, between the town and the current location of the truck, there are N (1 <= N <= 10,000) fuel stops where the cows can stop to acquire additional fuel (1..100 units at each stop). The jungle is a dangerous place for humans and is especially dangerous for cows. Therefore, the cows want to make the minimum possible number of stops for fuel on the way to the town. Fortunately, the capacity of the fuel tank on their truck is so large that there is effectively no limit to the amount of fuel it can hold. The truck is currently L units away from the town and has P units of fuel (1 <= P <= 1,000,000). Determine the minimum number of stops needed to reach the town, or if the cows cannot reach the town at all.
Input
The first line of the input contains an integer t representing the number of test cases. Then t test cases follow. Each test case has the follwing form: Line 1: A single integer, N Lines 2..N+1: Each line contains two space-separated integers describing a fuel stop: The first integer is the distance from the town to the stop; the second is the amount of fuel available at that stop. Line N+2: Two space-separated integers, L and P
Output
For each test case, output a single integer giving the minimum number of fuel stops necessary to reach the town. If it is not possible to reach the town, output -1.
Example
Input: 1 4 4 4 5 2 11 5 15 10 25 10
Output: 2 Input details The truck is 25 units away from the town; the truck has 10 units of fuel. Along the road, there are 4 fuel stops at distances 4, 5, 11, and 15 from the town (so these are initially at distances 21, 20, 14, and 10 from the truck). These fuel stops can supply up to 4, 2, 5, and 10 units of fuel, respectively. Output details: Drive 10 units, stop to acquire 10 more units of fuel, drive 4 more units, stop to acquire 5 more units of fuel, then drive to the town.
Added by: Walrus Date: 2005-05-03 Time limit: 15s Source limit:50000B Languages: All Resource: US Open International 2005 Gold Division
Input
The first line of the input contains an integer t representing the number of test cases. Then t test cases follow. Each test case has the following form: Line 1: Two space-separated integers: N and M Lines 2..N+1: Line i+1 contains one integer: the longitude of the i-th farm. Line 2 contains the location of the farm of his best friend. Lines N+2..N+M+1: Line i+N+1 contains two integers giving the indices of two farms that are connected by a flight.
Output
For each test case, output a single integer specifying the minimum number of flights FJ needs to visit to make a trip around the world. Every time FJ moves from one farm to another counts as one flight. If it is impossible to make such a trip, output the integer -1.
Example
Input: 1 3 3 0 120 240 1 2 2 3 1 3 Output: 3 Input details Farmer John has three friends at longitudes 0, 120, and 240. There are three flights: 0<->120, 120<->240, and 0<->240. The journey must start and finish at longitude 0. Output details FJ must visit all 3 friends to make a full trip around the world.
Added by: Walrus Date: 2005-05-03 Time limit: 9s Source limit:50000B Languages: All Resource: US Open International 2005 Gold Division
350. Landscaping
Problem code: LANDSCAP
Farmer John is making the difficult transition from raising mountain goats to raising cows. His farm, while ideal for mountain goats, is far too mountainous for cattle and thus needs to be flattened out a bit. Since flattening is an expensive operation, he wants to remove the smallest amount of earth possible. The farm is long and narrow and is described in a sort of two-dimensional profile by a single array of N (1 <= N <= 1000) integer elevations (range 1..1,000,000) like this: 1 2 3 3 3 2 1 3 2 2 1 2, which represents the farms elevations in profile, depicted below with asterisks indicating the heights:
* * * * * * * * * * * * * * * * * * * * * * * * * 1 2 3 3 3 2 1 3 2 2 1 2
A contiguous range of one or more equal elevations in this array is a "peak" if both the left and right hand sides of the range are either the boundary of the array or an element that is lower in elevation than the peak. The example above has three peaks. Determine the minimum volume of earth (each unit elevation reduction counts as one unit of volume) that must be removed so that the resulting landscape has no more than K (1 <= K <= 25) peaks. Note well that elevations can be reduced but can never be increased. If the example above is to be reduced to 1 peak, the optimal solution is to remove 2 + 1 + 1 + 1 = 5 units of earth to obtain this set of elevations:
* * * * * * * * - - * * * * * * * * * * * * 1 2 3 3 3 2 1 1 1 1 1 1
Input
The first line of the input contains integer t representing the number of test cases. Then t test cases follow. Each test case has the following form: Line 1: Two space-separated integers: N and K Lines 2..N+1: Each line contains a single integer elevation. Line i+1 contains the elevation for index i.
Output
For each test case, output the minimum volume of earth that must be removed to reduce the number of peaks to K.
Example
Input: 1 12 1 1 2 3 3 3 2 1 3 2 2 1 2 Output: 5 Input details This is the example used above.
Added by: Walrus Date: 2005-05-03 Time limit: 9s Source limit:50000B Languages: All Resource: US Open International 2005 Gold Division
If P currently has 3 points and no other player has more than 2 points, P wins the current game. If P currently has 4 points, he wins the game. If any other player currently has 4 points, that player loses one point. P gains a point. RULES FOR WINNING A SET The set is won by the first player that at the same time: won at least 6 games in this set won at least 2 games more than any other player RULES FOR WINNING A MATCH The winner is the first player to win at least three sets. A set in which no other player won a game counts as two won sets. Problem specification An observer from the Intergalactic Tennis Federation was watching a tournament in Alpha Centauri Tennis. Being unable to understand Alpha Centaurian language, he only managed to write down the winner of each ball. Now, for each match, knowing the sequence in which the players were winning the balls, he would like to somehow determine its winner.
Input
t - the number of test cases [t <= 150] than t test cases follows, each corresponding to one match. Each line contains the number of players N [N <= 10] and a string S consisting of uppercase letters [2 <= S <= 50000]. The players are represented by the first N letters of the English alphabet. If the i-th letter of S is X, it means the player X won the i-th ball from the beggining of the match. You may assume that the match transcripts are correct and complete. The order in which the players serve is the same as the order of their letters in the English alphabet.
Output
For each line, output a single character, being the letter of the player who won the corresponding match.
Example
Input: 1 3 BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB Output: B
(B has won two sets, each of them by winning 6 games, while A and C won none. Thus each of these sets counts as two and B has won the match.) Added by: Roman Sol Date: 2005-05-13 Time limit: 1s Source limit:10000B Languages: All Resource: IPSC 2005
Task specification
In the beginning the display shows the number 1 on its display. Each second the number shown is increased by 1. We see the display upside-down and thus not everything we see will make sense. Your task is to compute the K-th valid number we will see on the display. The digits the display uses are shown on the images below. An upside-down 1 still count as 1. The number we see may have leading zeroes - e.g. turning the number 600 upside down leads to a valid number. [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE]
Input
t - the number of test cases [t <= 2200], than t test cses follows. Each test case consist of one integer Ki [0 < Ki <= 10^200].
Output
For each Ki from the input file, output the Ki-th number shown on the display (including the leading zeroes, if there are some).
Example
Input: 8 1 2 3
4 5 6 8 98 Output: 1 2 5 9 8 6 11 002
Added by: Roman Sol Date: 2005-05-15 Time limit: 3s Source limit:30000B Languages: All Resource: IPSC 2005
365. Phidias
Problem code: PHIDIAS
Famous ancient Greek sculptor Phidias is making preparations to build another marvelous monument. For this purpose he needs rectangular marble plates of sizes W1 x H1, W2 x H2, ..., WN x HN. Recently, Phidias has received a large rectangular marble slab. He wants to cut the slab to obtain plates of the desired sizes. Any piece of marble (the slab or the plates cut from it) can be cut either horizontally or vertically into two rectangular plates with integral widths andheights, cutting completely through that piece. This is the only way to cut pieces and piecescannot be joined together. Since the marble has a pattern on it, the plates cannot be rotated: if Phidias cuts a plate of size A ? B then it cannot be used as a plate of size B ? A unless A = B. He can make zero or more plates of each desired size. A marble plate is wasted if it is not of any of the desired sizes after all cuts are completed. Phidias wonders how to cut the initial slab so that as little of it as possible will be wasted. As an example, assume that in the figure below the width of the original slab is 21 and the height of the original slab is 11, and the desired plate sizes are 10 x 4, 6 x 2, 7 x 5, and 15 x 10. The minimum possible area wasted is 10, and the figure shows one sequence of cuts with total waste area of size 10.
[IMAGE]
Your task is to write a program that, given the size of the original slab and the desired plate sizes, calculates the minimum total area of the original slab that must be wasted.
Input
t - the number of test cases, then t test cases follow [t <= 20]. The first line of each test case contains two integers: first W, the width of the original slab, and then H, the height of the original slab. The second line contains one integer N: the number of desired plate sizes. The following N lines contain the desired plate sizes. Each of these lines contains two integers: first the width Wi and then the height Hi of that desired plate size (1 <= i <= N). [1 <= W <= 600, 1 <= H <= 600, 0 < N <= 200, 1 <= Wi <= W, and 1 <= Hi <= H.]
Output
For each test case output one line with a single integer: the minimum total area of the original slab that must be wasted.
Example
Input: 1 21 11 4 10 4 6 2 7 5
15 10 Output: 10
Added by: Roman Sol Date: 2005-05-20 Time limit: 21s Source limit:30000B Languages: All Resource: IOI 2004
366. Farmer
Problem code: FARMER
A farmer has a set of fields, each of which is surrounded by cypress trees. Also, the farmer has a set of strips of land, each of which has a row of cypress trees. In both fields and strips, between every two consecutive cypress trees is a single olive tree. All of the farmers cypress trees either surround a field or are in a strip and all of the farmers olive trees are between two consecutive cypress trees in a field or in a strip. One day the farmer became very ill and he felt that he was going to die. A few days before he passed away he called his eldest son and told him, "I give you any Q cypress trees of your choice and all the olive trees which are between any two consecutive cypress trees you have chosen." >From each field and from each strip the son can pick any combination of cypress trees. Since the eldest son loves olives he wants to pick the Q cypress trees which will allow him to inherit as many olive trees as possible.
[IMAGE]
In Figure 1, assume that the son is given Q=17 cypress trees. To maximize his olive inheritance he should choose all the cypress trees in Field 1 and Field 2, inheriting 17 olive trees. You are to write a program which, given the information about the fields and the strips and the number of cypress trees the son can pick, determines the largest possible number of olive trees the son may inherit.
Input
t - the number of test cases [t <= 20], then t test cses follows. The first line of each test case contains first the integer Q: the number of cypress trees the son is to select; then the integer M, the number of fields; and then the integer K, the number of strips. The second line contains M integers N1, N2,... NM, : the numbers of cypress trees in fields. The third line contains K integers R1, R2,... RK: the numbers of cypress trees in strips. In all test cases, 0 <= Q <= 150000, 0 <= M <= 2000, 0 <= K <= 2000, 3 <= N1 <= 150, 3 <= N2 <= 150,... 3 <= NM <=150, 2 <= R1 <= 150, 2 <= R2 <= 150,... 2 <= RK <= 150. The total number of cypress trees in the fields and strips is at least Q. Additionally, in 50% of the test cases, Q <= 1500.
Output
For each test case output ont integer: largest possible number of olive trees the son may inherit.
Example
Input: 1 17 3 3 13 4 8 4 8 6
Output: 17
Added by: Roman Sol Date: 2005-05-22 Time limit: 50s Source limit:30000B Languages: All Resource: IOI 2004
367. Empodia
Problem code: EMPODIA
The ancient mathematician and philosopher Pythagoras believed that reality is mathematical in nature. Present-day biologists study properties of biosequences. A biosequence is a sequence of M integers, which * contains each of the numbers 0,1,...,M-1, * starts with 0 and ends with M-1, and * has no two elements E,E+1 in adjacent positions in this order. A subsequence consisting of adjacent elements of a biosequence is called a segment.. A segment of a biosequence is called a framed interval if it includes all integers whose values are between the value of the first element, which must be the smallest element in the segment, and the last element, which must be the largest and different from the first. A framed interval is called an empodio if it does not contain any shorter framed intervals. As an example, consider the biosequence (0,3,5,4,6,2,1,7). The whole biosequence is a framed interval. However, it contains another framed interval (3,5,4,6) and therefore it is not an empodio. The framed interval (3,5,4,6) does not contain a shorter framed interval, so it is an empodio. Furthermore, it is the only empodio in that biosequence. You are to write a program that, given a biosequence, finds all empodia (plural for empodio) in that biosequence.
Input
t - the number of test cases [t <= 20], then t test cses follows. The first line of each test case contains a single integer M: the number of integers in the input biosequence. The following M lines contain the integers of the biosequence in the order of the sequence. Each of these M lines contains a single integer. In one test case, 1000000 <= M <= 1100000. In all other test cases, 1 <= M <= 60000. Additionally, in 50% of the test cases, M <= 2600.
Output
The first line for each test case is to contain one integer H: the number of empodia in the input biosequence. The following H lines describe all empodia of the input biosequence in the order of appearance of the starting point in the biosequence. Each of these lines is to contain two integers A and B (in that order) separated by a space, where the Ath element of the input biosequence is the first element of the empodio and the Bth element of the input biosequence is the last element of the empodio.
Example
Input: 1 8 0 3 5
4 6 2 1 7 Output: 1 2 5
Added by: Roman Sol Date: 2005-05-22 Time limit: 40s Source limit:50000B Languages: All Resource: IOI 2004
369. Math I
Problem code: MATH1
You are given n integers a 1 , a 2 ,..., a n (0<=a i <=n). The sum a 1 + a 2 +...+ a n does not exceeded n. Your task is to find n other integers x 1 , x 2 ,..., x n (note that x i may be negative numbers) satisfying the following conditions: (x i - x i+1 + a i+1 = 0) or (x i - x i+1 + a i+1 = 1) for i=1..n-1 (x n - x 1 + a 1 = 0) or (x n - x 1 + a 1 = 1) |x 1 |+|x 2 |+...+|x n | is minimized
Input
The first line of the input file contains an integer t representing the number of test cases (t<=20). Then t test cases follow. Each test case has the following form: The first line contains n (1<=n<=1000) The second line contains n integers a 1 , a 2 ,..., a n separated by single spaces
Output
For each test case output a single value: the minimum value of |x 1 |+|x 2 |+...+|x n |
Example
Input: 2 4 2 1 0 0 5 0 1 2 2 0 Output: 1 3 Output Details: In the former case, the optimal solution is (x 1 =0, x 2 =0, x 3 =0, x 4 =-1) In the latter case, the optimal solution is (x 1 =-1, x 2 =-1, x 3 =0, x 4 =1, x 5 =0)
Added by: Walrus Date: 2005-05-25 Time limit: 20s Source limit:50000B Languages: All
Input
Number K of test cases (K is approximately 1000); in each of the next K lines there is one integer n (1 <= n <= 20000)
Output
For each test case, your program should compute the smallest multiple of the number n consisting only of digits 1 and 0 (beginning with 1).
Example
Input: 3 17 11011 17 Output: 11101 11011 11101
Added by: Pawe Dobrzycki Date: 2005-05-26 Time limit: 8s Source limit:4096B Languages: All Resource: II Polish Olympiad in Informatics, Ist Stage
Input
The first line contains t, the number of tests (1<=t<=10). For each test case: the number of cards N is given is given in the first line (2<=N<=500). the next N lines contain the N cards owned by Gon. the following line contains e, the number of different allowed types of exchanges. the next e lines contain two integers x i ,y i each which mean that we can exchange and replace the card marked x by the card marked y and vice versa. There is a blank line after each test case.
Output
For each test case, output a line denoting the minimum required cost.
Example
Input: 1 4 1 2 2 2 2 2 3 3 4 Output: 3
Added by: Le Trong Dao Date: 2005-06-08 Time limit: 50s Source limit:50000B Languages: All Resource: Mr.Tran Minh Quan
Input
The first line of input contains the number of testcases t (t <= 15). The first line of each testcase contains the numbers M, N (1 <= M, N <= 200) Then M lines follow. In each line, there are N numbers 0 or 1.
Output
For each testcase, you should output a single line with numbers W and S.
Example
Input: 1 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 Output: 18 1
1 0 0 0 1
1 1 1 1 1
Added by: Le n Khue Date: 2005-06-08 Time limit: 10s Source limit:50000B Languages: All
Input
The first line of input contains an integer t, the number of test cases (t <= 20). t test cases follow. For each test case: In the first line there is an integer N (N <= 10000), In the next N-1 lines, the i-th line describes the i-th edge: a line with three integers a b c denotes an edge between a, b of cost c (c <= 1000000), The next lines contain instructions "CHANGE i ti" or "QUERY a b", The end of each test case is signified by the string "DONE". There is one blank line between successive tests.
Output
For each "QUERY" operation, write one integer representing its result.
Example
Input: 1 3 1 2 1 2 3 2 QUERY 1 2 CHANGE 1 3 QUERY 1 2 DONE Output: 1 3
Added by: Thanh-Vy Hua Date: 2005-06-08 Time limit: 5s Source limit:15000B Languages: All except: C99 strict
Input
A list of valid commands. Input terminated by EOF.
Output
For each "Q x y" write out one line with the current value of M(x,y), for each "W z" write out one line with the value of x and y ( interpreted as above ) separated by a space.
Input: R 1 2 Q 1 1 Q 2 1 W 1 W 5679 C 1 2 Q 1 1 Q 2 1 W 1 W 5679 Output: 5679 1 2 1 1 1 5680 2 2 2 1 2
Added by: Csaba Noszaly Date: 2005-06-10 Time limit: 7s Source limit:7777B Languages: All Resource: Folklore
Input Specification
The input contains several test cases. The first line of each test case contains an integer n (1 <= n <= 100000). Then a permutation of the integers 1 to n follows in the next line. There is exactly one space character between consecutive integers. You can assume that every integer between 1 and n appears exactly once in the permutation. The last test case is followed by a zero.
Output Specification
For each test case output whether the permutation is ambiguous or not. Adhere to the format shown in the sample output.
Sample Input
4 1 4 3 2 5 2 3 4 5 1 1 1 0
Sample Output
ambiguous not ambiguous ambiguous
Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 10s Source limit:50000B Languages: All Resource: own problem, used in University of Ulm Local Contest 2005
Input Specification
The input file consists of the text of the lecture, with "BULLSHIT" occurring occasionally. The first game starts with the first word in the input. Each occurrence of "BULLSHIT" indicates the end of one game. You may assume, that the word "BULLSHIT" occurs only in uppercase letters every word has at most 25 characters, and each line has at most 100 characters there are at most 500 different words before a game ends the players follow the rules, so there is no need to check if a game is valid or not at least one game is completed
Output Specification
The output consists of one number: the average number of different words needed to win a game. Write the number as a reduced fraction in the format shown below. Reduced fraction means that there should be no integer greater than 1 which divides both the numerator and denominator. For example if there were 10 games, and the number of different words in each game summed up to 55, print "11 / 2".
Sample Input
Programming languages can be classified BULLSHIT into following types: - imperative and BULLSHIT procedural languages - functional languages - logical BULLSHIT programming languages - object-oriented BULLSHIT languages
Sample Output
9 / 2
In the sample input, there are 4 completed games. The number of different words is 5, 5, 4 and 4, respectively. Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2005
Input Specification
The first line of the input file contains a number representing the number of test cases to follow. Each test case starts with a line containing three numbers n, w and h. n is the number of paintings already hanging on the wall, w is the width of the wall and h is the height of the wall. The next n lines contain 4 integers x 1 , y 1 , x 2 , y 2 each (0 <= x 1 < x 2 <= w, 0 <= y 1 < y 2 <= h); the x-coordinates give the distance to the left end of the wall, the y-coordinates give the distance to the bottom of the wall. (x 1 , y 1 ) is the position of the lower left corner of a painting, (x 2 , y 2 ) is the position of the upper right corner. The last line of each test case contains the dimensions of the next painting to be placed, first its width w, then its height h (1 <= w <= w, 1 <= h <= h). You are not allowed to rotate the painting. You can assume that 0 <= n <= 200 and 1 <= w, h <= 1000000. Moreover, all paintings already hanging do not overlap.
Output Specification
Produce one line of output for each test case. Write "Fail!" if there is no place left on the wall where the painting could be placed without overlapping other paintings. Otherwise, write the coordinates where the lower left corner of the painting should be placed. In case there is more than one solution, select the solution with a minimum y-coordinate, and break ties using the minimum x-coordinate.
Sample Input
2 1 5 9 2 5 0 3 10 9 4 10 9 5 10 10 5 10 10 0 4 3 4
The following image illustrates the second sample test case: [IMAGE]
Sample Output
Fail! 4 0
Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 6s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2005
Broad gauge (former USSR): 1520 mm Narrow gauge (meter gauge): 1000 mm A museum has trains from several countries. It needs tracks for every train type in order to show visitors the trains in use. However, since only one train is used at a time, a rail can be used by trains of different types. It follows that for n trains, each requiring a different railway gauge, n + 1 rails are sufficient (each train uses the leftmost rail and a rail that has exactly the required distance to it). But sometimes it is possible to save even more rails. Given the required railway gauges, your task is to construct a railway track that can be used by every train and requires the least number of rails. Note that a train can use any two rails, provided the distance between them is right.
Input Specification
The first line of the input file contains a number representing the number of test cases to follow. Each test case starts with an integer n (the number of different railway gauges required). The next line contains n integers between 1000 and 5000, each defining one required railway gauge. You can assume that 1 <= n <= 8. Moreover, for every test case in the input file, there will be a solution requiring at most 5 rails.
Output Specification
The output for each test case consists of three lines: The first line is of the form "Scenario #X", where X is the test case number starting with 1. The second line describes the solution your program has found; first your program should print how many rails are needed, followed by a colon, then the positions of each rail in increasing order (the first rail should be at position 0). The third line should be blank. If there are several solutions with the minimum number of rails, any one will do.
Sample Input
3 4 1524 1520 1609 1435 3 1000 1520 1600 6 1000 2000 3000 4000 1500 2500
Sample Output
Scenario #1 4: 0 1520 1609 3044 Scenario #2 4: 0 1000 1520 1600 Scenario #3 5: 0 1500 3000 4000 5000
Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 1s-10s Source limit:50000B Languages: All except: PERL 6 Resource: University of Ulm Local Contest 2005
<empty> stands for the empty word, i.e. the list in a set can be empty. Soon he realizes that this task is much harder than he has thought, since the alphabet consists of the characters which are also used for the syntax of the set. So he claims that it is not possible to decide efficiently if a word consisting of "{", "}" and "," is a syntactically correct representation of a set or not. To disprove him, you need to write an efficient program that will decide this problem.
Input Specification
The first line of the input file contains a number representing the number of lines to follow. Each line consists of a word, for which your program has to decide if it is a syntactically correct representation of a set. You may assume that each word consists of between 1 and 200 characters from the set { "{", "}", "," }.
Output Specification
Output for each test case whether the word is a set or not. Adhere to the format shown in the sample output.
Sample Input
4
Sample Output
Word Word Word Word #1: #2: #3: #4: Set Set Set No Set
Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 10s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2005
Input Specification
The input file contains several test cases. Each test case starts with an integer n (2 <= n <= 1000), the number of teams participating in the tournament. The following n lines contain the names of the teams participating in the tournament. You can assume that each team name consists of up to 25 letters of the English alphabet (a to z or A to Z). Then follow n - 1 lines, describing the games the sheikh would like to see (in any order). Each line consists of the two names of the teams which take part in that game. You can assume that it is always possible to find a tournament schedule consisting of the given games. The last test case is followed by a zero.
Output Specification
For each test case, write the game schedule, distributed in rounds. For each round, first write "Round #X" (where X is the round number) in a line by itself. Then write the games scheduled in this round in the form: "A defeats B", where A is the name of the advancing team and B is the name of the team being eliminated. You may write the games of a round in any order. If a wildcard is needed for the round, write "A advances with wildcard" after the last game of the round, where A is the name of the team which gets the wildcard. After the last round, write the winner in the format shown below. Print a blank line after each test case.
Sample Input
3 A B C A B 5 A B C D E A C A C 0
B C
B D E E
Sample Output
Round #1 B defeats A C advances with wildcard Round #2 C defeats B Winner: C Round #1 A defeats B C defeats D E advances with wildcard Round #2 E defeats A C advances with wildcard Round #3 E defeats C Winner: E
Note that there is always more than one possible game schedule; you may print any of them. Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 10s Source limit:50000B Languages: All Resource: own problem, used in University of Ulm Local Contest 2005
Input Specification
The input file contains several test cases. Each test case starts with an integer n (1 <= n <= 50), the number of nodes in the optimal binary search tree. For simplicity, the labels of the nodes will be integers from 1 to n. The following n lines describe the structure of the tree. The i-th line contains the labels of the roots of the left and right subtree of the node with label i (or -1 for an empty subtree). You can assume that the input always defines a valid binary search tree. The last test case is followed by a zero.
Output Specification
For each test case, write one line containing the access frequency for each node in increasing order of the labels of the nodes. To avoid problems with floating point precision, the frequencies should be written as integers, meaning the access probability for a node will be the frequency divided by the sum of all frequencies. Make sure that you do not write any integer bigger than 2 63 - 1 (the maximum value fitting in the C/C++ data type long long or the Java data type long). Otherwise, you may produce any solution ensuring that there is exactly one optimal binary search tree: the binary search tree given
in the input.
Sample Input
3 -1 -1 1 3 -1 -1 10 -1 2 -1 3 -1 4 -1 5 -1 6 -1 7 -1 8 -1 9 -1 10 -1 -1 0
Sample Output
1 1 1 512 256 128 64 32 16 8 4 2 1
Note that the first test case in the sample input describes a tree looking like
2 / \ 1 3
Added by: Adrian Kuegel Date: 2005-06-24 Time limit: 5s Source limit:50000B Languages: All Resource: own problem, used in University of Ulm Local Contest 2005
Input
The first line of input contains the number of testcases t (t <= 15). The first line of each testcase contains the numbers N, M. The next M lines contain three integers U V W which mean that there is one street from U to V of length W.
Output
For each test case you shold output the minimal total length of all tours.
Example
Input: 2 6 9 1 2 5 2 3 5 3 1 10 3 4 12 4 1 8 4 6 11 5 4 7 5 6 9 6 5 4 5 8 1 2 4 2 1 7 1 3 10 3 2 10 3 4 10 4 5 10 5 3 10 5 4 3 Output: 42 40
Detailed explanation: Test 1: Tour #1: 1 - 2 - 3 - 1 Tour #2: 6 - 5 - 4 - 6 Test 2: Tour #1: Tour #2:
1 - 3 - 2 - 1 5 - 4 - 5
Added by: Le n Khue Date: 2005-06-25 Time limit: 5s Source limit:50000B Languages: All Resource: 2nd round VOI 2004
388. Menu
Problem code: MENU
Alfred wants to plan what to cook in the next days. He can cook various dishes. For each dish the costs of the ingredients and the benefit value is known. If a dish is cooked the second time in a row, the benefit value for the second time is 50 percent of the benefit value of first time, if it is prepared for the third or higher time in a row, the benefit value is 0. For example cooking a dish with benefit value v three times in a row leads to a total benefit value of 1.5*v. Help him to build the menu which maximizes the benefit value under the constraint that his budget is not exceeded.
Input
The input consists of several test cases. Each test case begins with 3 integers in a line: The number of days k (1 <= k <= 21) Alfred wants to plan for, the number of dishes n (1 <= n <= 50) he can cook and his budget m (0 <= m <= 100). The following n lines describe the dishes Alfred can cook. The i-th line contains two integers: the costs c (1 <= c <= 50) and the benefit value v (1 <= v <= 10000) of the i-th dish. The end of the input is signaled by a test case with k = n = m = 0. You dont need to process this test case.
Output
For each output, print the maximum benefit value reachable with 1 digit after the decimal point. Then print k integers with i-th integer being the number of the dish to cook on day i. Dishes are numbered from 1 to n. Print at least one space or new line character after each integer. If there are several possible menus reaching the maximum benefit value, select the one with minimum costs, if there are several with minimum costs, you can print any of them. If every menu exceeds the budget, print only the benefit value of 0.
Example
Input: 2 1 5 3 5 3 5 20 2 5 18 6 1 1 3 3 2 3 0 0 0 Output: 0.0 13.0 1 5 1
Added by: Adrian Kuegel Date: 2005-07-04 Time limit: 5s Source limit:50000B Languages: All Resource: own problem
Input
The input file contains data for several simulation runs. Each run is separated by a blank line. All numeric data in the input file are integers, and successive integers on the same line are separated by blanks. The first line of each run is the set of hospital configuration parameters to be used for this run. The parameters are, in order: Number of operating rooms (maximum of 10) Number of recovery room beds (maximum of 30) Starting hour for 1st surgery of day (based on a 24-hour clock) Minutes to transport patient from operating room to recovery room Minutes to prepare operating room for next patient Minutes to prepare recovery room bed for next patient Number of surgery patients for the day (maximum of 100) This initial configuration data will be followed by pairs of lines of patient data as follows: Line 1: Last name of patient (maximum of 8 characters) Line 2: Minutes required for surgery Minutes required in the recovery room
Patient records in the input file are ordered according to the patient roster, which determines the order in which patients are scheduled for surgery. The number of recovery room beds specified in any configuration will be sufficient to handle patients arriving from surgery (No queuing of patients for recovery room beds will be required). Computed times will not extend past 24:00.
Output
Correct output shows which operating room and which recovery room bed is used by each patient, and the time period that the patient uses the room and bed along with a summary of the utilization of hospital facilities for that day. The output file consists of several sets of two tables each describing the results of the simulation run. The first table is in columnar form with appropriate column labels to show the number of each patient (in the order the patient roster), the patients last name, the operating room number, the time surgery begins and ends, the recovery bed number and the time the patient enters and leaves the recovery room bed. The second table will also be in columnar form with appropriate column labels summarizing the utilization of operating rooms and recovery room beds. This summary indicates the facility type (room or bed), the facility number, the number of minutes used and percentage of available time utilized. Available time is defined as the time in minutes from the starting time for 1st surgery of day to the ending time of the last patient in a recovery room bed. Print a blank line after each run. Follow the output format shown on sample output.
Example
Input: 5 12 07 5 15 10 16 Jones 28 140 Smith 120 200 Thompson 23 75 Albright 19 82 Poucher 133 209 Comer 74 101 Perry 93 188 Page 111 223 Roggio 69 122 Brigham 42 79 Nute 22 71 Young 38 140 Bush 26 121 Cates 120 248 Johnson 86 181
White 92 140 Output: Patient Operating Room Recovery Room # Name Room# Begin End Bed# Begin End -----------------------------------------------------1 Jones 1 7:00 7:28 3 7:33 9:53 2 Smith 2 7:00 9:00 1 9:05 12:25 3 Thompson 3 7:00 7:23 2 7:28 8:43 4 Albright 4 7:00 7:19 1 7:24 8:46 5 Poucher 5 7:00 9:13 5 9:18 12:47 6 Comer 4 7:34 8:48 4 8:53 10:34 7 Perry 3 7:38 9:11 2 9:16 12:24 8 Page 1 7:43 9:34 6 9:39 13:22 9 Roggio 4 9:03 10:12 9 10:17 12:19 10 Brigham 2 9:15 9:57 8 10:02 11:21 11 Nute 3 9:26 9:48 7 9:53 11:04 12 Young 5 9:28 10:06 3 10:11 12:31 13 Bush 1 9:49 10:15 10 10:20 12:21 14 Cates 3 10:03 12:03 8 12:08 16:16 15 Johnson 2 10:12 11:38 4 11:43 14:44 16 White 5 10:21 11:53 7 11:58 14:18 Facility Utilization Type # Minutes % Used ------------------------Room 1 165 29.68 Room 2 248 44.60 Room 3 258 46.40 Room 4 162 29.14 Room 5 263 47.30 Bed 1 282 50.72 Bed 2 263 47.30 Bed 3 280 50.36 Bed 4 282 50.72 Bed 5 209 37.59 Bed 6 223 40.11 Bed 7 211 37.95 Bed 8 327 58.81 Bed 9 122 21.94 Bed 10 121 21.76 Bed 11 0 0.00 Bed 12 0 0.00
Added by: Adrian Kuegel Date: 2005-07-04 Time limit: 3s Source limit:50000B Languages: All Resource: ACM ICPC World Finals 1991
390. Billiard
Problem code: BILLIARD
In a billiard table with horizontal side a inches and vertical side b inches, a ball is launched from the middle of the table. After s > 0 seconds the ball returns to the point from which it was launched, after having made m bounces off the vertical sides and n bounces off the horizontal sides of the table. Find the launching angle A (measured from the horizontal), which will be between 0 and 90 degrees inclusive, and the initial velocity of the ball. Assume that the collisions with a side are elastic (no energy loss), and thus the velocity component of the ball parallel to each side remains unchanged. Also, assume the ball has a radius of zero. Remember that, unlike pool tables, billiard tables have no pockets.
Input
Input consists of a sequence of lines, each containing five nonnegative integers separated by whitespace. The five numbers are: a, b, s, m, and n, respectively. All numbers are positive integers not greater than 10000. Input is terminated by a line containing five zeroes.
Output
For each input line except the last, output a line containing two real numbers (accurate to two decimal places) separated by a single space. The first number is the measure of the angle A in degrees and the second is the velocity of the ball measured in inches per second, according to the description above.
Example
Input: 100 200 201 0 0 100 100 132 0 0 1 1 1 5 3 4 48 1900 156 0
Added by: Adrian Kuegel Date: 2005-07-04 Time limit: 3s Source limit:50000B Languages: All Resource: University of Waterloo Local Contest (Spring 1999)
391. Railroads
Problem code: RAILROAD
Its Friday evening and Jill hates two things which are common to all trains: 1. They are always late. 2. The schedule is always wrong. Nevertheless, tomorrow in the early morning hours Jill will have to travel from Hamburg to Darmstadt in order to get to the regional programming contest. Since she is afraid of arriving too late and being excluded from the contest she is looking for the train which gets her to Darmstadt as early as possible. However, she dislikes to get to the station too early, so if there are several schedules with the same arrival time then she will choose the one with the latest departure time. Jill asks you to help her with her problem. You are given a set of railroad schedules from which you must compute the train with the earliest arrival time and the fastest connection from one location to another. One good thing: Jill is very experienced in changing trains. She can do this instantaneously, i.e., in zero time!!!
Input
The very first line of the input gives the number of scenarios. Each scenario consists of three parts. Part one lists the names of all cities connected by the railroads. It starts with a number 1 < C <= 100, followed by C lines containing city names. These names consist of letters. Part two describes all the trains running during a day. It starts with a number T <= 1000 followed by T train descriptions. Each of them consists of one line with a number t i <= 100 and t i more lines with a time and a city name, meaning that passengers can get on or off the train at that time at that city. Part three consists of three lines: Line one contains the earliest journeys starting time, line two the name of the city where she starts, and line three the destination city. The two cities are always different.
Output
For each scenario print a line containing "Scenario i", where i is the number of the scenario starting at 1. If a connection exists then print the two lines containing zero padded timestamps and locations as shown in the sample. Use blanks to achieve the indentation. If no connection exists on the same day (i.e., arrival before midnight) then print a line containing "No connection". After each scenario print a blank line.
Example
Input: 2 3 Hamburg Frankfurt Darmstadt 3 2 0949 Hamburg 1006 Frankfurt 2 1325 Hamburg 1550 Darmstadt 2 1205 Frankfurt 1411 Darmstadt 0800 Hamburg Darmstadt 2 Paris Tokyo 1 2 0100 Paris 2300 Tokyo 0800 Paris Tokyo Output: Scenario 1 Departure 0949 Hamburg Arrival 1411 Darmstadt Scenario 2 No connection
Added by: Adrian Kuegel Date: 2005-07-04 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest 2000
392. Spin
Problem code: SPIN
tex2html_wrap62 tex2html_wrap64
A disk can be rotated between horizontal and vertical only if it is positioned over the indentation marked 0 and the disk on its right is vertical . The right-most disk can always rotate if it is in position 0 since it has no disk on its right. The aim is to free the slide by moving it so its left edge aligns with the Win mark: [IMAGE] Your task is to write a program which will take several part-solved puzzles and compute the number of steps needed to move the slide to position Win for each puzzle.
Input
There will be several puzzles in the input file. The first line of the file will contain an integer n specifying the number of puzzles. There will then be n lines, each of the form: length orientations position where length(length < 30) is an integer indicating the number of disks on the slide, orientations is a string of length characters from the set {h,v} giving the orientation of each disk from left to right (h stands for horizontal, and v for vertical), and position is an integer from 0 to length specifying the numbered mark which aligns with the left edge of the slide.
Output
For each puzzle, your program should output one integer on a line which counts the minimum number of steps needed to win the puzzle. A step is either a movement of the slide, one unit left or right, or the rotation of a disk.
Example
Input: 3 2 vv 2 7 vhhhvhh 4 29 vvvvvvvvvvvvvvvvvvvvvvvvvvvvv 29 Output:
7 357 1073741823
Added by: Adrian Kuegel Date: 2005-07-04 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Northwestern European Regional Contest 1993 (UVA problem 279)
394. Alphacode
Problem code: ACODE
Alice and Bob need to send secret messages to each other and are discussing ways to encode their messages: Alice: "Lets just use a very simple code: Well assign A the code word 1, B will be 2, and so on down to Z being assigned 26." Bob: "Thats a stupid code, Alice. Suppose I send you the word BEAN encoded as 25114. You could decode that in many different ways!" Alice: "Sure you could, but what words would you get? Other than BEAN, youd get BEAAD, YAAD, YAN, YKD and BEKD. I think you would be able to figure out the correct decoding. And why would you send me the word BEAN anyway?" Bob: "OK, maybe thats a bad example, but I bet you that if you got a string of length 5000 there would be tons of different decodings and with that many you would find at least two different ones that would make sense." Alice: "How many different decodings?" Bob: "Jillions!" For some reason, Alice is still unconvinced by Bobs argument, so she requires a program that will determine how many decodings there can be for a given string using her code.
Input
Input will consist of multiple input sets. Each set will consist of a single line of at most 5000 digits representing a valid encryption (for example, no line will begin with a 0). There will be no spaces between the digits. An input line of 0 will terminate the input and should not be processed.
Output
For each input set, output the number of possible decodings for the input string. All answers will be within the range of a 64 bit signed integer.
Example
Input: 25114 1111111111 3333333333 0 Output:
6 89 1
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 2s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Input
Input will consist of multiple input sets. Each set will consist of three integers, n, m, and d on a single line. The values of n, m and d will satisfy 1 <= n < m <= 1000, and 2 <= d <= 10. The line 0 0 0 will indicate end of input and should not be processed.
Output
For each input set, output a single line consisting of a comma-separated list of integers forming a degree d anti-prime sequence (do not insert any spaces and do not split the output over multiple lines). In the case where more than one anti-prime sequence exists, print the lexicographically first one (i.e., output the one with the lowest first value; in case of a tie, the lowest second value, etc.). In the case where no anti-prime sequence exists, output: No anti-prime sequence exists.
Example
Input: 1 10 2 1 10 3 1 10 5 40 60 7 0 0 0 Output: 1,3,5,4,2,6,9,7,8,10 1,3,5,4,6,2,10,8,7,9 No anti-prime sequence exists. 40,41,43,42,44,46,45,47,48,50,55,53,52,60,56,49,51,59,58,57,54
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 15s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Input
Input will consist of multiple input sets. The first line of the file will contain a single positive integer n indicating the number of input sets in the file. Each input set will be a single line containing 53 integers: the first integer will indicate the number of players in the game and the remaining 52 values will be the initial layout of the cards in the deck, topmost card first. These values will all lie in the range 1 . . . 13, and the number of players will lie in the range 1 . . . 10.
Output
For each input set, output the input set number (as shown below, starting with 1) and either the phrase "unwinnable" or a list showing the last card discarded by each player. Use a single blank to separate all outputs.
Example
Input: (note that the line break is only in the sample input for displaying purposes) 2 4 1 1 4 2 2
2 2 3 3
3 3 4 4
4 4 5 5
5 5 6 6
6 6 7 7
7 7 8 8
8 8 9 9
9 10 11 12 13 9 10 11 12 13 10 11 12 13 1 10 11 12 13 1
1 1 2 2
2 2 3 3
3 3 4 4
4 4 5 5
5 5 6 6
6 6 7 7
7 7 8 8
8 8 9 9
9 10 11 12 13 9 10 11 12 13 10 11 12 13 1 10 11 12 13 1
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 2s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
397. I Conduit
Problem code: CONDUIT
Irv Kenneth Diggit works for a company that excavates trenches, digs holes and generally tears up peoples yards. Irvs job is to make sure that no underground pipe or cable is underneath where excavation is planned. He has several different maps, one for each utility company, showing where their conduits lie, and he needs to draw one large, consolidated map combining them all. One approach would be to simply draw each of the smaller maps one at a time onto the large map. However, this often wastes time, not to mention ink for the pen-plotter in the office, since in many cases portions of the conduits overlap with each other (albeit at different depths underground). What Irv wants is a way to determine the minimum number of line segments to draw given all the line segments from the separate maps.
Input
Input will consist of multiple input sets. Each set will start with a single line containing a positive integer n indicating the total number of line segments from all the smaller maps. Each of the next n lines will contain a description of one segment in the format x1 y1 x2 y2 where (x 1 ,y 1 ) are the coordinates of one endpoint and (x 2 ,y 2 ) are the coordinates of the other. Coordinate values are floating point values in the range 0 ...1001 specified to at most two decimal places. The maximum number of line segments will be 10000 and all segments will have non-zero length. Following the last input set there will be a line containing a 0 indicating end of input; it should not be processed.
Output
For each input set, output on a single line the minimum number of line segments that need to be drawn on the larger, consolidated map.
Example
Input: 3 1.0 10.0 3.0 14.0 0.0 0.0 20.0 20.0 10.0 28.0 2.0 12.0 2 0.0 0.0 1.0 1.0 1.0 1.0 2.15 2.15 2 0.0 0.0 1.0 1.0 1.0 1.0 2.15 2.16 0
Output: 2 1 2
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 3s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Input
Input will consist of multiple input sets. Each input set will start with a single line containing an integer n indicating the number of dice that are already specified. Each of the next n lines describes one of these dice. Each of these lines will start with an integer f (indicating the number of faces on the die) followed by f integers indicating the value of each face. The last line of each problem instance will have the form r m v 1 c 1 v 2 c 2 v 3 c 3 ... v m c m where r is the number of faces required on the unspecified die, m is the number of sums of interest, v 1 ,...,vsm are these sums, and c 1 ,...,c m are the counts of the desired number of different ways in which to achieve each of the respective sums. Input values will satisfy the following constraints: 1 <= n <= 20, 3 <= f <= 20, 1 <= m <= 10, and 4 <= r <= 6. Values on the faces of all dice, both the specified ones and the unknown die, will be integers in the range 1 ...50, and values for the v i s and c i s are all non-negative and are strictly less than the maximum value of a 32-bit signed integer. The last input set is followed by a line containing a single 0; it should not be processed.
Output
For each input set, output a single line containing either the phrase "Final die face values are" followed by the r face values in non-descending order, or the phrase "Impossible" if no die can be found meeting the specifications of the problem. If there are multiple dice which will solve the problem, choose the one whose lowest face value is the smallest; if there is still a tie, choose the one whose second-lowest face value is smallest, etc.
Example
Input: 1 4 5 1 6 6 4 6 4 3 8 4 0
1 10 15 20 5 2 3 3 1 11 3 16 4 26 1 1 2 3 4 5 6 3 7 6 2 1 13 1 1 1 3 1 4 2 3 4 5 6 2 2 3 7 9 4 5 9 23 24 30 38 48 57 51 37 56 31 63 11
Output: Final die face values are 1 1 1 2 6 Impossible Final die face values are 3 7 9 9
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 15s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Input
There will be multiple input sets. Input for each set is a positive integer n on a line by itself, followed by n lines (n no more than 100), each containing a permutation of the letters A, B, C, D and E, left-justified with no spaces. The final input set is followed by a line containing a 0, indicating end of input.
Output
Output for each input set should be one line of the form: ranking is the median ranking with value value. Of course ranking should be replaced by the correct ranking and value with the correct value. If there is more than one median ranking, you should output the one which comes first alphabetically.
Example
Input: 4 ABDCE BACDE ABCED ACBDE 0 Output: ABCDE is the median ranking with value 4.
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 3s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Note that Mo includes only letters and writes them all in lower case. In this example, Mo used the character x to pad the message out to make a rectangle, although he could have used any letter. Mo then sends the message to Larry by writing the letters in each row, alternating left-to-right and right-to-left. So, the above would be encrypted as
toioynnkpheleaigshareconhtomesnlewx
Your job is to recover for Larry the original message (along with any extra padding letters) from the encrypted one.
Input
There will be multiple input sets. Input for each set will consist of two lines. The first line will contain an integer in the range 2...20 indicating the number of columns used. The next line is a string of up to 200 lower case letters. The last input set is followed by a line containing a single 0, indicating end of input.
Output
Each input set should generate one line of output, giving the original plaintext message, with no spaces.
Example
Input: 5 toioynnkpheleaigshareconhtomesnlewx 3 ttyohhieneesiaabss 0
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 2s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
401. Translations
Problem code: TRANSL
Bob Roberts is in charge of performing translations of documents between various languages. To aid him in this endeavor his bosses have provided him with translation files. These files come in twos -one containing sample phrases in one of the languages and the other containing their translations into the other language. However, some over-zealous underling, attempting to curry favor with the higher-ups with his initiative, decided to alphabetically sort the contents of all of the files, losing the connections between the phrases and their translations. Fortunately, the lists are comprehensive enough that the original translations can be reconstructed from these sorted lists. Bob has found this is most usually the case when the phrases all consist of two words. For example, given the following two lists: Language 1 Phrases Language 2 Phrases arlo zym flub pleve pleve dourm pleve zym bus seat bus stop hot seat school bus
Bob is able to determine that arlo means hot, zym means seat, ub means school, pleve means bus, and dourm means stop. After doing several of these reconstructions by hand, Bob has decided to automate the process. And if Bob can do it, then so can you.
Input
Input will consist of multiple input sets. Each input set starts with a positive integer n, n <= 250, indicating the number of two-word phrases in each language. This is followed by 2n lines, each containing one two-word phrase: the first n lines are an alphabetical list of phrases in the first language, and the remaining n lines are an alphabetical list of their translations into the second language. Only upper and lower case alphabetic characters are used in the words. No input set will involve more than 25 distinct words. No word appears as the first word in more than 10 phrases for any given language; likewise, no word appears as the last word in more than 10 phrases. A line containing a single 0 follows the last problem instance, indicating end of input.
Output
For each input set, output lines of the form
word1/word2
where word1 is a word in the first language and word2 is the translation of word1 into the second language, and a slash separates the two. The output lines should be sorted according to the first language words, and every first language word should occur exactly once. There should be no white space in the output, apart from a single blank line separating the outputs from different input sets. Imitate the format of the sample output, below. There is guaranteed to be a unique correct translation corresponding to each input instance.
Example
Input: 4 arlo zym flub pleve pleve dourm pleve zym bus seat bus stop hot seat school bus 2 iv otas otas re ec t eg ec 0 Output: arlo/hot dourm/stop flub/school pleve/bus zym/seat iv/eg otas/ec re/t
Added by: Adrian Kuegel Date: 2005-07-09 Time limit: 15s Source limit:50000B Languages: All Resource: ACM East Central North America Regional Programming Contest 2004
Input
The input file contains several test cases. Each test case starts with the number n. Input is terminated by n=0. Otherwise, 1<=n<=50. Then follow three integers p 1 , p 2 , p 3 with 1<=p i <=n denoting the starting locations of the game pieces. The colours of the arrows are given next as a nn matrix m of whitespace-separated lower-case letters. The element m ij denotes the colour of the arrow between the locations i and j. Since the graph is undirected, you can assume the matrix to be symmetrical.
Output
For each test case output on a single line the minimum number of moves required to get all three pieces onto the same location, or the word "impossible" if that is not possible for the given board and starting locations.
Example
Input: 3 r b r 2 y g 0 1 b b b 1 g y 2 3 r b r 2 2
Output: 2 impossible
Added by: Adrian Kuegel Date: 2005-07-10 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2000
Input
The first line of input contains the number of testcases t (t <= 15). The first line of each testcase contains numbers N and M (N <= 5000, M <= 10000). The next M lines contain one question each.
Output
For each testcase, you should output M lines which are the answers to the M questions.
Example
Input: 1 5 4 1 3 5 8 Output: 0/1 1/4 2/5 2/3
Added by: Le n Khue Date: 2005-07-12 Time limit: 2s Source limit:10000B Languages: All Resource: Mr Nguyen Duc Thinh
404. Scanner
Problem code: SCANNER
A body scanner works by scanning a succession of horizontal slices through the body; the slices are imaged one at a time. The image slices can be reassembled to form a three dimensional model of the object. Write a program to construct a two dimensional image slice using data captured during the scan. epsfbox{p229.eps} The scanner consists of four arrays of sensors arranged around a 1015 matrix. Array 1 consists of 10 sensors pointing to the right, array 2 has 24 sensors pointing diagonally to the top right, array 3 has 15 sensors pointing to the top and array 4 has 24 sensors pointing to the top left. Each sensor records the thickness of that portion of the object directly in front of that sensor. Readings from the arrays of sensors are recorded in counterclockwise order. Within an array of sensors, data are also recorded counterclockwise. A complete scan consists of 73 readings.
Input
The input file begins with a line with an integer indicating the number of image slices to follow. For each image slice, there are separate lines with 10, 24, 15, and 24 integers representing sensor data from sensor arrays 1 through 4 respectively. The order of the readings is indicated in the diagram. You can assume that there exist at least one image for the given sensor data.
Output
For each slice, your program should print 10 lines of 15 cells. To indicate that the cell represents a part of the object, print a hash character (#) for the cell; to indicate that the cell is not a part of the object, print a period (.). Between successive output image slices, print a blank line. It is possible for the result of a scan to be ambiguous, in that case you can print any solution.
Example
Input: 1 10 10 0 1 2 2 4 5 0 0 1
6 2 5 3
4 2 7 4
6 2 6 4
8 4 7 4
13 15 5 5 6 10 10 4 3 4
11 6 7 6 5 6 6 5 5 6 6 3 2 2 1 0 10 7 3 3 5 5 5 7 8 8 9 9 6 4 4 2 0 0 0 0
Added by: Adrian Kuegel Date: 2005-07-26 Time limit: 42s Source limit:50000B Languages: All Resource: ACM ICPC World Finals 1993
Input
The input file consists of blocks of lines. Each block except the last describes one cutting process. In the first line of the block there is a number tex2html_wrap_inline33 indicating the number of segment cuts in the cutting process. These cuts are defined by the following N lines. The line defining one segment cut has the form tex2html_wrap_inline37 where tex2html_wrap_inline39 and tex2html_wrap_inline41 are the co-ordinates of the end points of the segment cut. They are separated by one space. The co-ordinates are integers and always define horizontal or vertical segment (i.e. segment parallel with x or y axis). The last block consists of just one line containing 0.
Output
The output file contains the lines corresponding to the blocks in the input file. Each such line contains the number of holes that remain in the tin plate after the execution of the corresponding cuts. There is no line in the output file corresponding to the last "null" block of the input file.
Example
Input: 4 0 1 1 0 2 0
1 1 0 0
1 1 0 0
1 0 0 1
1 2 1
1 2 1 0 0 Output: 1 0
Added by: Adrian Kuegel Date: 2005-07-26 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Central European Regional Contest 1996
406. Logic
Problem code: LOGIC
Consider a 10x10 grid. Cells in this grid can contain one of five logic operations (AND, OR, NOT, Input, Output). These can be joined together to form a logic circuit. Given a description of a circuit and a set of boolean values, build the logic circuit and execute the input stream against it.
Input
The first line of the input contains a single integer n, which specifies the number of circuits to be processed. There will then be n groups of circuit descriptions and test values. A circuit is made up of a number of operations. Each line describing an operation begins with three characters: the co-ordinates for a cell, 0-9 on the X-axis then 0-9 on the Y-axis, followed by a single character to represent the operation of that cell (& for AND, | for OR, ! for NOT, i for Input and o for Output). Optionally following each triple is a set of co-ordinate pairs which represent the x and y co-ordinates of cells that take the output of this cells operation as an input for theirs. This (possibly empty) output list is terminated by ... The list of operations is terminated by a line containing the word end. Next, for each circuit, comes the set of test values. The first line contains an integer t which gives the number of test cases your program must run. Next, there are t lines, each line containing a sequence of 0 and 1 characters symbolising the input values for one test case. The number of inputs will always correspond to the number of inputs defined by the circuit description. The input values are to be applied to the inputs in the order in which the input operations were defined in the circuit description. The next circuit description, if any, will then follow.
Output
For each circuit, your program should output one line for each test case given in the input. The line should contain one 0 or 1 character for each output defined by the circuit description in the order in which the outputs were defined. Your program should output a blank line after each set of test cases.
Example
Input: 1 00i 02i 11& 21o 13| 23o end
11 11 21 .. 23 ..
13 .. 13 .. .. ..
4 00 01 10 11 Output: 00 01 01 11
Notes: i, o and ! operations will always have exactly one input. & and | operations will always have exactly two inputs. Even if an operation can feed others, it does not have to. No recursive circuits. o can also be an input for another gate Hint: Sample input specifies a circuit consiting of an AND and an OR operation in parallel both fed from the same two inputs:
3 +---------\ | |OR #----------OUT(2) | +---/ | | IN(2)----+ | | | +---------\ | |AND#----------OUT(1) +---/ | IN(1)---------+ 0 1 2
In grid terms this is two inputs at 0,0 and 1,0. The first input feeds the AND operation at 1,1 and the OR operation at 1,3. The second input operation feeds the second input for the same AND and OR operations. The AND operation then feeds an output operation at 2,1. The OR operation also feeds an output operation, this one at 2,3. Added by: Adrian Kuegel Date: 2005-07-26 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Northwestern European Regional Contest 1993
Formula
begin{displaymath}G(A,B,0.b_1b_2dots b_p) = left{ begin{array}{ll} A, & m... ...p, & mbox{if $b_1=1$} end{array} right. end{array} right. end{displaymath} Here we suppose, that $A le B$ , $p ge 0$ , and div 2" is an integer division by 2. Let M, N ( $1 le N le M le 200$ ) and a binary real number $0.b(1)b(2)dots b(p)$ ( $1 le p le 400$ ) be given. Write a program to find out the corresponding $u(1), u(2), dots, u(N)$ sequence, i.e. to find a sequence with $G(1, T, 0.b(1)b(2)dots b(p))$ number in lexicographical order of all possible ${u(i)}$ for the given M and N (T is the quantity of such sequences). Numeration begins with 1. Keep in mind that in lexicographical order ${l(i)}$ proceeds ${h(i)}$ if after omitting equal beginnings, the first number of ${l(i)}$ tail is smaller than the first number or ${h(i)}$ tail. Following example illustrates the list of all possible sequences for M = 4 and N = 3 in lexicographical order.
Example
1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 4, 2, 2, 3, 3, 4, 2, 2, 3, 3, 4, 3, 3, 4, 4, 3 4 3 4 4 3 4 3 4 4 3 4 4 4
(here T=14)
Input
The first line of the input is an integer K <= 10, followed by K datasets. The first line of each dataset contains M and N. The second line contains binary real number $0.b(1)b(2)dots b(p)$ (without leading, trailing and other spaces).
Output
For each dataset, write into the output data file the corresponding sequence $u(1), u(2), dots, u(N)$ . The sequence numbers should be separated with spaces and end-of-line characters. There should be up to 20 numbers in each line. If neccesary, the numbers will have leading blanks to occupy 3 characters.
Example
Input: 1 4 3 0.01101101011110010001101010001011010 Output: 2 2 4
Added by: Adrian Kuegel Date: 2005-07-26 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Northeastern European Regional Contest 1996
Input
The input file contains information on several bus routes. The first line of the file is a single integer b representing the number of route descriptions in the file. The identifier for each route (r) is the sequence number within the data file, 1 <= r <= b. Each route description begins with the number of stops on the route: an integer s, 2 <= s <= 100000 on a line by itself. The number of stops is followed by s - 1 lines, each line i (1 <= i < s) is an integer n i with absolute value <= 1000 representing Jills assessment of the niceness of the road between the two stops i and i+1.
Output
For each route in the input file, your program should identify the beginning bus stop i and the ending bus stop j that identify the segment of the route which yields the maximal sum of niceness, m= n i +n i+1 +...+n j-1 . If more than one segment is maximally nice, choose the one with the longest cycle ride (largest j-i). To break ties in longest maximal segments, choose the segment that begins with the earliest stop (lowest i). For each route r in the input file, print a line in the form: The nicest part of route r is between stops iand j However, if the maximal sum is not positive, your program should print:
Example
Input: 3 3 -1 6 10 4 -5 4 -3 4 4 -4 4 -5 4 -2 -3 -4 Output: The nicest part of route 1 is between stops 2 and 3 The nicest part of route 2 is between stops 3 and 9 Route 3 has no nice parts
Added by: Adrian Kuegel Date: 2005-07-27 Time limit: 4s Source limit:50000B Languages: All Resource: ACM ICPC World Finals 1997
A note
DEL command has the following format: DEL wildcard The actual wildcard as well as a full file name can be made up either of a name containing 1 up to 8 characters or of a name and extension, containing up to 3 characters. The point character . separates the extension from the file name. The extension can be empty and this is equivalent to a name without any extension (in this case a wildcard ends with a point). In a wildcard the characters ? and * can be used. A question mark substitutes exactly one character of the full file name excluding a point, an asterisk any sequence of characters (containing no points) even empty one. An asterisk can appear only at the last position of the name and the extension. MS-DOS system can permit maybe other wildcards but they can not be used in this task. File names and extensions consist only of Latin capitals and digits.
Input
The first line of the input is an integer M, then a blank line followed by M datasets. There is a blank line between datasets. Input data for each dataset contains a list of full file names without empty lines and spaces. Each name is written in a separate line of input data file and preceded with a control sign: - for delete or + for keep. Full file names are not repeated. The list comprises at least one file, and at least one file is marked to be deleted. There are no more than 1000 files.
Output
For each dataset, write to the first line of output the required DEL command (only one proposal) or IMPOSSIBLE if there is no solution. A space should separate "DEL" from wildcard. Print a blank line between datasets.
Example
Input: 1 -BP.EXE -BPC.EXE +TURBO.EXE
Added by: Adrian Kuegel Date: 2005-07-27 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Northeastern European Regional Contest 1996
forth. The illustration below demonstrates the process for R=3. tabular63
Input
The input will contain one or more data sets, one per line. Each data set consists of an integer value for R (between 2 and 10), an integer value for N (between 2 and 26), and the integer frequencies tex2html_wrap_inline91 through tex2html_wrap_inline93 , each of which is between 1 and 999. The end of data for the entire input is the number 0 for R; it is not considered to be a separate data set.
Output
For each data set, display its number (numbering is sequential starting with 1) and the average target symbol length (rounded to two decimal places) on one line. Then display the N letters of the source alphabet and the corresponding Huffman codes, one letter and code per line. Print a blank line after each test case. The examples below illustrate the required output format.
Example
Input: 2 2 3 4 0 5 5 7 6 5 10 20 25 40 4 2 2 1 1 20 5 8 5 12 6 9 10 23 18 25 9 12
Output: Set 1; A: B: C: D: E: Set 2; A: B: C: D: E: Set 3; A: B: C: D: E: F: G: average length 2.10 1100 1101 111 10 0 average length 2.20 11 00 01 100 101 average length 1.69 1 00 20 01 22 02 21
Set 4; A: B: C: D: E: F:
Added by: Adrian Kuegel Date: 2005-07-27 Time limit: 2s Source limit:50000B Languages: All Resource: ACM ICPC World Finals 1995
Input
The first line will contain the number of test cases (at most 20). Then there will be pairs of lines, the first one containing the numbers n (n will fit into a 32-bit signed integer and will be non-negative) and c (1 <= c <= 6), the second one the word w. w will only consist of the first c letters of the roman alphabet and will have at most 10000 characters.
Output
Print one line for each test case, consisting only of the number of words that are quite different from w. As this number can be quite large, you just have to output its remainder when dividing by 4242.
Example
Input: 3 3 3 ABC 4 4 CADDCAD 100 3 A Output: 10 13 2223
Added by: Robin Nittka Date: 2005-08-04 Time limit: 20s Source limit:50000B Languages: All Resource: self-invented
Input
First line of input contains number of test cases c (1<=c<=20). Each test case begins with k, number of vertices n and number of edges m (1<=k<=100, 1<=n<=10000, 0<=m<=1000000). Next n lines contain costs of the vertices, each of them is an integer from [-100000,100000]. Then m lines describing edges follow, each of them containing exactly two numbers representing its start and end vertices. Vertices are numbered from 1 to n.
Output
For each test case output cost of the cheapest k-path cover. When given graph has no k-path cover output NONE.
Example
Input: 1 4 6 9 5 4 6 10 2 3 1 2 1 4 2 4 3 2 4 3 5 4 6 3 5 6
6 5 Output: 33
Added by: Pawel Gawrychowski Date: 2005-08-08 Time limit: 10s Source limit:50000B Languages: All Resource: ONTAK 05
Q W S A G T T L F J L Q T I E
L A A T I
R C L Q A X L P
V B U Q K C C E L B W O C A
K A Z X V M R W A L A C N K A Z X K P T C B T R O P E E W S M L P
M A P P I Z B
O T I C
G K L S E W H J U P
A L
O E
K O R
O R J
Q W R N J
O A A G J R
K M U S T V I S L L S
A E Z F W
K R Q E I Q O P L P
O L O A O Q P P
C B P S
U C A J S
P O U T
M T
O U Y T R F O I
G M M L
K I
U I
X S
10 W A H C P 11 E 12 L I
Y T G A K L
M N A H B V A O G N G J U A O E I O R B M L A L
A K H P L B G S M C L I
D T
K E N V C S W Q A Z G E J T G S K M N U T Q A C I
13 H O P 14 L O I
L P U F
M N C E I O
A X M O P
15 Q O A S D H O P 16 I O N I O I O I
E P N B U Y U Y O B X B H S W A S M O U T B I R T K G O S
A E L O J Y T J P
17 H P 18 L 19 P P
L N A Q W D R I M P T M L
N U Y M R T E
M N B B P F
A F
C O P L H A V A I
A N A L
Problem
Your task is to produce a program that given the word puzzle and words to be found in the puzzle, determines, for each word, the position of the first letter and its orientation in the puzzle. You can assume that the left upper corner of the puzzle is the origin, (0,0). Furthemore, the orientation of the word is marked clockwise starting with letter A for north (note: there are 8 possible directions in total).
Input
The first line of the input contains a number T <= 10 which indicates the number of test cases to follow. Each test case starts with a line consisting of three positive numbers: The number of lines of the word puzzle, 0 < L <= 1000, the number of columns, 0 < C <= 1000, and the number of words to be found, 0 < W <= 1000. The following L input lines, each consisting of C uppercase letters, contain the word puzzle. Then at last the W words are input one per line. You can assume that each word can be found exactly once in the word puzzle.
Output
For each test case your program should output W lines: For each word (using the same order as the words were input) print a triplet defining the coordinates, line and column, where the first letter of the word appears, followed by a letter indicating the orientation of the word according to the rules defined above. Each value in the triplet must be separated by one space only. Print one blank line between test cases.
Example
Input: 1 20 20 10 QWSPILAATIRAGRAMYKEI AGTRCLQAXLPOIJLFVBUQ TQTKAZXVMRWALEMAPKCW LIEACNKAZXKPOTPIZCEO FGKLSTCBTROPICALBLBC JEWHJEEWSMLPOEKORORA LUPQWRNJOAAGJKMUSJAE KRQEIOLOAOQPRTVILCBZ QOPUCAJSPPOUTMTSLPSF LPOUYTRFGMMLKIUISXSW WAHCPOIYTGAKLMNAHBVA EIAKHPLBGSMCLOGNGJML LDTIKENVCSWQAZUAOEAL HOPLPGEJKMNUTIIORMNC LOIUFTGSQACAXMOPBEIO QOASDHOPEPNBUYUYOBXB IONIAELOJHSWASMOUTRK HPOIYTJPLNAQWDRIBITG LPOINUYMRTEMPTMLMNBO PAFCOPLHAVAIANALBPFS MARGARITA ALEMA BARBECUE
Added by: Adrian Kuegel Date: 2005-08-10 Time limit: 15s Source limit:50000B Languages: All Resource: ACM Southwestern European Regional Contest 2002
Input
The input file consists of at most 10 blocks, each specifying a separate proposal for the equatorial bonfire. The first line of each block specifies the speed of fires advance in the degrees of longitude per hour. The next line contains the number of bonfires N <= 5000 along the equator. Each of the next N lines contains two numbers specifying the time and the location of a bonfire. The time is given in hours from 12:00am GMT (all times are positive), the location is given in the degrees of longitude (greater than -180 and less than or equal to 180). All numbers except N are given with precision of at most 2 decimal places. Every block is followed by an empty line. The last block is followed by an empty line and then a line containing -1.
Output
For every block in the input file, output a single line containing the time and coordinate of the last place to catch fire. The time and the coordinate should be in the same units and from the same range as input, but with precision of 3 decimal places. If there are multiple solutions, output the one which is the closest if you travel from the zero meridian east (i.e. in the positive direction).
Example
Input: 2 2 1 90 1 -90 10.0 3 1 40 2 45 6 -80 -1
Note that in the second case, the fire at 45 degrees actually starts 1.5 hours after 12:00am. This of course does does not prevent anybody from igniting it again 2 hours after 12:00am. Added by: Adrian Kuegel Date: 2005-08-11 Time limit: 10s Source limit:50000B Languages: All Resource: IPSC 2002
416. Divisibility by 15
Problem code: DIV15
There is a string containing only decimal digit characters. The length of the string is between 1 and 1000. Using characters of the string, you have to construct the maximum number which divides by fifteen without remainder. Each character of the string may not be used more than once.
Input
First line of input contains an integer t (1 <= t <= 90), equal to the number of testcases. Then descriptions of t testcases follow. Each testcase is described in a single line representing the source string.
Output
For each testcase output one line with the decimal representation of the maximum number. Leading zeroes should be omitted. If no number can be constructed, output a single word "impossible".
Example
Input: 1 02041 Output: 4200
Added by: Ivan Metelsky Date: 2005-08-25 Time limit: 2s Source limit:50000B Languages: All Resource: NEERC Western Subregion QF 2004
Input
First line of the input contains an integer t (1 <= t <= 45), equal to the number of testcases. Then descriptions of t testcases follow. First line of description contains the number of contracts N (1 <= N <= 100000, integer). Each of the next N lines describes one contract and contains integer numbers a i , b i , d i (1 <= a i , b i <= 10000; 1 <= d i <= 1000000000) separated by spaces. At least 90% of testcases will have 1 <= N <= 10000.
Output
For each testcase in the input your program should output one line with a single real number S. Here S is the minimum sum of money which the director needs to pay extra so that the programmer could perform all contracts in time. The number must have two digits after the decimal point.
Example
Input: 1 2 20 50 100 10 100 50 Output: 5.00
Added by: Ivan Metelsky Date: 2005-08-25 Time limit: 10s Source limit:50000B Languages: All Resource: NEERC Western Subregion QF 2004
418. Necklace
Problem code: NECKLACE
There are N points marked on a surface, pair (x i , y i ) is coordinates of a point number i. Lets call a necklace a set of N figures which fulfills the following rules. The figure #i consists of all such points (x, y) that (x - x i ) 2 + (y - y i ) 2 <= r i 2 , where r i >= 0. Figures #i and #(i+1) intersect (1 <= i < N). Figures #1 and #N intersect. All the rest pairs of figures do not intersect. Write a program which takes points and constructs a necklace.
Input
First line of input contains an integer t (1 <= t <= 45), equals to the number of testcases. Then descriptions of t testcases follow. The first line of the description contains one integer number N (2 <= N <= 100). Each of the next N lines contains two real numbers x i , y i (-1000 <= x i , y i <= 1000), separated by one space. It is guaranteed that at least one necklace exists for each testcase.
Output
For each testcase your program should output exactly N lines. A line #i should contain real number r i (0 <= r i < 10000). To avoid potential accuracy problems, a checking program uses the following rules. Figures #i and #j definitely do not intersect if r i + r j <= d ij - 10 -5 . Figures #i and #j definitely intersect if d ij + 10 -5 <= r i + r j . The case when d ij - 10 -5 < r i + r j < d ij + 10 -5 is decided in favour of a contestant. d ij equals sqrt((x i - x j ) 2 + (y i - y j ) 2 ) in the rules above.
Example
Input: 1 4 0 0 10 0 10 10 0 10 Output:
7 7 7 7
Added by: Ivan Metelsky Date: 2005-08-25 Time limit: 10s Source limit:50000B Languages: All Resource: NEERC Western Subregion QF 2004
Input
The first line of input contains the number of test cases c (1<=c<=100). Each test case consists of two integers a,b (0<=a+b<=500000).
Output
For each test case output the minimal number of swaps required to transpose an 2 a x2 b array. As it can be quite large, you have to output its remainder when divided by 1000003 (yes, its a prime number :).
Example
Input: 3 1 1 2 2 5 7 Output: 1 6 3744
Added by: Pawel Gawrychowski Date: 2005-09-03 Time limit: 30s Source limit:50000B Languages: All
Input
First line of input contains number of test cases c (1<=c<=40). Each test case begins with number of cities n, number of possible roads m and maximum degree d (1<=n<=1000, 0<=m<=100000, 0<=d<=100). Then m lines describing roads follow, each of them containing road endpoints x,y and its cost c (1<=x,y<=n, 0<=c<=10000).
Output
For each test case output the cost of building cheapest road network or NONE if it is impossible.
Example
Input: 4 4 5 0 1 2 1 1 3 1 1 4 2 2 3 2 3 4 1000 4 1 1 1 2 3 4 1 1 1 2 3 5 2 3 4 3 4 5 2 3 4 3 4 1 1 1 2 2 1000 2 1 1 2 2 1000
4 5 3
1 1 1 2 3
2 3 4 3 4
1 1 2 2 1000
Added by: Pawel Gawrychowski Date: 2005-10-07 Time limit: 6s Source limit:50000B Languages: All
Input
First line of input contains number of test cases c (1<=c<=400000). Each test case consists of two integers a,b (0<=a+b<=1000000).
Output
For each test case output minimal number of swaps required to transpose an 2ax2b array. As it can be quite large, you have to output its remainder when divided by 1000003 (yes, its a prime number :).
Example
Input: 3 1 1 2 2 5 7 Output: 1 6 3744
Added by: Pawel Gawrychowski Date: 2005-10-08 Time limit: 8s Source limit:50000B Languages: All
423. Assignments
Problem code: ASSIGN
Problem
Your task will be to calculate number of different assignments of n different topics to n students such that everybody gets exactly one topic he likes.
Input
First line of input contains number of test cases c (1<=c<=80). Each test case begins with number of students n (1<=n<=20). Each of the next n lines contains n integers describing preferences of one student. 1 at the ith position means that this student likes ith topic, 0 means that he definitely doesnt want to take it.
Output
For each test case output number of different assignments (it will fit in a signed 64-bit integer).
Example
Input: 3 3 1 1 1 1 1 1 1 1 1 11 1 0 0 1 1 1 1 1 1 0 0 1 1 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 1 0 1 1 0 0 1 0 1 1 1 0 1 0 0 0 11 0 1 1 1 0 0 1 1 1 1 0 1 0 1 0 1 1 0 0 1 0 0 1 0 1 0 1 0 1 0 1 1 0 0 1 1 0 1 0 0
0 1 0 1 0 0 1 0 1 0 1 0 1 0 0 0 1 1 0 0 0
0 0 0 0 1 1 0 0 1 0 1 1 1 0 1 0 1 1 1 1 0
0 1 1 1 0 0 1 0 0 1 1 0 1 0 0 0 0 1 1 1 0
0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0
0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 1 0 1 0
1 0 1 1 1 0 0 0 1 0 0 1 1 1 1 0 0 1 1 1 1
1 0 0 1 1 0 1 1 1 1 0 0 1 0 1 1 1 0 0 1 1
Added by: Pawel Gawrychowski Date: 2005-10-08 Time limit: 20s Source limit:50000B Languages: All
Input
There is no input.
Output
Your submission should consist of exactly two declarations as described above, separated by whitespace. Update: "Exactly two" means exactly two. Your code isnt allowed to define any other types; anything containing struct foo or typedef unsigned int is rejected. "Whitespace" includes newlines. NUL (\0) is not whitespace, but it isnt a valid token separator either.
Example
Output: typedef:struct{unsigned*aku;char*soku;}zan; typedef:struct{unsigned*aku;char*soku;}zan;
This example is invalid for the following reasons: typedef: is a syntax error aku and soku have the wrong type the two declarations are too similar Added by: Lukas Mai Date: 2005-10-17 Time limit: 20s Source limit:512B Languages: TEXT
Input
The first line of the input will specify an integer n indicating the number of problem instances to follow, one to a line. Each of the ensuing n lines will specify a pair of positive integers m,s separated by a single space, with 1 < m < 1000, s < 20. (For m,s in this range, there are fewer than 2^32 palindromes among the s-digit multiples of m.) Each line will terminate with an end-of-line.
Output
The output should indicate for each m,s, exactly how many s-digit positive palindromes are divisible by m, with one problem instance per line.
Example
Input: 5 3 1 25 3 12 4 30 3 81 6
Output: 3 2 7 0 0
Explanation: There are three positive 1-digit multiples of 3, namely, 3, 6, and 9; all 1-digit numbers are trivially palindromes. Among the 3-digit palindromes, 525 and 575 are multiples of 25. The 4-digit multiples of 12 that are palindromes are 2112, 2772, 4224, 4884, 6336, 6996, 8448. There are no
positive palindromic numbers ending in 0 (since we do not allow leading 0s). No 6-digit palindromes are divisible by 81. Added by: Sebastian Kanthak Date: 2005-10-26 Time limit: 5s Source limit:50000B Languages: All Resource: ACM Pacific Northwest Regional Contest 2003
515. Collatz
Problem code: CLTZ
Let N be a positive integer, Consider the following recurrence: f(1) = N and f(K) = (0.5 + 2.5 * (f(K-1) mod 2)) * f(K-1) + (f(K-1) mod 2) if K>1. For a given N you have to compute the smallest L for which f(L)=1 (such an L always exists for Ns in the input).
Input
Each line contains a positive integer N in decimal notation. You can be sure that N and all intermediate results are not bigger than 10^1888. Input terminated by EOF.
Output
For each number N in the input print one line with the value of L in decimal notation.
Example
Input: 1 2 321 1111111111111 111111111111111111111111111111111111111111111111111111111111 Output: 1 2 25 261 1296
Added by: Csaba Noszaly Date: 2005-04-25 Time limit: 8s Source limit:18000B Languages: All except: C99 strict Resource: Folklore
Input
The input file consists several test cases. Each case contains a word (W) not longer than 64 letters and one positive number (D). The letters of each word are in increasing order. Input terminated by EOF.
Output
For each case in the input file, the output file must contain all of the zig-zag permutations of W whose zig-zag serial is divisible by D, in increasing lexicographic order - one word per line. In the next line you have to print the total number of zig-zag permutations of W. There is no case that produces more than 365 lines of output. Print an empty line after each case.
Example
Input: j 1 abc 2 aaabc 1 aaabb 2 aaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbcccdd 123456
1 babacbcabacabadabababababababababadab 213216
Added by: Csaba Noszaly Date: 2005-05-05 Time limit: 8s Source limit:12345B Languages: All Resource: Folklore
526. Divisors
Problem code: DIV
Let N be a positive integer. In theory it is easy to decide if d(N) (the number of positive divisors of N including 1 and N) is prime or not. Your task is just a little bit harder: compute all N in [1,10^6] for which d(N)=p*q where p and q distinct primes.
Input
There is no input for this problem.
Output
To make the problem less io related write out only every 9-th of them, one per line.
Output: 50 99 162 ... 999524 999728 999927
Added by: Csaba Noszaly Date: 2005-05-16 Time limit: 4s Source limit:3333B Languages: All Resource: Folklore.
530. Divisors 2
Problem code: DIV2
Let N be a positive integer and d(N) be the number of positive divisors of N including 1 and N. Your task is to compute all N in [1,10^6] for which d(N)>3 and if M divides N then d(M) divides d(N) too.
Input
None.
Output
To make the problem less output related write out only every 108-th of them, one per line.
Example
Output: 267 511 753 ... 999579 999781 999977
Added by: Csaba Noszaly Date: 2005-05-24 Time limit: 9s Source limit:3333B Languages: All Resource: Folklore
Input
First line of input contains integer T (1 <= T <= 60) - the number of testcases. Then descriptions of T testcases follow. The description of the testcase consists of one line. The line contains two integer numbers N and B (1 <= N <= 40, 1 <= B <= 5) separated by one or more spaces.
Output
For each testcase in the input your program should output one line. This line should contain one integer number which is the remainder of integer division by 1 000 000 000 of the number of permutations whose degree of increase is B.
Example
Input: 1 3 2 Output: 4
Added by: Ivan Metelsky Date: 2005-11-07 Time limit: 15s Source limit:50000B Languages: All Resource: NEERC Western Subregion QF 2005
Input
The first line of the input is a positive integer t <= 20, denoting the number of rooms. The descriptions for the t rooms follow one after the other. Room Description: The first line of the room description is a positive integer n (n <= 10010), denoting the number of missing tile locations. This is followed by the n lines, one for each missing tile location. Each line contains two integers x y (0 <= x, y < 120), separated by a single space, representing the co-ordinates of the missing tile location.
Output
The output should consist of t lines, one for each room. The k th line in the output should be an integer m k , the minimum number of planks needed for the k th room.
Example
Input: 2 3 1 0 2 0 3 0 4 1 1 2 2
3 3 4 4 Output: 1 4 Added by: Kashyap KBR Date: 2005-12-08 Time limit: 8s Source limit:50000B Languages: All
Input
The first line of the input is a positive integer t <= 20, denoting the number of tables. The descriptions of the table follow one after the other. Table description: The first line of the description of the k th table contains a positive integer n (n <= 10010), the number of planks on it. This is followed by n lines containing the description of the planks. The description of each plank is a pair of integers a and b (0 <= a <= b <= 10000010), denoting the distance of the left end and right end of the plank from the left end of the table.
Output
The output must contain t lines , the k th line corresponding to the k th table. The output on the k th line must be an integer i k , the minimum number of nails required.
Example
Input: 2 3 1 5 3 5 2 4 2 1 4 4 5
Output: 1 1 Added by: Kashyap KBR Date: 2005-12-08 Time limit: 2s Source limit:50000B Languages: All
Input
The first line of the input contains a positive integer t <= 20, denoting the no. of test cases. The following 2t lines contain the value of X and Y for the cases. The description of the test cases follow one after the other. Line 2k contains the value of X for case k; (1 <= k <= t) Line 2k+1 contains the value of Y for case k; (1 <= k <= t). The no. of characters in X , Y will be <= 500010.
Output
The output must contain t lines, each line corresponding to a test case. The value on the k th line should be the value of M for the k th pair of X and Y.
Example
Input: 3 abc aabbcc abc bbccc abcdef abc Output: 2 0 0
Added by: Kashyap KBR Date: 2005-12-12 Time limit: 8s Source limit:50000B Languages: All
666. Con-Junctions
Problem code: VOCV
The city of Y-O is a network of two-way streets and junctions with the following properties: 1. There is no more than one street between each pair of junctions. 2. Every junction is connected to every other junction either directly via a street or through other junctions by a unique path. 3. When a light is placed at a junction, all the streets meeting at this junction are also lit. A valid lighting is a set of junctions such that if lights were placed at these, all the streets would be lit. An optimal lighting is a valid lighting such that it contains the least number of junctions. The task is divided into two subtasks: 1. Find the number of lights in an optimal lighting. 2. Find the total number of such optimal lightings in the city.
Input
The first line of the input contains a positive integer t <= 20, denoting the number of test cases. The description of the test cases follows one after the other. Network Description: The first line of description of a network consists of a positive integer n <= 100010 denoting the number of junctions in the network. Each junction is numbered with a unique integer between 1 and n. The following n-1 lines contain a pair of integers u v (1 <= u,v <= n) separated by a single space denoting that there is a street between junction u and junction v.
Output
The output must consist of t lines, the k th line corresponding to the k th network; (1 <= k <= t). The k th line must contain two integers separated by a single space. The first integer on the k th line must be the number of junctions in an optimal lighting of network k. The second integer must be N%10007, which is the remainder left by the number of optimal lightings when divided by 10007.
Example
Input: 2 4 1 2 2 3 3 4 3
1 2 1 3 Output: 23 11 Added by: Kashyap KBR Date: 2005-12-12 Time limit: 10s Source limit:50000B Languages: All except: NICE JAR NEM ST SCM qobi
Input
The first line of the input file is T (T <= 10), the number of test cases. Then descriptions of T test cases follow. The description of each test case consists of two lines. The first line contains a single integer N (1 <= N <= 1000). The second line contains N distinct integers from the set {1, 2, .., N}, the N-element permutation P.
Output
For each test case your program should write one line, containing a single integer - the minimum total cost of sorting.
Example
N=4 P = {4,1,3,2} Step 1, Choose 3-rd, P={4,1,2}, Q={3} , Cost=3 Step 2, Choose 1-st, P={1,2}, Q={3,4} , Cost=2 Step 3, Choose 2-nd, P={1}, Q={2,3,4} , Cost=6 Step 4, Choose 1-st, P={}, Q={1,2,3,4}, Cost=4 The total cost is 15. Another way to sort: Step 1, Choose 4-th, P={4,1,3}, Q={2} , Cost=4 Step 2, Choose 2-nd, P={4,3}, Q={1,2} , Cost=4 Step 3, Choose 2-nd, P={4}, Q={1,2,3} , Cost=6 Step 4, Choose 1-st, P={}, Q={1,2,3,4}, Cost=4 The total cost is 18.
Input: 1 4 4 1 3 2 Output: 15
Added by: Nguyen Minh Hieu Date: 2005-12-20 Time limit: 2s Source limit:10000B Languages: All except: C99 strict Resource: Romanian National Contest
Task
Write a program which reads the number of cities, distances between them and daily requests for beer, computes the minimal daily cost of transport, writes the result.
Input
There are multiple test cases. Their number is given in the first line of input. In the first line of each test case there is one integer n - the number of cities, 5 <= n <= 10 000. (We assume that cities are numbered along the highway, so that the neighbouring cities have subsequent numbers. Cities 1 and n are neighbours too.) In each of the following n lines there are two non-negative numbers separated by a single space. Numbers zi di written in the line (i+1) are respectively the demand for beer in the city i and the distance (in miles) from city i to the next city on the highway. The entire length of the highway is not greater than 1 000 000 miles. The demand for beer in each city is not greater than 1 000 tanks.
Output
For each test case your program should write only one line - exactly one integer equal to the minimal daily cost of transport.
Example
Input: 1 6 1 2 2 3 1 2 5 2 1 10
2 3 Output: 41
Added by: Pawe Dobrzycki Date: 2005-12-21 Time limit: 1s Source limit:50000B Languages: All Resource: VII Polish Olympiad in Informatics, Ist Stage
Input
The first line of input file is the integer number t ( 0 < t < 1002 ) , the number of test cases . Each test case in one line , the line contains three positive number N, H and M (N <= 32767, H<=60, M<=10).
Output
With each test case , write in one line , the total of different towers that can be founded.
Example
Input: 2 7 3 2 22 5 4 Output: 2 10 (* In the first test case , all the towers are : 2-1-2 , 2-3-2 . *)
Added by: Nguyen Minh Hieu Date: 2005-12-30 Time limit: 7s Source limit:7777B Languages: All Resource: ACM
Input
The first line of the input file is the integer number t ( 1 <= t <= 20 ), the number of test cases. Then t lines follow, each test case in one line; the line consists of a single integer N (10 <= N <= 10^9).
Output
For each test case: On the first line write the total number of different pairs of integers that satisfy the problem statement. On the following lines write all those pairs. Write one pair on a line in ascending order of the first integer in the pair. Each pair must be written in the following format X+Y=N Here X, Y, and N, must be replaced with the corresponding integer numbers. There should be exactly one space on both sides of + and = characters.
Example
Input: 2 302 11 Output: 5 251 + 51 275 + 27 276 + 26 281 + 21 301 + 01 1 10 + 1 =
= = = = = 11
Added by: Nguyen Minh Hieu Date: 2006-01-01 Time limit: 1s Source limit:10000B Languages: All except: C99 strict Resource: 2001-2002 ACM Northeastern European Regional Programming Contest
Input
The first line of input contains the number of test cases nTest (1<= nTest <= 10). Each test case contains: The first line contains the number of worker types - m and number of task types - n. The second line contains m positive integers: a(1), a(2), ..., a(m). The third line contains n positive integers: b(1), b(2), ..., b(n). Each of the next m lines contains n integers describing matrix C(i, j). Notes: 1 <= m, n <= 200; 1 <= a(i), b(i) <= 30000; 1 <= C(i, j) <= 10000. Sum of a(i) equals to sum of b(j).
Output
For each test case write the minimum cost in a separate line (it will fit in a signed 32-bit integer).
Example
Input: 2 3 4 3 6 7 2 5 1 8 1 2 3 4 8 7 6 5 9 12 10 11 4 4 1 3 5 7 2 4 2 8 1 4 7 3 4 7 5 3
5 7 8 3 5 3 6 8 Output: 110 54
Added by: Nguyen Dinh Tu Date: 2006-01-02 Time limit: 5s Source limit:50000B Languages: All Resource: Tran Quang Khai
Input
The first line of input contains the number of test cases nTest (1 <= nTest <= 10). Each test case contains: The first line contains n, k. (1 <= k <= n <= 15000) Each of the next n lines contains an integer of the sequence with value range from -30000 to 30000.
Output
For each test case write the minimum number M in a separate line.
Example
Input: 1 9 4 1 1 1 3 2 2 1 3 1 Output: 5
Added by: Nguyen Dinh Tu Date: 2006-01-02 Time limit: 44s Source limit:50000B Languages: All Resource: Viet Nam Olympiad in Informatic 2005, Day I
687. Repeats
Problem code: REPEATS
A string s is called an (k,l)-repeat if s is obtained by concatenating k>=1 times some seed string t with length l>=1. For example, the string s = abaabaabaaba is a (4,3)-repeat with t = aba as its seed string. That is, the seed string t is 3 characters long, and the whole string s is obtained by repeating t 4 times. Write a program for the following task: Your program is given a long string u consisting of characters a and/or b as input. Your program must find some (k,l)-repeat that occurs as substring within u with k as large as possible. For example, the input string u = babbabaabaabaabab contains the underlined (4,3)-repeat s starting at position 5. Since u contains no other contiguous substring with more than 4 repeats, your program must output the maximum k.
Input
In the first line of the input contains H- the number of test cases (H <= 20). H test cases follow. First line of each test cases is n - length of the input string (n <= 50000), The next n lines contain the input string, one character (either a or b) per line, in order.
Output
For each test cases, you should write exactly one interger k in a line - the repeat count that is maximized.
Example
Input: 1 17 b a b b a b a a b a a b a
a b a b Output: 4
since a (4, 3)-repeat is found starting at the 5th character of the input string. Added by: Hoang Hong Quan Date: 2006-01-05 Time limit: 18s Source limit:50000B Languages: All Resource: BOI 2004
Input
In the first line of the standard input is H- the number of test case (H <= 16). For each test case follow contains some lines, start with three integers: n, k, p (1 <= k <= n <= 100000, 1 <= p <= 500000), separated by single spaces. These denote respectively: the total number of cars, the number of cars that can remain on the floor at once and the length of the sequence of cars which Jasio will want to play with. Each of the following p lines contains one integer. These integers are the numbers of cars Jasio will want to play with (the cars are numbered from 1 to n ).
Output
For each test case, you should write only one integer - the minimal number of times his mother has to pick a car from the shelf.
Example
Input: For the following input data: 3 2 7 1 2
Added by: Hoang Hong Quan Date: 2006-01-08 Time limit: 8s Source limit:50000B Languages: All Resource: 12th Polish Olympiad in Informatics, stage 1
Input
T - the number of test cases, T<=50. For each test case: One line containing a binary number, describing the number of the place. The length of this string will equal N (it will be padded with leading zeroes if necessary). N<=30000.
Output
For each test case, output the index of a bomb, represented in the same format, as binary digits, whose length is exactly N.
Example
Sample Input: 3 111 100 1100
Sample Output: 100 110 1011 Added by: Prasanna Date: 2006-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T- number of test cases. T<=20; Each test case consists of one string, whose length is <= 1000
Output
For each test case output one number saying the number of distinct substrings.
Example
Sample Input: 2 CCCCC ABABA Sample Output: 5 9 Explanation for the testcase with string ABABA: len=1 : A,B len=2 : AB,BA len=3 : ABA,BAB len=4 : ABAB,BABA len=5 : ABABA Thus, total number of distinct substrings is 9. Added by: Prasanna Date: 2006-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T - number of test cases. For each test case : N D - where N is the number of agents, D is the maximal communication distance The i-th line, of the N-lines that follow gives the position of the i-th agent on the road currently.
Output
For each test case, output two integers; 1st - minimal time taken to unite if they move independently 2nd - minimal time taken to unite if they move sequentially Constraints: T<=20 1<=N,D<=100 ; Each agents initial position is between 0 and 1000.
Example
Sample Input: 2 4 3 10 20 30 35 5 3 1 2 3 4 30 Sample Output: 8 23 12 23 Added by: Prasanna Date: 2006-01-13 Time limit: 3s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T - the number of test cases; For each test case : N - total number of students in the class Matrix A of NxN characters, without space separation;
Output
For i-th test case output one line of the form "Class Room#i contains atleast A and atmost B liars", where A and B are the lower and the upper bounds on the number of liars respectively. If there is a paradoxical class room, instead of the above line, print "Class Room#i is paradoxical". Constraints: T<=50; Our class rooms contain atmost 70 students.
Example
Sample Input: 4 2 LL TT 3 TTT TTT TTT 4 TLLL LTLL
LLTL LLLT 5 TLTLT TTTTT LLTLL LLLLL TLTLT Sample Output: Class Room#1 is paradoxical Class Room#2 contains atleast 0 and atmost 3 liars Class Room#3 contains atleast 3 and atmost 4 liars Class Room#4 contains atleast 4 and atmost 4 liars Here a paradox occurs if a person cant be classified as a liar or a truth-speaker. Added by: Prasanna Date: 2006-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T-number of test cases NI Next is the NxN matrix of characters, N characters per line. All characters are between A-Z (only uppercase).
Output
For each test case output the corresponding string sought for in the master set.
Example
Sample Input: 2 3 18 DAA BDA BBD 3 18 DAA ADA AAD
Sample Output: DBBBD DADAD Explanation: Test case I: Master Set = { "DAAAD", "DADAD","DBBBD","DBDBD"} Test case II: Master Set = { "DAAAD","DAAAD","DADAD","DADAD"} Added by: Prasanna Date: 2006-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T - The number of test cases. In each test case : KN NxN matrix representing the costs of the tickets. The i-th line, j-th columns entry represents the cost of a ticket from city i to city j. The numbers are of course space separated. Constraints : T<=20 N<=50 K<=10 9 The cost of each ticket <= 100 Each element of the output matrix will fit into a 64-bit integer.
Output
For the i-th test case , 1st line is of the form "Region #i:". In the following N lines, output an NxN matrix where the j-th element of the i-th line represents the minimal cost to travel from city i to city j with taking atleast K flights. The numbers on a line must be separated by atleast one space. Output a blank line after each testcase (including the last one).
Example
Sample Input: 2 3 4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 10999 4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Sample Output: Region #1: 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Region #2: 10999 11000 11003 11004 11007 11008 11011 11012
Added by: Prasanna Date: 2006-01-13 Time limit: 2.5s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T - The number of test cases. For each test case : N S Y C // 1st line Next N lines two numbers W[i] and V[i] each.
Output
One integer, the maximum gain in gold for our King. This gain is the total amount of gold transported minus stitching charges. Constraints : 1<= S <= 1000 1<= Y <= 1000 000 000 1<= N <= 1000 1<= W[i] <= 100; (for all i) 1<= V[i] <= 18; The Output will fit into a 64-Bit integer. 1<=T<=20 All W[i] & V[i] are guaranteed to be either prime or equal to 1.
Example
Sample Input: 2 2 5 3 1 1 2 5 7 2 5 3 1 1 2
7 5 Sample Output: 6 17 Added by: Prasanna Date: 2006-01-13 Time limit: 2s Source limit:50000B Languages: All Resource: ByteCode 06
Input
T - the number of test cases; For each test case: 1st line contains one integer N (the number of lines to follow), one real P and one label L. Each of the N lines that follow consist of instructions (two labels).
Output
For each test case, output one line containing: "Expected number of times label L is executed is R", where L - is the label given in the input R - is the number of times the label is expected to be executed. It must be printed with exactly five decimal places. Constraints: T<=20 3<=N<=120. P lies between 0.01 and 0.99, i.e. no jump is 100% sure. Also you can assume no label occurs on the jump side, without being defined throughout the program. Each label is less than 10 characters in length. Also each line has a distinct label associated with it.
Example
Sample Input: 3 5 .5 B C start start start B C D C end end 5 .99 C start start A B B A C end end end 3 .5 label start start label label end end Sample Output: Expected number of times label B is executed is 4.00000 Expected number of times label C is executed is 1.00000 Expected number of times label label is executed is 2.00000 Added by: Prasanna Date: 2006-01-13 Time limit: 1s Source limit:50000B Languages: All Resource: ByteCode 06
Input
t - the number of test cases, then t test cases follow. Each test case takes the following form: The first line contains the number of rectangular barns - n. Each of the next n lines contains: Four space-separated integers A, B, C, and D, describing one barn. The lower-left corner of the barn is at (A,B) and the upper right corner is at (C,D).
Output
For each test case write a single integer that is the number of barns that can be expanded in a separate line
Example
Input: 1 5 0 2 2 7 3 5 5 8 4 2 6 4 6 1 8 6 0 0 8 1 Output: 2
Input/Output details: There are 5 barns. The first barn has its lower-left corner at (0,2) and its upper-right corner at (2,7), and so on.
Only two barns can be expanded --- the first two listed in the input. All other barns are each in contact with at least one other barn. Added by: Nguyen Dinh Tu Date: 2006-01-17 Time limit: 4s Source limit:50000B Languages: All Resource: USACO December 2005 Gold Division
Input
The first line of input contains the number of test cases - nTest. Each test case contains: The first line of each test cases contains two integers, L and N. L (3 <= L <= 200) is the number of locations and N (1 <= N <= 1000) is the number of requests. Locations are identified by the integers from 1 to L. Each of the next L lines contains L non-negative integers. The jth number in the line i+1 is the cost C(i,j), and it is less than 2000. The last of each test cases contains N integers, the list of the requests. A request is identified by the identifier of the location where the request occurs. Initially, the three service staff employees are located at location 1, 2 and 3, respectively.
Output
For each test case write the minimal total cost in a separate line.
Example
Input: 1 5 9 0 1 1 1 1 0 2 3 1 1 0 4 2 1 5 0 4 2 3 4 4 2 4 1 Output: 5
1 2 1 1 0 5 4 3 2 1
Added by: Nguyen Dinh Tu Date: 2006-01-17 Time limit: 10s Source limit:50000B Languages: All Resource: CEOI 2005, Day 1
Input
Input contains some test cases. Each test cases contains two lines, First is X and second is Y. Length of X <= 10000, Length of Y <= 1000.
Output
For each test cases, You should output exactly one integer is the minimum number of characters to be remove
Example
Input: ababaa aba Output: 1
Added by: Hoang Hong Quan Date: 2006-01-17 Time limit: 3s Source limit:50000B Languages: All Resource: A contest of Romanian
Input
T- number of test cases. T<=20; Each test case consists of one string, whose length is <= 50000
Output
For each test case output one number saying the number of distinct substrings.
Example
Input: 2 CCCCC ABABA Output: 5 9
Added by: Hoang Hong Quan Date: 2006-01-18 Time limit: 2s Source limit:50000B Languages: All Resource: Base on a problem in ByteCode06
Input
The first line of input contains integer T (1 <= T <= 500) - the number of testcases. Then descriptions of T testcases follow. The description of the testcase consists of one line. The line contains an integer number n (1 <= n <= 100 000).
Output
For each testcase in the input your program should output one line. This line should contain one integer number which is the number F(n) modulo 1 000 000 001.
Example
Input: 5 3 1 10 20 39 Output: 5 2 198 43776 971827200
Added by: Ivan Metelsky Date: 2006-01-19 Time limit: 15s Source limit:50000B Languages: All Resource: Based on a problem from www.test-the-best.by
Input
First line of the input contains an integer t (1 <= t <= 10 ), equal to the number of testcases. Then descriptions of t testcases follow. First line of description contains the number of competitors N . Each of the next N lines describes one competitor and contains integer numbers ai, bi, ci (1 <= ai, bi , ci <= N ) separated by spaces, the order of i-th competitors ranking in the first competition , the second competition and the third competition.
Output
For each test case in the input your program should output the number of excellent contestants in one line.
Note : Because the input is too large so we have 4 input files and the total time limit is 4s ( not 1s ). Example
Input: 1 3 1 2 3 2 3 1 3 1 2 Output: 3
Added by: Nguyen Minh Hieu Date: 2006-01-20 Time limit: 1s Source limit:10000B Languages: All Resource: Base on a problem from BOI
726. Promotion
Problem code: PRO
A large Bytelandian supermarket chain has asked you to write a program for the simulating costs of a promotion being prepared. The promotion has to follow the following rules: A customer who wants to participate in the promotion, writes on the receipt, paid by himself, his personal details and throws it into a special ballot box. At the end of every day of the promotion, two bills are taken out from the ballot box: first, the receipt amounting to the largest sum is chosen, then the receipt amounting to the smallest sum is chosen; The customer who has paid the largest sum gets a money prize equal to the difference between the sum on his bill and the sum on the bill amounting to the smallest sum. To avoid multiple prizes for one purchase, both bills selected according to the above rules are not returned to the ballot box, but all remaining bills still participate in the promotion. The turnover of the supermarket is very big, thus an assumption can be made, that at the end of every day, before taking out receipts amounting to the largest and the smallest sum, there are at least 2 receipts in the ballot box. Your task is to compute (on the basis of information about prices on receipts thrown into the ballot box on each day of promotion) what the total cost of prizes during the whole promotion will be. Write a program, which: reads from the standard input a list of prices on receipts thrown into the ballot box on each day of the promotion, computes the total cost of prizes paid in consecutive days of promotion, then writes the result to the standard output.
Input
The first line of the input contains one positive integer n (1 <= n <= 5000), which is the duration of promotion in days. Each of the next n lines consists of a sequence of non-negative integers separated by single spaces. Numbers in the (i+1)-th line of the file represent prices on receipts thrown into the ballot box on the i-th day of promotion. The first integer in the line is k, 0 <= k <= 10^5, the number of receipts on the day, and the next k numbers are positive integers standing for the sums on receipts; none of these numbers is larger than 10^6. The total number of bills thrown into the ballot box during the whole promotion does not exceed 10^6.
Output
The output should contain exactly one integer, equal to the total cost of prizes paid during the whole promotion.
Example
Input: 5 3 1 2 3 2 1 1 4 10 5 5 1 0 1 2 Output: 19
Added by: Walrus Date: 2006-01-24 Time limit: 1s-4s Source limit:50000B Languages: All Resource: VII Polish Olympiad In Informatics 2000, stage III
Input
The input will consist of at most 100 test cases. Each test case consists of a number N (the number of armies, 1 <= N <= 5000). The last test case is followed by a line containing 0.
Output
For each number N, you have to output the number of moves needed to move the armies to C 2 with the minimum number of steps.
Example
Input: 1 2 3 4 100 0 Output: 2 7 21 49 1299510268586153115889930564780511199231
Added by: Adrian Kuegel Date: 2006-01-29 Time limit: 10s Source limit:10000B Languages: All Resource: Codearena 2006
Input
Input data is read from the standard input and consists of three lines. The first line contains two space-separated integers, L1 and L2 (1 <= L1, L2 <= 2000), which denote the lengths of the two sequences. The second line contains L1 space-separated integers, which are the elements of the first sequence. The third line contains L2 space-separated integers, which are the elements of the second sequence. The elements of the sequences do not exceed 1000.
Output
Your program has to output one line on the standard output that contains only one number - the minimum total cost of the game as described above.
Example
Input: 3 2 1 2 3 1 2 Output: 2
Added by: VOJ problem setters Date: 2006-02-08 Time limit: 1s-2s Source limit:10000B Languages: All Resource: unknown
Input
t [the number of test graphs] > Graph: > n [1 <= n <= 1000 the number of graph vertices] > i m v 1<sub> v 2 ... v m [the list of m adjacent vertices to vertex i]
Output
For each test case output: > d<i> [diameter of the minimum diameter spanning tree]
Example
Input: 6 10 1 3 2 3 2 3 1 5 3 3 1 5 4 3 1 6 5 3 2 3 6 3 3 4 7 1 2 8 1 4 9 1 5 10 1 6 10 1 4 2 1 3 4 4 3 5 2 6 2 7 4 8 5 9 7
4 7 6 8 9 10
4 8 4 1 1 8 1 2 1
5 7 9 7 3 9 9 3 3 4 8 10 9
8 9 6 7 9 5 6 7 8 10
10 2 3 9 1 1 0 2 1 1 2 2 1 1 3 1 1 2 2 2 1 3 3 1 2 5 1 2 3 4 5
2 3 1 3 1
2 4 1 3 4 2 2 5 1 4
Output: 5 3 0 1 2 3
Added by: Bartomiej Kowalski Date: 2006-02-09 Time limit: 1s-25s Source limit:50000B Languages: All Resource:
Input
Input consists of several test cases. Each test case consists of two integers n (0 < n <= 32), d (0 <= d <= 16). Input is terminated a test case where n=0 and d=0, you must not process this test case.
Output
For each test case, print three integers, n, d and the number of different strictly n-ary trees of level d, in a single line. There will be a single space in between two integers of a line. You can assume that you would not be asked about cases where you had to consider trees that may have more than 2 10 nodes in a level of the tree. You may also find it useful to know that the answer for each test case will always fit in a 200 digit integer.
Example
Input: 2 0 2 1 2 2 2 3 3 5 0 0 Output: 2 0 1
2 2 2 3
1 2 3 5
1 3 21 58871587162270592645034001
Added by: Nguyen Van Quang Huy Date: 2006-02-14 Time limit: 1s Source limit:50000B Languages: All Resource: acm.uva.es
Input
A single integer to be converted to base -2
Output
A single integer with no leading zeroes that is the input integer converted to base -2. The value 0 is expressed as 0, with exactly one 0.
Example
Input: -13 Output: 110111
Added by: Nguyen Van Quang Huy Date: 2006-02-15 Time limit: 1s Source limit:50000B Languages: All Resource: USACO FEB06 Bronze Division
Input
Line 1: A single integer, N Lines 2..N+1: Line i+1 contains the value of treat v(i)
Output
The maximum revenue FJ can achieve by selling the treats
Example
Input: 5 1 3 1 5 2 Output: 43
Added by: Nguyen Van Quang Huy Date: 2006-02-15 Time limit: 1s Source limit:50000B Languages: All Resource: USACO FEB06 Gold Division
Input
Line 1: Two space-separated integers, N and B Lines 2..N+1: Each line contains B space-separated integers which are exactly 1..B sorted into some order. The first integer on line i+1 is the number of the cow is top-choice barn, the second integer on that line is the number of the ith cows second-choice barn, and so on. Line N+2: B space-separated integers, respectively the capacity of the first barn, then the capacity of the second, and so on. The sum of these numbers is guaranteed to be at least N.
Output
One integer, the size of the minimum range of barn rankings the cows give their assigned barns, including the endpoints
Example
Input: 6 4 1 2 3 4 2 3 1 4 4 2 3 1 3 1 2 4 1 3 4 2 1 4 2 3 2 1 3 2 Output: 2
Added by: Nguyen Van Quang Huy Date: 2006-02-16 Time limit: 2s Source limit:50000B Languages: All Resource: USACO FEB06 Gold Division
Input
Line 1: n (1<=n<=100000) Line 2: n numbers A 1 , A 2 , ... ,A n (1<=A i <=n)
Output
A single integer that is the length of the longest permutation
Example
Input: 5 4 1 3 1 2 Output: 3
Added by: Walrus Date: 2006-02-20 Time limit: 1s Source limit:50000B Languages: All Resource: A problem put forward by Mr Mircea Pasoi
Input
t - number of test cases [t <= 99], then t tests follow. Each test begins with 3 integers: x, y, z - the width, length and height of matrix [5 <= x, y, z <= 50]. Then there follows the description of x rectangular 2D matrixes of height y and width z. In total there are x*y*z integers, which absolute value does not exceed 10000.
Output
For each test case you should output 6 integers: x1, y1, z1, x2, y2, z2, where each triple (xi, yi, zi) defines one of the two opposite corners of submatrix, resulting in the maximum overheat. [1 <= x1 <= x2 <= x] [1 <= y1 <= y2 <= y] [1 <= z1 <= z2 <= z]
Example
Input: 1 5 5 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 -1 -10 -1 -1 -1 -10 -1 -1 -1 -10 -1 -1 -1 -10 -1 -1 -1 -10 -1 20 2 2 2 20 20 2 2 2 20 20 2 2 2 20 20 2 2 2 20 20 2 2 2 20 5 5 5 5 5
-1 -1 -1 -1 -1
10 10 10 10 10
Output: 3 1 1 4 5 5 Note: The maximum overheat for the example is equal to 295.
Added by: Roman Sol Date: 2005-04-11 Time limit: 15s Source limit:50000B Languages: All Resource: ZCon 2006
Input
t - number of test cases [t <= 100], then t tests follow. Each test starts with integer N - the number of given points [10 <= N <= 1000]. Then exactly N lines follow with 3 real numbers Xi, Yi, Zi in each of them, where [-10.0 <= Xi, Yi, Zi <= 10.0].
Output
For each test case you should output 2 real numbers: the surface area and volume of the hull with precision 0.01.
Example
Input: 1 10 0.00000 1.00000 0.00000 0.00000 1.00000 1.00000
Added by: Roman Sol Date: 2005-11-28 Time limit: 8s Source limit:50000B Languages: All Resource: ZCon 2006
Input
t - number of test cases [t <= 60] n k - [n - number of vertices (2 <= n <= 250), k - number of edges (1 <= k <= n*(n-1)/2)] then n integers follow (wi - weight of vertex i) [ 0 <= wi <= 2^31-1] then k pairs of integers follow, representing the edges between vertices (si sj denotes an edge between vertices i and j) [1 <= si, sj <= n]. It is known that the total weight of all vertices in the graph doesnt exceed 10^9.
Output
For each test case output MaxWeight - the weight of a maximum internally stable set of the given graph [ 0 <= MaxWeight <= 10^9].
Example
Input : 2 5 6 10 20 30 40 50 1 2 1 5 2 3 3 4 3 5
Added by: Roman Sol Date: 2005-03-22 Time limit: 35s Source limit:50000B Languages: All Resource: ZCon 2006
Task
Find one of the fastest ways for John using ferries and foot paths on islands. Assume that while walking John is always moving one BM (Bytelandian unit of length) per BH (Bytelandian unit of time). You can also assume that the ferry departures nearly immediately after John arrives the terminal, it will be enough to round up the walking time to the nearest integer.
Input
In the first line t - the number of tests, then for each test: in next line n - the number of islands. Description of each island is as follows:
name w h [island dimensions] b - [number of terminals] [description of each terminal in a form:] name x y [name of a terminal and its coordinates] F [number of restricted areas F<20] xl, yd, xr, yu [coordinates of each restricted area, 0 <=xl < xr<=250 0<=yd < yu<=250.]
All coordinates are nonnegative integers measured in BM according to upper left corner of an island.
You can assume that any two restricted areas are disjoint. After the description of all islands all ferry connections are given (each connection is bi-directional).
m [number of connections] [description of each connection] NB1 NW1 NB2 NW2 time [name of a first terminal, its island, the second respectively and communiaction time] ... [description follows] ... NBS NWS NBC NWC [start and goal terminal for John]
Output
For each test describe the shortest route for John from terminal NBS on NWS island to terminal NBC on NWC island in the following format:
case nr Y [nr - test number] T [travel time in BH] NBS NWS ... [consecutive terminals] ... NBC NWC [empty line] [consecutive tests]
If two consecutive terminals are located on the same island and John must take some walk you must give all middle point like in an example. [IMAGE]
Example
Input: 1 3 W1 8 7 2 Lindos 4 0 Kamejros 4 7 3 2 1 6 2 2 3 6 4 2 5 6 6 W2 14 12 2 Malia 14 1 Knossos 1 12 5 2 6 10 10 11 1 12 6 8 1 10 5 11 7 12 9 3 2 5 4 W3 1 1
Added by: ukasz Kuszner Date: 2006-03-15 Time limit: 40s Source limit:50000B Languages: All Resource: GUT Algorithm Analysis 2005
Input
The first line of the input data contains integer T (1 <= T <= 65) - the number of testcases. Then the descriptions of T testcases follow. The description of each testcase consists of 5 lines. The first line describes function F 1 and contains either sin or cos. The second and the third lines describe functions F 2 and F 3 respectively and have the same format as the first line. Next, the fourth line contains either min or max. If the line contains min than it is necessary to minimize criterion function, otherwise it is necessary to maximize criterion function. Finally, the fifth line contains parameter S value (3 <= S <= 1 000 000).
Output
For each testcase you should output one line into the output data. This line should contain one real number - the found value of the criterion function. Absolute error of your answer must not exceed 10 -10 .
Example
Input: 1 sin cos sin max 10 Output: 2.7787651403
Added by: Ivan Metelsky Date: 2006-04-27 Time limit: 90s Source limit:50000B Languages: All Resource: NEERC Western Subregion QF 2005
Input
The first line of the input data contains integer T (1 <= T <= 10) - the number of testcases. Then the descriptions of T testcases follow. First line of each testcase contains 2 integers N and M (0 < N <= 500, 0 <= M <= 3000). N is the number of vertexes and M is the number of edges. Then M lines describing edges follow, each of them contains two integers u, v representing an edge connecting u and v. Then an integer K, representing the number of nodes whose mark is known. The next K lines contain 2 integers u and p each, meaning that node u has a mark p. Its guaranteed that nodes wont duplicate in this part.
Output
For each testcase you should print N lines integer the output. The Kth line contains an integer number representing the mark of node K. If there are several solutions, you have to output the one which minimize the sum of marks. If there are several solutions, just output any of them.
Example
Input: 1 3 2 1 2 2 3 2 1 5 3 100 Output: 5 4 100
Added by: Thanh-Vy Hua Date: 2006-05-05 Time limit: 6s Source limit:10000B Languages: All Resource: Guo HuaYang
(we mark players which stand in the wrong direction with a minus) can do one move to
2 9 10 11
As perfect as he is he calculated a dance with a minimum number of moves. It works perfectly and now hes planning to do dancing performances with teams with more than 11 members. So he needs your help to find optimal dancing moves...
Input
Each testcase starts with the number of team members n (0<=n< 2200). The next lines represent the formation at the beginning and the expected formation at the end of the choreography.
Output
For each testcase output m, the minimal number of moves which are necessary to reach the expected formation. The next m+1 lines should represent one possible scenario of moves.
Example
Input: 11 -5 -4 -3 -8 -7 -6 1 -11 -10 -9 -2 1 2 3 4 5 6 7 8 9 10 11 11 1 2 3 -4 -5 -6 -7 -8 -9 10 11 11 9 8 7 6 5 4 3 2 10 1 0 Output: 3 Steps -5 -4 -3 -8 -7 -6 +1 -11 -10 -9 -2 -5 -4 -3 -8 -7 -6 +1 +2 +9 +10 +11 -5 -4 -3 -2 -1 +6 +7 +8 +9 +10 +11 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 5 Steps +1 +2 +3 -4 -5 -6 -7 -8 -9 +10 +11 +1 +2 -3 -4 -5 -6 -7 -8 -9 +10 +11 +1 -2 -3 -4 -5 -6 -7 -8 -9 +10 +11 +1 -2 -3 -4 -5 -6 -7 -8 -9 -11 -10 +11 +9 +8 +7 +6 +5 +4 +3 +2 -1 -10 +11 +9 +8 +7 +6 +5 +4 +3 +2 +10 +1
Added by: Simon Gog Date: 2006-05-11 Time limit: 1s-2s Source limit:50000B Languages: All
Input
The first line of input contains the number N and the next line contains the numbers that form the sequence. After that follows the number M and then M lines, each containig 2 integers X and Y, meaning that new value of the X-th element of the sequence is Y and that you should count the number of inversions in the modified sequence.
Output
Output must contain M lines, the i-th line of output containg the number of inversions in the sequence after the first i operations.
Example
Input: 10 2 6 6 4 7 6 3 5 9 1 7 8 8 5 1 5 6 10 5 7 1 10 10 4 6 Output: 17 18 16 13 14 8 6
Added by: Gogu Marian Date: 2006-05-31 Time limit: 1s-5s Source limit:50000B Languages: All Resource:
Second base in codon First base in codon U C A G U C A G U C A G U C A G U C A G Phe Ser Tyr Cys Phe Ser Tyr Cys U Leu Ser --Leu Ser --Leu Pro His Leu Pro His C Leu Pro Gln Arg Leu Pro Gln Arg Ile Ile A Ile Thr Lys Arg Met Thr Lys Arg Val Ala Asp Gly Val Ala Asp Gly G Val Ala Glu Gly Val Ala Glu Gly Thr Asn Ser Thr Asn Ser --Trp Arg Arg Third base in codon
The input for this program consists of strands of DNA sequences, one strand per line, from which the protein it generates, if any, should be determined and output. The given DNA strand may be either the primary or the complementary DNA strand, and it may appear in either forward or reverse order, and the start and termination sequences do not necessarily appear at the ends of the strand. For example, a given input DNA strand to form the protein Ser-Ile-Lys could be any of ATACTCGTAATTCACTCC, CCTCACTTAATGCTCATA, TATGAGCATTAAGTGAGG, or GGAGTGAATTACGAGTAT. The input file will be terminated by a line containing a single asterisk character. You may assume the input to contain only valid, upper-case, DNA nucleotide base letters (A, C, G, and T). No input line will exceed 255 characters in length. There will be no blank lines or spaces in the input. Some sequences, though valid DNA strands, do not produce valid protein sequences; the string "*** No translatable DNA found ***" should be output when an input DNA strand does not translate into a valid protein.
Input: ATACTCGTAATTCACTCC CACCTGTACACAGAGGTAACTTAG TTAATACGACATAATTAT GCCTTGATATGGAGAACTCATTAGATA AAGTGTATGTTGAATTATATAAAACGGGCATGA ATGATGATGGCTTGA * Output: Ser-Ile-Lys Cys-Leu-His Ser-Tyr *** No translatable DNA found *** Leu-Asn-Tyr-Ile-Lys-Arg-Ala Met-Met-Ala
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 1995
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 1995
4. A space. 5. A string containing letters and/or the character *; a letter indicates a shipping line to that planet, and a * indicates a willingness to open a ThrustoZoom shipping line to Earth. For each galaxy description, output a single line which reads "Import from P" where P is the letter of the planet with the most valuable export, once shipping fees have been taken into account. (If more than one planet have the same most valuable export value then output the plant which is alphabetically first). A sample input file is shown here:
1 F 0.81 5 E 0.01 D 0.01 C 0.01 A 1.00 B 0.01 10 S 2.23 A 9.76 K 5.88 E 7.54 M 5.01 G 7.43 I 6.09 C 8.42 O 4.55 Q 3.21 * *A A* *A EDCB A* Q* C MI GC OK IE KG EA QM SO
The following output file should be produced from the above sample input:
Import from F Import from A Import from A
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 1995
The following output file should be produced from the above sample input:
120 78 1765 7CA ERROR 11001 12D687 D071
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 1995
When the first three paragraphs of this problem description are used as input, the output should appear as shown here:
Analysis for Letter Sequences of Length 1 ----------------------------------------Frequency = 201, Sequence(s) = (E) Frequency = 112, Sequence(s) = (T) Frequency = 96, Sequence(s) = (S) Frequency = 90, Sequence(s) = (R) Frequency = 84, Sequence(s) = (N) Analysis for Letter Sequences of Length 2 ----------------------------------------Frequency = 37, Sequence(s) = (TH) Frequency = 33, Sequence(s) = (EN) Frequency = 27, Sequence(s) = (HE) Frequency = 24, Sequence(s) = (RE) Frequency = 23, Sequence(s) = (NC) Analysis for Letter Sequences of Length 3 ----------------------------------------Frequency = 24, Sequence(s) = (THE) Frequency = 21, Sequence(s) = (ENC,EQU,QUE,UEN) Frequency = 12, Sequence(s) = (NCE,SEQ,TER) Frequency = 9, Sequence(s) = (CES,FRE,IVE,LET,REQ,TTE) Frequency = 8, Sequence(s) = (ETT,FIV) Analysis for Letter Sequences of Length 4 ----------------------------------------Frequency = 21, Sequence(s) = (EQUE,QUEN) Frequency = 20, Sequence(s) = (UENC) Frequency = 12, Sequence(s) = (ENCE,SEQU) Frequency = 9, Sequence(s) = (FREQ,NCES,REQU) Frequency = 8, Sequence(s) = (ETTE,FIVE,LETT,TTER) Analysis for Letter Sequences of Length 5 ----------------------------------------Frequency = 21, Sequence(s) = (EQUEN) Frequency = 20, Sequence(s) = (QUENC) Frequency = 12, Sequence(s) = (SEQUE,UENCE) Frequency = 9, Sequence(s) = (ENCES,FREQU,REQUE) Frequency = 8, Sequence(s) = (ETTER,LETTE)
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 1995
872. Mark-up
Problem code: MARKUP
Mark-up languages are computer languages that assist in the formatting of text files. Special keywords are used to mark the text to allow control of fonts, page styles, paragraph styles, etc. TeX, troff, and HTML are examples of mark-up languages. Spell checking can be difficult to adapt to these special texts. In general, special processors or spell checkers must be created in order to accommodate mark-up languages. A special processor would recognize the mark-up language and strip it from the text so that the plain text could then be processed by a spell checker. For this problem, you are to write such a processor for a small mark-up language so that the output of your program will be the plain text without the mark-ups. The mark-up language to consider is one which allows the modification of fonts within the text. Each markup command will be preceded by a \ character. If the letter following the \ character is not a recognized command from the table below then the character following the \ is printed as part of the plain text. For instance, the mark-up \\ can be used to print a single \.
\b \i \s
toggle bold font on/off (default state is off) toggle italics font on/off (default state is off) set font size; the s is immediately followed by an optional number; if the number is missing then the command will restore the previous size toggle processing of mark-ups on/off; if processing is toggle off then mark-ups are considered to be literal text (default state is on)
\*
The number following the \s command can have a decimal point so 12, 9.5, 11., and .5 should all be recognized as valid numbers. The input file will be plain text containing mark-ups from the language above. At the start, processing of mark-ups should be on. The file should be processed until the end-of-file is encountered. A sample input file is shown here:
\s18.\bMARKUP sample\b\s \*For bold statements use the \b command.\* If you wish to \iemphasize\i something use the \\i command. For titles use \s14BIG\s font sizes, 14 points usually works well. Remember that all of the commands toggle except for the \\s command.
The following output file should be produced from the above sample input:
MARKUP sample For bold statements use the \b command. If you wish to emphasize something use the \i command. For titles use BIG font sizes, 14 points usually works well. Remember that all of the commands toggle except for the \s command.
Added by: Wanderley Guimaraes Date: 2006-06-01 Time limit: 1s Source limit:50000B Languages: All Resource: 1995 ACM Mid-Central Programming Contest
898. Transmitters
Problem code: TRANSMIT
In a wireless network with multiple transmitters sending on the same frequencies, it is often a requirement that signals dont overlap, or at least that they dont conflict. One way of accomplishing this is to restrict a transmitters coverage area. This problem uses a shielded transmitter that only broadcasts in a semicircle. A transmitter T is located somewhere on a 1,000 square meter grid. It broadcasts in a semicircular area of radius r. The transmitter may be rotated any amount, but not moved. Given N points anywhere on the grid, compute the maximum number of points that can be simultaneously reached by the transmitters signal. Figure 1 shows the same data points with two different transmitter rotations. [IMAGE] All input coordinates are integers (0-1000). The radius is a positive real number greater than 0. Points on the boundary of a semicircle are considered within that semicircle. There are 1-150 unique points to examine per transmitter. No points are at the same location as the transmitter. Input consists of information for one or more independent transmitter problems. Each problem begins with one line containing the (x,y) coordinates of the transmitter followed by the broadcast radius, r. The next line contains the number of points N on the grid, followed by N sets of (x,y) coordinates, one set per line. The end of the input is signalled by a line with a negative radius; the (x,y) values will be present but indeterminate. Figures 1 and 2 represent the data in the first two example data sets below, though they are on different scales. Figures 1a and 2 show transmitter rotations that result in maximal coverage. For each transmitter, the output contains a single line with the maximum number of points that can be contained in some semicircle.
Input: 25 25 3.5 7 25 28 23 27 27 27 24 23 26 23 24 29 26 29 350 200 2.0 5 350 202 350 199 350 198 348 200 352 200 995 995 10.0 4 1000 1000
999 998 990 992 1000 999 100 100 -2.5 Output: 3 4 4
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
899. Ws Cipher
Problem code: WSCIPHER
Weird Wallys Wireless Widgets, Inc. manufactures an eclectic assortment of small, wireless, network capable devices, ranging from dog collars, to pencils, to fishing bobbers. All these devices have very small memories. Encryption algorithms like Rijndael, the candidate for the Advanced Encryption Standard (AES) are demonstrably secure but they dont fit in such a tiny memory. In order to provide some security for transmissions to and from the devices, WWWW uses the following algorithm, which you are to implement. Encrypting a message requires three integer keys, k 1 , k 2 , and k 3 . The letters [a-i] form one group, [j-r] a second group, and everything else ([s-z] and underscore) the third group. Within each group the letters are rotated left by k i positions in the message. Each group is rotated independently of the other two. Decrypting the message means doing a right rotation by k i positions within each group. Consider the message the_quick_brown_fox encrypted with k i values of 2, 3 and 1. The encrypted string is _icuo_bfnwhoq_kxert. The figure below shows the decrypting right rotations for one character in each of the three character groups. [IMAGE] Looking at all the letters in the group [a-i] we see {i,c,b,f,h,e} appear at positions {2,3,7,8,11,17} within the encrypted message. After a right rotation of k 1 =2, these positions contain the letters {h,e,i,c,b,f}. The table below shows the intermediate strings that come from doing all the rotations in the first group, then all rotations in the second group, then all the rotations in the third group. Rotating letters in one group will not change any letters in any of the other groups.
[a-i], k 1 = 2 Encrypted: Decrypted: Changes: _icuo_bfnwhoq_kxert _heuo_icnwboq_kxfrt
^^ ^^ ^ ^
All input strings contain only lowercase letters and underscores(_). Each string will be at most 80 characters long. The k i are all positive integers in the range 1-100. Input consists of information for one or more encrypted messages. Each problem begins with one line containing k 1 , k 2 , and k 3 followed by a line containing the encrypted message. The end of the input is signalled by a line with all key values of 0. For each encrypted message, the output is a single line containing the decrypted string.
Input: 2 3 1 _icuo_bfnwhoq_kxert 1 1 1 bcalmkyzx 3 7 4 wcb_mxfep_dorul_eov_qtkrhe_ozany_dgtoh_u_eji 2 4 3 cjvdksaltbmu 0 0 0 Output: the_quick_brown_fox abcklmxyz the_quick_brown_fox_jumped_over_the_lazy_dog ajsbktcludmv
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
Each undivided window must have space for at least one character inside. Hence each tree of splits will be associated with a minimum window size. Windows 1-4 are minimum sized windows for Trees 1-4. Each window illustrates the fact that even in a minimum sized window, not all undivided windows contain only one character. Consider Tree 4 and Window 4. The main window is split into a left window with Tree 2 and right window with Tree 3. The left window is like Window 2, but the right window is not just like Window 3. The heights of left and right subwindows must match, so the right window must be stretched. The stretching rule depends on a definition of the size of windows. For dimension calculations it is easiest to imagine that a window contains its interior and a half character wide boundary on all sides, so the total dimensions of a window are one more than the dimensions of the interior. Hence the minimum dimensions of a window are 2 by 2, since a window must contain one character inside, and we add one for the boundary. This definition also means that the sum of the widths of left and right subwindows is the width of their enclosing window. The sum of the heights of top and bottom subwindows is the height of their enclosing window. The right window in Window 4 must be stretched to match the height 10 of the left window. The right window is split into a top with tree P having minimum height 2 and a bottom with tree -|Q|RST having minimum height 4. The rule for the dimensions in the stretched window is that the heights of the subwindows expand in proportion to their minimum heights, if possible. Some symbols may help here: Let D = 10 be the height of the combined stretched window. We want to determine D 1 and D 2 , the stretched heights of the top and bottom subwindow. Call the corresponding minimum dimensions d = 6, d 1 = 2, and d 2 = 4. If the window were expanded from a total height d to D in proportion, we would have D 1 = d 1 *(D/d) = 2*(10/6) = 3.333...and D 2 = d 2 *(D/d) = 6.666.... Since the results are not integers we increase D 1 to 4 and decrease D 2 to 6. There is a similar calculation for the bottom window with tree -|Q|RST. It is further subdivided into a top with tree |Q|RS and a bottom with tree T, each having minimum height 2 = d 1 = d 2 . The heights need to add up to D = 6, so they are increased proportionally to D 1 = D 2 = 2*(6/4) = 3 (exact integers). The final dimensions of an enclosing window are always determined before the final dimensions of its subwindows. In this example only heights needed to be apportioned. If all horizontal and vertical splits were interchanged in this example, producing a tree -|-|ABC|D-E|FG|P|-Q-RST, then widths would be apportioned correspondingly, as shown in the third part of the sample output below. If the proportion calculations do not work out to integers, it is always the top or left subwindow whose dimension is increased to the next integer. The first line of input contains one integer, which is the total number of preorder traversals describing window structures. This line is followed by one line for each preorder traversal. Each preorder traversal will contain appropriate dividers | and - and from 1 to 26 uppercase letters. For each preorder traversal, print the number of the preorder traversal on one line followed by the minimum sized window grid that the traversal could represent. Contrary to the general contest output conventions, there may be more than one consecutive blank in this output, but the other general rules for contest output are followed. The total number of rows or columns in output grids will be no more
than 53.
Input: 3 |-MCR |-|-ABC-D|E-FG-P-|Q|RST -|-|ABC|D-E|FG|P|-Q-RST Output: 1 M-R-* | | | C-* | | | | *-*-* 2 A-C-P-----* | | | | B-* | | | | | | D-*-Q-R-S-* | | | | | E-F-* | | | | | T-*-*-* | G-* | | | | | *-*-*-----* 3 A-B-D-E---* | | | | | C-*-* F-G-* | | | | | P---Q-*T*-* | | | | | R--* | | | | | | S--* | | | | | *---*--*--*
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
Each index entry contains a primary entry followed by zero or more secondary entries, which begin with a +. Entries will normally be followed by a list of page references, but a primary entry might not be if at least one secondary entry is present (as is the case with mango, above). Primary entries are sorted, and secondary entries following a primary entry are also sorted. Sorting is case-insensitive. Page references for an entry are in ascending order and do not include duplicates. (A duplicate could occur if there are two or more identical entries on the same page.) Your task is to read a document that has index information embedded within it and produce the index. Documents consist of one or more lines of ASCII text. The page number starts at 1, and the character & indicates the start of a new page (which adds 1 to the current page number). Index entries are indicated by a marker, which in its most elaborate form has the following syntax: {text%primary$secondary} Here text is the text to be indexed, primary is an alternative primary entry, and secondary is a secondary entry. Both %primary and $secondary are optional, but if both are present they must appear in the order given. If primary is present then it is used as the primary entry, and if not then text is used as the primary entry. If secondary is present then the marker adds a page reference for that secondary entry; otherwise it adds a page reference for the primary entry. A single marker cannot add a page reference for both a primary and secondary entry. Here are examples of each of the four possible types of marker, which correspond to four of the entries in the sample index above.
... ... ... ... his {lumbago} was acting up, so ... {Lenny%Lenny Kravitz} lit up the crowd with his version of ... Monty Python often used the {larch$Monty Python and} in ... when storing {mangos%mango$storage of}, be sure to ...
The input consists of one or more documents, followed by a line containing only ** that signals the end of the input. Documents are implictly numbered starting with 1. Each document consists of one or more lines of text followed by a line containing only *. Each line of text will be at most 79 characters long, not counting end-of-line characters. For document i, output the line DOCUMENT i
followed by the sorted index using the exact output format shown in the examples. Be sure to read Notes to Teams, which has general formatting guidelines that pertain to all problem input files, including this one. Also note: A document will contain at most 100 markers, with at most 20 primary entries. A primary entry will have at most 5 secondary entries. An entry will have at most 10 unique page references (not including duplicates). The character & will not appear anywhere within a marker, and will appear at most 500 times within a document. The character * is used only to signal the end of a document or the end of the input. The characters {, }, %, and $ will only be used to define markers, and will not appear in any text or entries. A marker may span one or more lines. Every end-of-line within a marker must be converted to a single space. A space within a marker (including a converted end-of-line) is normally included in the text/entry, just like any other character. However, any space that immediately follows {, immediately precedes }, or is immediately adjacent to % or $ must be ignored. The total length of a marker, measured from the opening { to the closing }, and in which all embedded end-of-lines are converted to spaces, will be at most 79 characters.
Input: Call me Ishmael. * One {fish $unary}, two {fish$ binary},&red {fish $ scarlet}, blue {fish$ azure}. & By { Dr. Seuss }. * This is a {simple } & & { document} that &{ simply %simple $adverb } & {illustrates %vision} &&&&& one {simple-minded% simple} {Judge}s {vision} for what a {document } might { look % vision} like. * ** Output: DOCUMENT 1 DOCUMENT 2 Dr. Seuss, 3 fish + azure, 2 + binary, 1 + scarlet, 2 + unary, 1 DOCUMENT 3 document, 3, 10 Judge, 10 simple, 1, 10 + adverb, 4 vision, 5, 10
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
902. Hangover
Problem code: HANGOVER
How far can you make a stack of cards overhang a table? If you have one card, you can create a maximum overhang of half a card length. (Were assuming that the cards must be perpendicular to the table.) With two cards you can make the top card overhang the bottom one by half a card length, and the bottom one overhang the table by a third of a card length, for a total maximum overhang of 1/2 + 1/3 = 5/6 card lengths. In general you can make n cards overhang by 1/2 + 1/3 + 1/4 + ... + 1/(n + 1) card lengths, where the top card overhangs the second by 1/2, the second overhangs tha third by 1/3, the third overhangs the fourth by 1/4, etc., and the bottom card overhangs the table by 1/(n + 1). This is illustrated in the figure below. [IMAGE]
Input
The input consists of one or more test cases, followed by a line containing the number 0.00 that signals the end of the input. Each test case is a single line containing a positive floating-point number c whose value is at least 0.01 and at most 5.20; c will contain exactly three digits.
Output
For each test case, output the minimum number of cards necessary to achieve an overhang of at least c card lengths. Use the exact output format shown in the examples.
Input: 1.00 3.71 0.04 5.19 0.00 Output: 3 card(s) 61 card(s) 1 card(s) 273 card(s)
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
The ink appears to be normal black ink, but just underneath the surface DoubleVision adds a special polymer that can be detected by an infrared scanner. A human sees the black ink but not the polymer, and a machine sees the polymer but not the black ink. The only problem is that the polymer is much more expensive than the ink, so DoubleVision wants to use as little of it as possible. They have discovered that with many fonts, each symbol can be uniquely identified by at most two pixels. By only adding the polymer to one or two pixels per symbol, they drastically lower costs while still ensuring 100% accuracy in their scanners. The font shown above has this property; pixels that uniquely identify each letter are highlighted with #. (There are other choices that would work as well.)
.#. #.o o.o o.o .o. .o. .#. .o. .o. .o. #o. ..o .o. #.. ooo oo. ..o #o. ..o #o. o.# o.o ooo ..o ..o
Your job is to write a program to determine if a given font has this property, and if so highlight the pixels. The input consists of one or more test cases, followed by a line containing 0 0 0 (three zeros) that signals the end of the input. Each test case begins with a line containing three positive integers n, r, and c, separated by a space: n is the number of symbols in the font, r is the number of rows in each grid, and c is the number of columns in each grid. The next r lines contain the image of each symbol, using the exact format shown in the examples: a dot . represents an empty part of the grid, a lowercase o represents a pixel, and adjacent grids are separated by a space. The total width of each line will be at most 79 characters (not counting end-of-line characters), and r will be at most 10. The test cases are implicitly numbered starting with 1. For test case i, first output a line that says Test i. Then determine if each symbol can be uniquely identified with one or two pixels. If not, output a line with the word impossible. Otherwise, output the font in the same format except that the identifying pixels for each symbol are replaced with #.
In general there may be several different pixels or pixel pairs that uniquely identify a symbol. To ensure that the output is unique, we add the following definition and rules. When comparing two pixels, the topmost-leftmost pixel is the one closest to the top of the grid. If both pixels are on the same row, then the topmost-leftmost is the one closest to the left of the grid. If one pixel will work, highlight the topmost-leftmost pixel that works. Never highlight a two-pixel solution if a one-pixel solution is possible. If two pixels are needed, highlight the pair with the topmost-leftmost pixel. If two or more pairs have the same topmost-leftmost pixel, highlight the one with the topmost-leftmost other pixel.
Input: 3 2 2 oo oo .o o. .o o. 3 2 2 oo oo .o o. .o oo 5 5 3 .o. .o. oo. o.o .o. ..o o.o .o. .o. o.o .o. o.. .o. .o. ooo 1 2 4 .o.. ...o 0 0 0 Output: Test 1 impossible Test 2 #o #o .o #. .# ## Test 3 .#. .o. #o. #.o .#. ..o o.o .o. .o. o.o .o. #.. .o. .o. ooo Test 4 .#.. ...o
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
The input will contain one or more grids. Each grid is preceded by a line containing the number of rows and columns in the grid and the row and column of the mouse click. All numbers are in the range 1-20. The rows of the grid follow, starting on the next line, consisting of . and X characters. The end of the input is indicated by a line containing four zeros. The numbers on any one line are separated by blanks. The grid rows contain no blanks. For each grid in the input, the output contains a single line with the perimeter of the specified object.
Input: 2 2 2 2 XX XX 6 4 2 3 .XXX .XXX .XXX ...X ..X. X... 5 6 1 3 .XXXX. X....X ..XX.X .X...X ..XXX. 7 7 2 6 XXXXXXX XX...XX X..X..X X..X... X..X..X X.....X XXXXXXX 7 7 4 4 XXXXXXX XX...XX X..X..X X..X... X..X..X X.....X XXXXXXX 0 0 0 0 Output: 8 18 40 48 8
Added by: Wanderley Guimaraes Date: 2006-06-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Mid Central Regionals 2001
Input
The first line of the input contains an integer t (1 <= t <= 10 ), equal to the number of testcases. Then descriptions of t testcases follow. The first line of the description contains 6 integer numbers N, M, A, B, C, D. Then N lines follow, line i contains one integer number P[i][1].
Output
For each test case, your program should output the maximal difference between two matrices (in a separate line).
Example
Input: 1 3 3 3 3 1 1 1 2 3 Output: 260
Added by: Nguyen Dinh Tu Date: 2006-08-18 Time limit: 5s Source limit:50000B Languages: All Resource: Base on a problem in IOI 2006 .
Input
The first line of input contains an integer t, the number of test cases (t <= 25). t test cases follow. For each test case: In the first line there is an integer N (N <= 10000) In the next N-1 lines, the i-th line describes the i-th edge: a line with three integers a b c denotes an edge between a, b of cost c (c <= 100000) The next lines contain instructions "DIST a b" or "KTH a b k" The end of each test case is signified by the string "DONE". There is one blank line between successive tests.
Output
For each "DIST" or "KTH" operation, write one integer representing its result. Print one blank line after each test.
Example
Input: 1 6 1 2 1 2 4 1 2 5 2 1 3 1 3 6 2 DIST 4 6 KTH 4 6 4 DONE Output: 5 3
Added by: Thanh-Vy Hua Date: 2006-08-27 Time limit: 2s Source limit:15000B Languages: All Resource: Special thanks to Ivan Krasilnikov for his alternative solution
Input
The first line of input contains an integer t, the number of maps (t <= 5). t maps follow. For each map: In the first line there are 2 integers N - number of cities in that area, M - number of roads (1 <= N <= 8000, 0 <= M <= 10000) In the next M lines, the i-th line describes the i-th road: a line with two integers a b denotes a bidirectional road between city a and city b There is one blank line between successive tests.
Output
For each map, if there is no tour satisfying the conditions, write "-1" (without quotes). Otherwise, write one integer representing the number of roads in a reasonable tour, and in the next line show out the tour with form "source-city a b c .. source-city", that means the tour is source-city -> city a -> city b -> ... -> source-city. If there are many tours satisfy in each map, any of them will be accepted.
Example
Input: 2 3 1 2 3 3 2 3 1
4 1 2 3 4
4 2 3 4 1
Output: -1 4 1 2 3 4 1
Added by: Thanh-Vy Hua Date: 2006-09-16 Time limit: 1s-4s Source limit:15000B Languages: All
Input Description
The first line of the input is a positive integer t <= 20, which is the number of test cases. The descriptions of the test cases follow one after the other. The first line of each test case is a pair of positive integers n, m (separated by a single space). 2 <= n <= 30011 is the number of planets and m <= 50011 is the number of connections between planets. The planets are indexed with integers from 1 to n. The indices of Naboo, Tatooine and Coruscant are 1, 2, 3 respectively. The next m lines contain two integers each, giving pairs of planets that have a connection between them.
Output Description
The output should contain t lines. The i th line corresponds to the i th test case. The output for each test case should be YES if the required path exists and NO otherwise.
Example
Input 2 33 12 23 13 31 13 Output YES NO
Added by: Kashyap KBR Date: 2006-10-10 Time limit: 6s Source limit:50000B Languages: All Resource: Fair Isaac Programming Challenge - prelims 2006
964. Entrapment
Problem code: EN
Example The separatist leader General Grievous, the second in command of Count Dooku, comes to know that Chancellor Palpatines convoy, escorted by Obi-wan and Anakin, is scheduled to depart from Kashyyyk in the Middle Rim of the Universe to Alderaan. General Grievous is aware that there are multiple paths going via different sets of planets from Kashyyyk to Alderaan. To make his abduction attempt successful, he decides to send his robots to the planet closest to Kashyyyk, other than itself, which lies on all the possible paths from Kashyyyk to Alderaan. Since you have pledged your allegiance to Count Dooku, you need to help him identify this planet. The planetary map which is given to you for this purpose consists of a set of one-way connections between planets. You also know that a pair of planets can have at most one connection between them in each direction and there is always a path from Kashyyyk to Alderaan. Note: In the given example, the planet with index 5 is the required planet.
Input Description
The first line of the input is a positive integer t <= 20, which is the number of test cases. The descriptions of the test cases follow one after the other. The first line of each test case is a pair of positive integers n, m (separated by a single space). 2 <= n <= 30011 is the number of planets and m <= 100011 is the number of connections between planets. The planets are indexed with integers from 1 to n and the indices of Kashyyyk and Alderaan are 1, n respectively. Each of the next m lines contains two integers p,q, meaning that there is a one-way connection from planet p to planet q.
Output Description
The output should contain t lines. The i th line corresponds to the i th test case. The output for the i th test case should be the index of the planet with the required property.
Example
Input 2 32 13 32 44 13 34 12 24 Output 3 4
Added by: Kashyap KBR Date: 2006-10-10 Time limit: 5s Source limit:50000B Languages: All Resource: Fair Isaac Programming Challenge - prelims 2006
Input Description
The first line of the input is a positive integer t <= 20, which is the number of test cases. The descriptions of the test cases follow one after the other. The description of each test case contains exactly one line (a positive integer), containing the value of n <= 1000000.
Output Description
The output consists of exactly t lines. The ith line should be A i %10007, where A i is the number of sequences in the i th case, and x%y represents the remainder when x is divided by y.
Example
Input 2 1 2 Output 1 3 Explanation: In the given example, 11, 12 and 21 are the possible sequences. Added by: Kashyap KBR Date: 2006-10-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fair Isaac Programming Challenge - prelims 2006
972. Birthday
Problem code: BIRTHDAY
It is Bytemans birthday today. There are n children at his birthday party (including Byteman). The children are numbered from 1 to n. Bytemans parents have prepared a big round table and they have placed n chairs around the table. When the children arrive, they take seats. The child number 1 takes one of the seats. Then the child number 2 takes the seat on the left. Then the child number 3 takes the next seat on the left, and so on. Finally the child number n takes the last free seat, between the children number 1 and n-1. Bytemans parents know the children very well and they know that some of the children will be noisy, if they sit too close to each other. Therefore the parents are going to reseat the children in a specific order. Such an order can be described by a permutation p1, p2, . . . , pn (p1, p2, . . . , pn are distinct integers from 1 to n) -- child pi (for i = 2,3, . . . ,n) should sit on child pi-1s left, and child p1 should sit on child pns left. To seat all the children in the given order, the parents must move each child around the table to the left or to the right some number of seats. For each child, they must decide how the child will move -- that is, they must choose a direction of movement (left or right) and distance (number of seats). On the given signal, all the children stand up at once, move to the proper places and sit down. The reseating procedure throws the birthday party into a mess. The mess is equal to the total distance any child moves. The children can be reseated in many ways. The parents choose one with minimum mess. Help them to find such a way to reseat the children.
Input
The first line of standard input contains one integer n (1 <= n <= 50000). The second line contains n integers p1, p2, . . . , pn, separated by single spaces. Numbers p1, p2, . . . , pn form a permutation of the set {1,2, . . . ,n} describing the desired order of the children.
Output
The first and the only line of standard output should contain one integer: the minimum possible mess.
Example
Input: 5 1 5 4 3 2 Output: 6
Added by: Le n Khue Date: 2006-10-11 Time limit: 3s Source limit:50000B Languages: All Resource: 2nd round of Hanoi University of Science - Based on a problem from IOI 2005
987. Mobile
Problem code: MOBILE
Mobile Manfred loves to build mobiles out of old CDs. For each one, he has an exact plan how it should look like: The CDs are all hanging exactly on the same height. For each pair of CDs, he writes down the height of the lowest bar such that both CDs are hanging somewhere under this bar. For example, the following mobile and distance matrix fit together: [IMAGE] After a while, Manfred realizes that he does not succeed to build every mobile he planned to. For example, there is no solution for the following distance matrix: 012 103 230 So, he decides to write a computer program that checks the distance matrices and tells him if there is a solution.
Input
Several matrices to check. The first row contains the size of the matrix (n), the next n rows contain the distances in the matrix. Then, the data of the next matrix comes, and so on. The input is terminated by a zero as matrix size.
Output
For each matrix, write true if Manfred can build a mobile, false otherwise.
Example
Input: 5 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 3 3 3 3 3 0 1 2 1 0 3 2 3 0 3 1 1 1 1 0 2 1 1 0 0 3 3 3 3 0
Added by: Martin Bader Date: 2006-10-17 Time limit: 15s Source limit:50000B Languages: All Resource: Ulm Bioinformatics Course WS 06/07
Input
Input will consist of a series of cases, each one in a line. A line describing a case contains p and q, two integer numbers separated by a space, with 10^20 > p > q > 0. The end of the input is indicated by a line containing 0 0.
Output
Cases must be analyzed in the order that are read from the input. Output for each case will consist of several lines. The first line indicates the case number, starting at 1, using the format: Case i: replacing i by the corresponding case number. The second line displays the input data in the form p / q. The remaining lines must contain the continuous fraction corresponding to the rational number, p q , specified in the given input line. The continuous fraction must be printed accordingly to the following rules: Horizontal bars are formed by sequences of dashes -. The width of each horizontal bar is exactly equal to the width of the denominator under it. Blank characters should be printed using periods . The number on a fraction numerator must be printed center justified. That is, the number of spaces at either side must be same, if possible; in other case, one more space must be added at the right side.
Example
Input: 75 34 65 60 0 0 Output: Case 1: 75 / 34 ..........1...... 2.+.------------............1.... ....4.+.--------..............1.. ........1.+.----................1 ............5.+.................1 Case 2: 65 / 60 ......1... 1.+.-----.........1 ....11.+..........1
Added by: Camilo Andrs Varela Len Date: 2006-10-24 Time limit: 1s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
Input
The input file contains several test cases, each one of them in a separate line. Each test case is a sequence of non zero integers, each one with an absolute value less than 10^7.
Output
Output texts for each input case are presented in the same order that input is read. For each test case the answer must be a line of the form :-) Matrioshka! if the design describes a generalized matrioshka. In other case, the answer should be of the form :-( Try again.
Example
Input: -9 -7 -2 2 -3 -2 -1 1 2 3 7 9 -9 -7 -2 2 -3 -1 -2 2 1 3 7 9 -9 -7 -2 2 -3 -1 -2 3 2 1 7 9 -100 -50 -6 6 50 100 -100 -50 -6 6 45 100 -10 -5 -2 2 5 -4 -3 3 4 10 -9 -5 -2 2 5 -4 -3 3 4 9 Output: :-) Matrioshka! :-( Try again. :-( Try again. :-) Matrioshka! :-( Try again. :-) Matrioshka! :-( Try again.
Added by: Camilo Andrs Varela Len Date: 2006-10-24 Time limit: 5s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
1000. Equidivisions
Problem code: EQDIV
An equidivision of an n n square array of cells is a partition of the n^2 cells in the array in exactly n sets, each one with n contiguous cells. Two cells are contiguous when they have a common side. A good equidivision is composed of contiguous regions. The figures show a good and a wrong equidivision for a 55 square: [IMAGE] Note that in the second example the cells labeled with 4 describe three non-contiguous regions and cells labeled with 5 describe two non-contiguous regions. You must write a program that evaluates if an equidivision of the cells in a square array is good or not.
Input
It is understood that a cell in an nn square array is denoted by a pair (i, j), with 1 <= i, j <= n. The input file contains several test cases. Each test case begins with a line indicating n, 0 < n < 100, the side of the square array to be partitioned. Next, there are n - 1 lines, each one corresponding to one partition of the cells of the square, with some non-negative integer numbers. Consecutive integers in a line are separated with a single blank character. A line of the form a1 a2 a3 a4 ... means that cells denoted with the pairs (a1, a2), (a3, a4), ... belong to one of the areas in the partition. The last area in the partition is defined by those cells not mentioned in the n - 1 given lines. If a case begins with n = 0 it means that there are no more cases to analyze.
Output
For each test case good must be printed if the equidivision is good, in other case, wrong must be printed. The answers for the different cases must preserve the order of the input.
Example
Input: 2 1 2 2 1 5 1 1 1 2 2 1 4 2 4 5 5 2 2 5 3 4 5 1 1 1 2 2 1 3 1
1 4 5 3
3 1 3 5
3 5 5 4
2 1 5 3
2 3 5 4
2 1 4 4
1 3 3 2 2 2 4 1 5 1 4 2
Added by: Camilo Andrs Varela Len Date: 2006-10-25 Time limit: 3s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
played that day. In the above example the answer to this question is 1. Tablets that cannot represent results should be identified. You are hired to help with this task.
Input
The input file contains several test cases, each one of them in a separate line. Each test case is a triplet of non negative integers, indicating the initial pot, the bet and the final pot for a day. Each of the input numbers is less than 10 8 . The initial pot and the bet are greater than 0. A line with a triplet of 0s denotes the end of the input.
Output
Output texts for each input case are presented in the same order that input is read. For each test case the answer must be a printed line. If the test case cannot represent the result of a game day, the output line has the words No accounting tablet. In other case, the printed answer is one positive integer number telling the minimal number of players that could turn the roulette for the day corresponding to the annotations.
Example
Input: 10000 1000 22000 24 13 2 5100 700 200 54 16 158 360 6 72 25 10 5 0 0 0 Output: 4 No accounting tablet 3 No accounting tablet 16 1
Added by: Camilo Andrs Varela Len Date: 2006-10-25 Time limit: 2s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
Input
The input consists of several test cases. Each test case is given in a single line of the input by, space separated, integers N (1 <= N <= 1000) and D (0 <= D <= 2500), corresponding to the number of nephews and the number of CDs respectively. The end of the test cases is indicated with N = D = 0.
Output
The output consists of several lines, one per test case, following the order given by the input. Each line has the number of all possible ways to distribute D CDs among N nephews.
Example
Input: 1 20 3 10 0 0 Output: 1 59049
Added by: Camilo Andrs Varela Len Date: 2006-10-25 Time limit: 1s Source limit:512B Languages: All Resource: XX Colombian National Programming ACM 2006
Input
The input file will be a text file containing different Little Quilt expressions, each one ended by a semicolon character (;). Space and new line characters must be ignored; this means that an expression may span several lines.
Output
The output file contains the quilts produced as a result of interpreting the input expressions. Each quilt must be preceded by a line, left aligned, with the format Quilt i: where i is the quilt number, starting at 1. If the expression interpretation generates and error, the word error must be printed.
Example
Input: sew(turn(sew(B,turn(B))), turn(sew(turn(B),B))) ; sew(turn(sew(B,turn(B))),A); sew(turn(sew(A,turn(A))), turn(turn( turn(sew(A,turn(A)))))) ; Output: Quilt 1: ||-||---|| --|| Quilt 2: error Quilt 3: \\// +\/+ +/\+ //\\
Added by: Camilo Andrs Varela Len Date: 2006-10-25 Time limit: 1s-2s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
Input
The input consists of several test cases. Each test case is given in a single line of the input by a natural number representing a polygon. The end of the test cases is indicated with *.
Output
One line per test case, preserving the input order. Each output line contains a decimal number telling the area of the corresponding encoded polygon. Areas must be printed with 1 decimal place, truncating less significative decimal places.
Example
Input: 2141 206 157895330 * Output: 1.0 0.5 1.0
Added by: Camilo Andrs Varela Len Date: 2006-10-25 Time limit: 5s Source limit:50000B Languages: All Resource: XX Colombian National Programming ACM 2006
1021. Aibohphobia
Problem code: AIBOHP
BuggyD suffers from AIBOHPHOBIA - the fear of Palindromes. A palindrome is a string that reads the same forward and backward. To cure him of this fatal disease, doctors from all over the world discussed his fear and decided to expose him to large number of palindromes. To do this, they decided to play a game with BuggyD. The rules of the game are as follows: BuggyD has to supply a string S. The doctors have to add or insert characters to the string to make it a palindrome. Characters can be inserted anywhere in the string. The doctors took this game very lightly and just appended the reverse of S to the end of S, thus making it a palindrome. For example, if S = "fft", the doctors change the string to "ffttff". Nowadays, BuggyD is cured of the disease (having been exposed to a large number of palindromes), but he still wants to continue the game by his rules. He now asks the doctors to insert the minimum number of characters needed to make S a palindrome. Help the doctors accomplish this task. For instance, if S = "fft", the doctors should change the string to "tfft", adding only 1 character.
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of one line, the string S. The length of S will be no more than 6100 characters, and S will contain no whitespace characters.
Output
For each test case output one line containing a single integer denoting the minimum number of characters that must be inserted into S to make it a palindrome.
Example
Input: 1 fft Output: 1
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 8s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. The first line of each test case consists of two integers X <= 300 and Y <= 300, separated by a single space. Next, X lines follow, each having Y letters separated by spaces. The jth letter on the i-th line is one of the following (quotes are for clarity, and do not appear in the input): 1. "H", if the room at location (i, j) is heavenly and vacant. 2. "A", if the room at location (i, j) is heavenly and is already occupied by an angel. Note that these rooms are not transparent. 3. "D", if the room at location (i, j) belongs to the Devil. Output A single line for each test case containing an integer denoting the maximum number of fighters that can fit in heaven.
Example
Input: 1 4 7 H H H H H H H H H H H H H H H H H H H H H
H H H H H H H Output: 4
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 7s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of a single line cotaining two integers (X and Y) separated by a single space, specifying the dimensions of the chess board. The numbers 1 to X denote rows and the capital letters A to Y denote the coloumns. Each square is represented by its column index followed by its row index - for example, B4 denotes the square in the 4th row and 2nd column. The total number of squares on the chess board will be no more than 26.
Output
For each test case output one line consisting of the lexicographically first path of the knight, or "-1" (quotes for clarity) if the chess board is incomplete with respect to a knight.
Example
Input: 1 4 5 Output: A1B3C1A2B4D3E1C2D4E2C3A4B2D1E3C4A3B1D2E4
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 3s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of 3 lines: The first line contains a single integer N (1 <= N <= 1000). The second line contains N integers separated by single spaces denoting the hotness levels of the men. The third line contains N integers separated by single spaces denoting the hotness levels of the women. All hotness ratings are on a scale of 0 to 10.
Output
For each test case output a single line containing a single integer denoting the sum of the hotness bonds for all pairs that MMDS has proposed.
Example
Input: 2 2 1 1 3 2 3 2 3 2 1 3 2
Output: 5 15
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 2s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of a single line containing a single integer N (1 <= N <= 1000) - the number of sides on BuggyDs die.
Output
For each test case, print one line containing the expected number of times BuggyD needs to throw his N-sided die so that each number appears at least once. The expected number must be accurate to 2 decimal digits.
Example
Input: 2 1 12 Output: 1.00 37.24
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 2s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. The first line of each test case contains 2 integers N (3 <= N 100) and T (1 <= T <= 250), denoting the number of police stations and the total time he has to reach the airport, respectively. Dhamaka Singh has to start from the first police station and reach the N th one (the airport is just after the N th police station). You can consider the time taken between the N th police station and the airport to be negligible. Next there are N lines with N numbers in each line, separated by single spaces. All numbers are separated by a single space. The j th integer in the i th line represents the time taken to reach the j th police station from the i th police station. Next there are another N lines with N numbers in each line. All numbers are separated by a single space. The j th integer in the i th line represents the risk involved in travelling to the j th police station from the i th police station.
Output
For each test case output one line containing 2 integers separated by a single space. The first integer denotes the minimum total risk to reach the airport. The second integer denotes the minimum time required to reach the airport at the minimum total risk. If it is impossible to reach the airport within time T (inclusive), just print "-1" (quotes for clarity).
Example
Input: 1 4 10 0 6 2 3 6 0 2 3 3 1 0 2 3 3 2 0 0 2 2 7 2 0 1 2
2 2 0 5 7 2 5 0 Output: 4 9
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 3s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
1028. Hubulullu
Problem code: HUBULLU
After duelling in quake (a multiplayer game), Airborne and Pagfloyd decide do test themselves out in another game called Hubulullu. The rules of the game are as follows: N wooden pieces (marked with numbers 1 to N) are placed in a transparent bottle. On his turn the first player takes out some piece (numbered x) and all the pieces numbered by divisors of x that are present in the transparent bottle. The second player picks another number and removes it and its divisors as well. Play continues in an alternating fashion until all pieces have been removed from the bottle. The player who removes the last piece from the bottle wins the game. Both players play optimally. Given N (the number of wooden pieces in the transparent bottle initially) and the name of the player who starts the game, determine the winner.
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of a single line containing two integers separated by a single space. The first integer is N (1 <= N <= 2000000000), indicating the number of pieces, and the second integer indicates the player who starts - "0" means Airborne starts the game and "1" means Pagfloyd starts the game (quotes for clarity).
Output
For each test case output one line containing either "Airborne wins." or "Pagfloyd wins." For each N, its possible to determine a winner if both players play optimally.
Example
Input: 1 1 0 Output: Airborne wins.
Added by: Matthew Reeder Date: 2006-10-29 Time limit: 7s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. The first line of each test case contains a single integer N (1 <= N <= 1024), denoting the size of the matrix. A list of commands follows, which will be in one of the following three formats (quotes are for clarity): 1. "SET x y num" - Set the value at cell (x, y) to num (0 <= x, y < N). 2. "SUM x1 y1 x2 y2" - Find and print the sum of the values in the rectangle from (x1, y1) to (x2, y2), inclusive. You may assume that x1 <= x2 and y1 <= y2, and that the result will fit in a signed 32-bit integer. 3. "END" - Indicates the end of the test case.
Output
For each test case, output one line for the answer to each "SUM" command. Print a blank line after each test case.
Example
Input: 1 4 SET 0 0 SUM 0 0 SET 2 2 SUM 2 2 SUM 2 2 SUM 0 0 END Output:
1 3 3 12 2 2 3 3 2 2
1 12 12 13
Warning: large Input/Output data, be careful with certain languages Added by: Matthew Reeder Date: 2006-10-29 Time limit: 7s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of a single line containing a single integer k (1 <= k <= 2000000000000).
Output
For each test case, output a single integer which denotes the k th number whose cube ends in 888. The result will be less than 2 63 .
Example
Input: 1 1 Output: 192
Added by: Matthew Reeder Date: 2006-10-30 Time limit: 5s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
1031. Up Subsequence
Problem code: UPSUB
If x = a 0 a 1 a 2 ...a n-1 is a string where a i denotes the character at index i, a subsequence a j0 a j1 a j2 ...a jn is called an upsubsequence if a j0 <= a j1 <= a j2 <= ... <= a jn and j0 < j1 < j2 < ... < jn. A maximal upsubsequence of a string is defined as the upsubsequence of maximum length. BuggyD observes that a string x can have many maximal upsubsequences. Help him find all the maximal upsubsequences in x.
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow. Each test case consists of a single line containing a string x, where the length of x is no more than 100. x will not contain any spaces, tabs or other whitespace characters.
Output
For each test csae, output all of the maximal upsubsequences of x in lexicographical order. Print a blank line after each test case.
Example
Input: 1 abcbcbcd Output: abbbcd abbccd abcccd
Added by: Matthew Reeder Date: 2006-10-30 Time limit: 3s Source limit:30000B Languages: All Resource: Al-Khawarizm 2006
Input
The first line of the input file contains the integer N. In the second line, N numbers follow. The third line contains the integer M. M lines follow, where line i contains 2 numbers xi and yi.
Output
Your program should output the results of the M queries, one query per line.
Example
Input: 3 -1 2 3 1 1 2 Output: 2
Added by: Nguyen Dinh Tu Date: 2006-11-01 Time limit: 1s-2s Source limit:5000B Languages: All
Input
On the first line of the input is a single positive integer, telling the number of test cases to follow. Each case consists of one line containing the integer n.
Output
For each test case, output a line with the correct permutation of the values 1 to n, space separated. The first number showing the top card of the pack, etc...
Example
Input: 2 4 5 Output: 2 1 4 3 3 1 4 5 2
Added by: Camilo Andrs Varela Len Date: 2006-11-23 Time limit: 11s Source limit:50000B Languages: All Resource: Nordic Collegiate Contest 2006
1110. Sudoku
Problem code: SUDOKU
A Sudoku grid is a 16x16 grid of cells grouped in sixteen 4x4 squares, where some cells are filled with letters from A to P (the first 16 capital letters of the English alphabet), as shown in the figure. The game is to fill all the empty grid cells with letters from A to P such that each letter from the grid occurs once only in the line, the column, and the 4x4 square it occupies. The initial content of the grid satisfies the constraints mentioned above and guarantees a unique solution. A J D G E L E I D E E C H P G K B H F B C J P K D E F C O D H F A J A K I H C N P A F G P C M K G J B D O A F D P L I B H L K L A F H C B B I C P E M G E A O A J J C G F O H P I
a) Sudoku grid
F O L B M C D J E N H A K G P I
P J N G F I O E B C M K D L H A
A M D C H L G K O J P I E B N F
H I K E B N P A F D L G M C O J
M A G L E K I F P H C N J D B O
J N F K L D H C M B G O I P A E
E B O H P G J N I A K D F M L C
C D I P O A M B J E F L N H K G
N P J O A H F G D K I B C E M L
L K E F C B N I G M A P H O J D
B C A I K M L D H O E J G N F P
D G H M J O E P L F N C A K I B
K F M A G P C L N I B E O J D H
O L B J N E A H K G D F P I C M
G H P D I F K O C L J M B A E N
I E C N D J B M A P O H L F G K
b) Solution
Input
The first line of the input contains an integer K - determining the number of datasets (K<=10). Each data set encodes a grid and contains 16 strings on 16 consecutive lines as shown in the example input below. The ith string stands for the ith line of the grid, is 16 characters long, and starts from the first position of the line. String characters are from the set {A,B,...,P,-}, where - (minus) designates empty grid cells. The data sets are separated by single empty lines.
Output
For each data set in the input print the completed 16x16 Sudoku as specified by the rules above. The program prints the solution of the input encoded grids in the same format and order as used for input. The output for each data set should be separated by single empty lines.
Example
Input: 1 --A----C-----O-I -J--A-B-P-CGF-H--D--F-I-E----P-
-G-EL-H----M-J-----E----C--G---I--K-GA-B---E-J D-GP--J-F----A--E---C-B--DP--OE--F-M--D--L-K-A -C--------O-I-LH-P-C--F-A--B-----G-OD---J----H K---J----H-A-P-L --B--P--E--K--A-H--B--K--FI-C---F---C--D--H-NOutput: FPAHMJECNLBDKOGI OJMIANBDPKCGFLHE LNDKGFOIJEAHMBPC BGCELKHPOFIMAJDN MFHBELPOACKJGNID CILNKDGAHBMOPEFJ DOGPIHJMFNLECAKB JEKAFCNBGIDPLHOM EBOFPMIJDGHLNKCA NCJDHBAEKMOFIGLP HMPLCGKFIAENBDJO AKIGNODLBPJCEFMH KDEMJIFNCHGAOPBL GLBCDPMHEONKJIAF PHNOBALKMJFIDCEG IAFJOECGLDPBHMNK
Added by: P.Kasthuri RanganDate: 2006-11-24 Time limit: 7s Source limit:50000B Languages: All Resource: ACM Southeastern European Regional Programming Contest - 2006
1161. Tic-Tac-Toe ( I )
Problem code: TOE1
Tic Tac Toe is a childs game played on a 3 by 3 grid. One player, X, starts by placing an X at an unoccupied grid position. Then the other player, O, places an O at an unoccupied grid position. Play alternates between X and O until the grid is filled or one players symbols occupy an entire line (vertical, horizontal, or diagonal) in the grid. We will denote the initial empty Tic Tac Toe grid with nine dots. Whenever X or O plays we fill in an X or an O in the appropriate position. The example below illustrates each grid configuration from the beginning to the end of a game in which X wins. [IMAGE] Your job is to read a grid and to determine whether or not it could possibly be part of a valid Tic Tac Toe game. That is, is there a series of plays that can yield this grid somewhere between the start and end of the game?
Input
The first line of input contains N, the number of test cases. 4N-1 lines follow, specifying N grid configurations separated by empty lines.
Output
For each case print "yes" or "no" on a line by itself, indicating whether or not the configuration could be part of a Tic Tac Toe game.
Example
Input: 2 X.O OO. XXX O.X XX. OOO Output: yes no
Added by: Camilo Andrs Varela Len Date: 2006-12-14 Time limit: 1s Source limit:50000B Languages: All Resource: Waterloo local 2002.09.21
1162. Tic-Tac-Toe ( II )
Problem code: TOE2
In the game of tic-tac-toe, two players take turns marking squares of an initially empty 3 3 grid with either Xs or Os. The first player always marks squares using Xs, whereas the second player always marks squares using Os. If at any point during the game either player manages to mark three consecutive squares in a row, column, or diagonal with his/her symbol, the game terminates. Given a board configuration, your goal is to determine whether the board configuration represents the possible final state of a valid tic-tac-toe game.
Input
The input test file will contain multiple cases. Each test case consists of a single line containing 9 characters, which represent the 9 squares of a tic-tac-toe grid, given one row at a time. Each character on the line will either be X, O (the letter O), or . (indicating an unfilled square). The end-of-file is marked by a single line containing the word "end".
Output
For each input test case, write a single line containing either the word "valid" or "invalid" indicating whether the given board configuration is the final state of some possible tic-tac-toe game.
Example
Input: XXXOO.XXX XOXOXOXOX OXOXOXOXO XXOOOXXOX XO.OX...X .XXX.XOOO OOXXXOOXO end Output: invalid valid invalid valid valid invalid invalid
Added by: Camilo Andrs Varela Len Date: 2006-12-14 Time limit: 1s Source limit:50000B Languages: All Resource: Stanford Local 2006
1163. Java vs C ++
Problem code: JAVAC
Apologists of Java and C++ can argue for hours proving each other that their programming language is the best one. Java people will tell that their programs are clearer and less prone to errors, while C++ people will laugh at their inability to instantiate an array of generics or tell them that their programs are slow and have long source code. Another issue that Java and C++ people could never agree on is identifier naming. In Java a multiword identifier is constructed in the following manner: the first word is written starting from the small letter, and the following ones are written starting from the capital letter, no separators are used. All other letters are small. Examples of a Java identifier are javaIdentifier, longAndMnemonicIdentifier, name, nEERC. Unlike them, C++ people use only small letters in their identifiers. To separate words they use underscore character _. Examples of C++ identifiers are c_identifier, long_and_mnemonic_identifier, name (you see that when there is just one word Java and C++ people agree), n_e_e_r_c. You are writing a translator that is intended to translate C++ programs to Java and vice versa. Of course, identifiers in the translated program must be formatted due to its language rules -- otherwise people will never like your translator. The first thing you would like to write is an identifier translation routine. Given an identifier, it would detect whether it is Java identifier or C++ identifier and translate it to another dialect. If it is neither, then your routine should report an error. Translation must preserve the order of words and must only change the case of letters and/or add/remove underscores.
Input
The input file consists of several lines that contains an identifier. It consists of letters of the English alphabet and underscores. Its length does not exceed 100.
Output
If the input identifier is Java identifier, output its C++ version. If it is C++ identifier, output its Java version. If it is none, output Error! instead.
Example
Input: long_and_mnemonic_identifier anotherExample i bad_Style Output:
Added by: Camilo Andrs Varela Len Date: 2006-12-14 Time limit: 1s Source limit:50000B Languages: All Resource: Northeastern Europe 2006
Input
There are several test cases. For each test case there is one line of input of the form "0.dddd..." where dddd is a string of 1 to 18 digits, not all zero. A line containing 0 follows the last case.
Output
For each case, output the original fraction.
Example
Input: 0.2... 0.20... 0.474612399... 0 Output: 2/9 1/5 1186531/2500000
Added by: Camilo Andrs Varela Len Date: 2006-12-16 Time limit: 4s Source limit:50000B Languages: All Resource: Waterloo Local Contest Sep. 27, 2003
Input<h3> In the first line N will be given and then N lines follow with each line having a integer which is the height of triangle in that test case.00<=h<10 10 ; Output For each test case output in a seperate line the minimum number of moves required to invert the triangle. Output fits in long long data type Example
Inputt: 1 3 Output: 2
Added by: Abhilash I Date: 2006-12-16 Time limit: 1s Source 50000B limit: Languages: All IIIT Hyderabad Local Programming Resource: Contest
with m = -5 and n = -2, the result of the sorting will be No. 1 2 3 4 Decimal number -4 -5 -3 -2 Binary 32 bit representation 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111
Given m, n and k (1 <= k <= min{n - m + 1, 2 147 473 547}), your task is to write a program to find a number corresponding to k-th representation in the sorted sequence.
Input
The input consists of several data sets. The first line of the input file contains the number of data sets which is a positive integer and is not bigger than 1000. The following lines describe the data sets. For each data set, the only line contains 3 integers m, n and k separated by space.
Output
For each data set, write in one line the k-th number of the sorted numbers.
Example
Sample input: 2 0 5 3 -5 -2 2 Sample output: 2 -5
Added by: Le n Khue Date: 2006-12-28 Time limit: 20s Source limit:50000B Languages: All Resource: ACM ICPC 2006, Asia Regional Contest, site Hanoi
Input
First line consits of an integer K and then K test cases follow.
Output
For each test case you have to output the result%98777 in a seperate line.
Example
Input: 1 3 Output: 16
Added by: Abhilash I Date: 2006-12-30 Time limit: 3s Source limit:50000B Languages: All Resource: IIIT Hyderabad Local Programming Contest
Input
Input begins with a single integer, the number of test cases. For each test case, there are m+1 lines of input in total. The first line contains the game parameters, which are five integers m,n,a,b,c each separated by one space. The constraints are 1<=m<=4, 1<=n<=5, 1<=a<b<=8, 1<=c<=8. The next m lines each contain a string of n characters representing a row of the current generation. In the string, an asterisk ("*") indicates live while a period (".") indicates dead. There are no blank lines between test cases.
Output
Output is one integer per test case denoting the minimum number of steps required to reach the input from a Garden of Eden. If there is no Garden of Eden, output -1.
Example
Input: 1 4 5 2 3 2 .**** .**** .**** .**** Output: 2 Output Explanation:
Assume the sample input is the "current" generation. A possible previous generation is
**.** ..*.* ....* *****
The above generation can be derived from the following previous generation
.**** **.*. ***** *..*.
This generation cannot be derived from any other generation. Furthermore, there is no shorter series of generations that has these properties. Added by: Bobby Xiao Date: 2007-01-24 Time limit: 5s Source limit:50000B Languages: All Resource: Canadian Computing Competition, 2006 Senior Stage 1
Input
The first line of input consists of the number of test cases. For each test case, the first line is an integer n (2 <= n <= 1000), the number of landmarks Christy wants to photograph. Each of the following n lines specify a landmark. Each landmark specification consists of the landmark name (a string of uppercase and lowercase letters of length at most 40 characters), a space, and the compass angle d, in degrees, to the landmark from the CN Tower (0 = north, 90 = east, 180 = south, 270 = west). Note that d is a real number which satisfies 0 <= d < 360, with d specified to the hundredth of a degree (i.e., at most two decimal places).
Output
For each test case, output a single integer, the minimum number of seconds that Christy must remain in the restaurant. If the time is not an integer number of seconds, round it up to the nearest second (i.e., take the ceiling of the number).
Example
Input: 1 5 CasaLoma 231.0 OntarioParliament 123.0 SkyDome 75.0 RoyalYorkHotel 340.0 PearsonAirport 165.0 Output: 3012
Added by: Bobby Xiao Date: 2007-01-24 Time limit: 2s Source limit:50000B Languages: All Resource: Canadian Computing Competition, 2006 Senior Stage 2
Input
The first line of input consists of the number of test cases. For each test case, the first line is an integer n (1 <= n <= 1000), the number of landmarks Christy wants to photograph. Each of the following n lines specify a landmark. Each landmark specification consists of the landmark name (a string of uppercase and lowercase letters), a space, and the compass angle, in degrees (specified with a maximum of 2 decimal places), to the landmark from the CN Tower (0 = north, 90 = east, 180 = south, 270 = west). Finally, the last line contains the amount of time, in seconds, required for the flash to charge.
Output
For each test case, output a single integer, the minimum number of seconds that Christy must remain in the restaurant. If the time is not an integer number of seconds, round it up to the nearest second. If it is not possible for Christy to take all the pictures before closing, instead output "not possible".
Example
Input: 1 5 CasaLoma 231.0 OntarioParliament 123.0 SkyDome 75.0 RoyalYorkHotel 340.0 PearsonAirport 165.0 10 Output: 3022
Added by: Bobby Xiao Date: 2007-01-24 Time limit: 4s Source limit:50000B Languages: All Resource: Canadian Computing Competition, 2006 Senior Stage 2
Input
Input begins with a line with the number of test cases. Each test case consists of a total of n + m + 2 lines. The first line of the test case consists of an integer n (1 <= n <= 32), the number of rows. The second line consists of an integer m (1 <= m <= 32), the number of columns. On the next n lines, there will be sequences which describe each of the n rows (from top to bottom). Each line will contain some positive integers, with a space between adjacent integers, and the sequence will terminate with the integer 0. On the next m lines describe the m columns (from left to right), the same format as the rows are specified.
Output
Output consists of n lines for each corresponding test case, each line composed of m characters, where each character is either a dot (.) or a star (*). Separate test cases with a blank line.
Example
Input: 2 4 7 2 2 0 5 0 5 0 2 2 0 1 1 0 1 1 0 2 0 2 0 4 0 4 0 2 0 4 4 2 1 0 3 0 3 0 1 1 0 4 0 3 0 3 0 1 0 Output: **..**. ..***** ..***** **..**. **.* ***. ***. *.*.
Added by: Bobby Xiao Date: 2007-01-24 Time limit: 5s Source limit:50000B Languages: All Resource: Canadian Computing Competition, 2006 Senior Stage 2
Input
Input for each case will consist of several lines. The first line is two integer m and n,which describe a char martrix,then followed m lines,each line cantain n chars. The char martrix describe a continuous fraction The continuous fraction is described by the following rules: Horizontal bars are formed by sequences of dashes -. The width of each horizontal bar is exactly equal to the width of the denominator under it. Blank characters should be printed using periods . The number on a fraction numerator must be printed center justified. That is, the number of spaces at either side must be same, if possible; in other case, one more space must be added at the right side. The end of the input is indicated by a line containing 0 0.
Output
Output will consist of a series of cases, each one in a line corresponding to the input case. A line describing a case contains p and q, two integer numbers separated by a space, and you can assume that 10^20 > p > q > 0.
Example
Input: 9 17 ..........1...... 2.+.------------............1.... ....4.+.--------..............1..
Added by: Camilo Andrs Varela Len Date: 2007-01-31 Time limit: 1s Source limit:50000B Languages: All Resource: HNU Contest
Input
The first line of the input file contains the size of the lists n (this value can be as large as 4000). We then have n lines containing four integer values (with absolute value as large as 2 28 ) that belong respectively to A, B, C and D .
Output
Output should be printed on a single line.
Example
Input: 6 -45 22 42 -16 -41 -27 56 30 -36 53 -37 77 -36 30 -75 -46 26 -38 -10 62 -32 -54 -6 45 Output: 5
Added by: Abhilash I Date: 2007-02-06 Time limit: 10s Source limit:50000B Languages: All Resource: South western 05-06
Here N = 7. Suppose K = 2 and P = 17. Then, the answer is 2 because 11 + 16 + 26 = 53 and 53 mod 17 is 2. On the other hand, if K = 0 the answer is 0 since 15 + 11 + 16 + 26 = 68 and 68 mod 17 is 0. You may assume 1 <= N <= 100000.
Input
The first line of the input contains the number of test cases, T. Each test case begins with a line containing three integers, N, K and P. This is followed by the values of a 1 , a 2 , ..., a N , one per line.
Output
Output one line per test case, containing the smallest partial sum modulo P that is at least K, as described above.
Example
Input: 1 7 2 17 12 13 15 11 16 26 11 Output: 2
Added by: Stephen Merriman Date: 2007-02-22 Time limit: 7s Source limit:50000B Languages: All Resource: Indian Computing Olympiad, Online Programming Contest, July 06
Input
On the first line there will be a single integer n, denoting the number of test cases. Each test case will consist of a single integer k by itself on a line, followed by k lines containing the x and y co-ordinates of the safe spots , seperated by a single space. Both coordinates are integer values. There are no leading or trailing spaces or blank lines. 0<k<=2200
Output
For each case print a single integer by itself on a line, with no leading or trailing spaces. Do not print blank lines.
Example
Input: 2 5 0 0 1 1 2 2 4 8 2 75 3 0 0 1 2 3 4
Output: 2 1
Added by: Abhilash I Date: 2007-02-22 Time limit: 1s Source limit:50000B Languages: All Resource: Code Craft 2007
1329. Matrix
Problem code: KPMATRIX
The company you work in has got a secret job to do. Just a few persons know what it is all about. To keep a secret every programmer works on a small part of the project. Your job is as follows. You are given a matrix of integer numbers with N rows and M columns. Also two integer numbers A and B are given. Your task is to find a number of submatrices of a given matrix with the sum of elements between A and B inclusively.
Input
The first line contains two integer numbers N and M (1 <= N, M <= 250). After that matrix description follows. N lines with M numbers each. The last line contains two integer numbers A and B (-10^9 <= A <= B <= 10^9). All numbers separated with spaces. Its guaranteed that for every submatrix the absolute value of sum of its elements will not exceed 10^9.
Output
Write to the output the number of submatrices of a given matrix with sum of their elements between A and B inclusively.
Example
Input: 3 3 1 0 0 0 1 0 0 0 1 1 3 Output: 26
Added by: Pavel Kuznetsov Date: 2007-02-23 Time limit: 1s-10s Source limit:50000B Languages: All Resource: IT Festival Arkhangelsk 2006
1335. Maze
Problem code: KPMAZE
The King of Byteland likes Greek mythology very much. The most impressive myth for him is the one about Minotaur. A creature which was imprisoned in a maze-like construction. Now The King wants to have similar maze. He ordered to his architect to build such construction. The architect decided that maze will have rectangular form. Its floor will be made from large square plates. Also there will be many walls, each of which will separate two common floor plates. From the birds eye whole construction will look like a grid with some cells separated by walls. The maze should be very tricky, thats why he calls the maze correct if and only if for every two plates there is exactly one path between them. Here path is a sequence of moves between plates that share a common side and are not separated by wall. Each plate can only appear once in a path. Sooner or later, the architect started his work. After a couple of months he created a rectangular area with H rows and W columns. Also he has built K walls. Sounds perfect but he was seized with a lingering doubt about correctness of his maze. Thats why he asks you to help him. He wants to know how many different correct mazes can be built based on his current maze i.e. you can only add new walls but not to break any of the old ones. For example (see figure 1.) the maze size is 2x2 and there are no walls. All four ways to complete this maze are shown on the right of the figure (new walls are dashed). Figure 1 Figure 2. illustrates maze of size 3x3 with 3 walls. There are exactly 4 ways to complete it. Figure 2 Figure 3. shows the maze that cannot be completed, because there is no path from lower right plate to upper left one. Figure 3
Input
The first line contains two integer numbers W and H (1 <= W, H <= 5). Second line contains one integer number K (K >= 0). Next K lines contain description of walls. Each wall is determined by two plates it separates. Thus, each line contains four integer numbers: R_1, C_1, R_2 and C_2, here R_1 and C_1 - row and column coordinates of the first plate. Similar, R_2 i C_2 - are coordinates of the second plate (1 <= R_1, R_2 <= H, 1 <= C_1, C_2 <= W). Rows are numbered from up to bottom, colums - left to right started from 1. It is guaranteed that all walls are correct and there are no duplicates. Walls that form perimeter of the maze will not be specified.
Output
Output the number of different correct mazes that can be built based on the given one. There should be no leading zeroes.
Example
Input: 2 2 0 Output: 4 Input: 3 3 3 3 1 3 2 2 2 2 3 2 3 3 3 Output: 4 Input: 3 3 5 3 1 3 2 2 2 2 3 2 3 3 3 2 2 2 1 1 2 2 2 Output: 0
Added by: Pavel Kuznetsov Date: 2007-02-24 Time limit: 1s Source limit:50000B Languages: All Resource: IT Festival Arkhangelsk 2006
Input
The first line gives the number of test cases T followed by T lines of integer pairs, n and k. Scope: 0 < T < 501 0 < n < 501 1 < S P2 (n) < 7994 0<k<4
Output
The p(S P2 (n), k) for each n and k. Append a newline character to every test cases answer.
Example
Input: 3 2 2 3 2 5 3 Output: 3 7 85
Added by: Rahul Date: 2007-03-10 Time limit: 2s Source limit:3000B Languages: All Resource: Sam Collins
Input
The only input line contains two integers N and M, with one space between them [N, M <= 1000000000].
Output
The output must contain only one integer - the total number of employees of this university, or 0 if there is no way to find the number of employees.
Example
Input: 1 1 Output: 2
Input
In the first line of input two integers n and m are given, not exceeding 100, where n is the number of rows, and m - the number of columns. The second line contains a number k [k <= 10], which defines the number of test cases for the given field. In the next k lines the initial positions of the mouse and the cats are given. The position in the field is given by two numbers: the first is the number of the row, the second is the number of the column. The first two integers are the coordinates of the mouse, the next four integers are the coordinates of the cats.
Output
You must output k lines with answers for each test case. The answer is YES, if the mouse can escape or NO otherwise.
Example
Input: 5 3 3 2 2 1 1 3 3 2 3 1 3 5 2 3 2 1 2 4 3 Output: NO YES YES
Added by: Roman Sol Date: 2006-05-04 Time limit: 1s Source limit:50000B Languages: All Resource: ZCon 2007
Input
The input contains the integer from which the game is started.
Output
In the first line you must write 1 if Nikifor wins and 2 otherwise. If Nikifor wins then in the second line you must output the move in the first turn which guarantees victory for him. If there are many such moves then output any of them.
Example
Input: 14 Output: 1 4
Input
In the first line you are given the integer coordinates of the point in which diagonals of the square intersect. In the second line you are given one integer - the length of the side of the square. In the third line you are given the integer coordinates of point P. The integers do not exceed 100, in terms of absolute value.
Output
For each test case you must output YES if the sought point exsists, and NO otherwise. If you answer YES then in the second line you must output the coordinates of the intersection point. Coordinates must be rounded to one digit after the point.
Example
Input: 10 10 20 5 12 Output: YES 8.0 5.0
1421. Goods
Problem code: FIRM
There are n dealers in the market. Each of them has some unique goods (nobody else has the same goods). Besides, each of them wants to obtain some other goods, which exist in the market. This is rather strange, but for each kind of goods on the market there exists exactly one dealer who wants to obtain it. To prevent fraud, only exchanges in pairs are allowed in this market. Moreover, each dealer is allowed to make at most one exchange a day. But the total number of transactions isnt limited. A transaction means that all the goods of one dealer are exchanged for all the goods of the other participating dealer (partial transactions are not allowed). You are to write a program which outputs the minimum number of days needed for each dealer to get the goods that he wants. Also output one of the possible variants of exchanges leading to this goal.
Input
The first line contains an integer n [n <= 5000]. In the second line exactly n numbers of goods are given, which the dealers require. If integer j appears as the i-th at input, then this means that goods required by dealer i are initially owned by dealer j.
Output
You must output the minimum number of days m which are needed to complete the transactions. In the next m lines you must output the way these transactions should be managed by the dealers. One line corresponds to one day. At the beginning of each line you must output the number of transactions on this day. After that output the pairs of dealers who exchange their goods on this day. Dealers in pairs are separated by - symbol. If there are many ways to perform the exchanges then output any of them.
Example
Input: 7 2 1 3 5 6 7 4 Output: 2 3 1-2 4-5 7-6 1 5-7
Added by: Roman Sol Date: 2006-05-05 Time limit: 1s-10s Source limit:50000B Languages: All Resource: ZCon 2007
Input
First line contains one integer number N (3 <= N <= 100) - number of polygons vertices. Following N lines contain vertex coordinates X i and Y i . All numbers are integers. Vertices are given in clockwise or anticlockwise direction. No two vertices coincide. No three consecutive vertices lie on the same line. All coordinates do not exceed 10000 by absolute value.
Output
Write minimum and maximum value of sum of the polygons projections. Separate them by a space. Your answer should not differ with the correct one more than 10 -6 .
Example
Input: 4 0 0 0 1 1 1 1 0 Output: 2 2.828427124
Added by: Pavel Kuznetsov Date: 2007-03-25 Time limit: 1s Source limit:50000B Languages: All Resource: Vologda 2007
Input
Each line contains one integer number N (1<= N <= 10 15 ). Last line contains 0 and shouldnt be processed. Number of lines in the input does not exceed 40.
Output
For every line in the input write the answer on a separate line.
Example
Input: 12 0 Output: 5
Added by: Pavel Kuznetsov Date: 2007-03-26 Time limit: 1s Source limit:50000B Languages: All Resource: Vologda 2007
1434. Equation
Problem code: KPEQU
You are given integer positive number N. Find the number of solutions in positive integer numbers of the following equation: 1/N! = 1/X + 1/Y
Input
Each line of input file contains one integer number N (1 <= N <= 10 4 ). The last line contains 0 and shouldnt be processed. Number of lines in the input does not exceed 30.
Output
For every line in the input write the answer on a separate line.
Example
Input: 1 2 0 Output: 1 3
Added by: Pavel Kuznetsov Date: 2007-03-27 Time limit: 1s Source limit:50000B Languages: All Resource: Vologda 2007
Input
The first line of the input file contains one integer N --- number of nodes in the tree (0 < N <= 100000). Next N-1 lines contain N-1 edges of that tree --- Each line contains a pair (u, v) means there is an edge between node u and node v (1 <= u,v <= N).
Output
Print number of nodes in the satisfied vertex set on one line.
Example 1
Input: 3 1 2 1 3 Output: 1 Explanation: The set can be {1}
Example 2
Input: 3 1 2 2 3 Output: 1 Explanation: The set can be {2}
Added by: Thanh-Vy Hua Date: 2007-03-28 Time limit: 1.200s-8s Source limit:50000B Languages: All Resource: Co-author Amber
1436. Is it a tree
Problem code: PT07Y
You are given an unweighted, undirected graph. Write a program to check if its a tree topology.
Input
The first line of the input file contains two integers N and M --- number of nodes and number of edges in the graph (0 < N <= 10000, 0 <= M <= 20000). Next M lines contain M edges of that graph --- Each line contains a pair (u, v) means there is an edge between node u and node v (1 <= u,v <= N).
Output
Print YES if the given graph is a tree, otherwise print NO.
Example
Input: 3 2 1 2 2 3 Output: YES
Added by: Thanh-Vy Hua Date: 2007-03-28 Time limit: 1s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line of the input file contains one integer N --- number of nodes in the tree (0 < N <= 10000). Next N-1 lines contain N-1 edges of that tree --- Each line contains a pair (u, v) means there is an edge between node u and node v (1 <= u,v <= N).
Output
Print the length of the longest path on one line.
Example
Input: 3 1 2 2 3 Output: 2
Added by: Thanh-Vy Hua Date: 2007-03-28 Time limit: 1s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line contains a single integer t.t blocks follow. To every block,the first line contains two integers n(1<=n<=50000) and k (1<=k<=100000). k lines follow,each contains 3 positive integers D(1<=D<=2),X,Y,separated by single spaces.
Output
t lines,each contains a single integer - the number of false pieces in the corresponding block.
Example
Sample input: 1 100 7 1 101 1 2 1 2 2 2 3 2 3 3 1 1 3 2 3 1 1 5 5 Sample output: 3 Hint:
The false pieces are the 1st,the 4th and the 5th ones.
Warning: large Input/Output data, be careful with certain languages Added by: Blue Mary Date: 2007-03-31 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2001,Day 1; translated by Blue Mary
A note
DEL command has the following format: DEL wildcard The actual wildcard as well as a full file name can be made up of a name containing 1 up to 8 case-sensitive characters. In a wildcard the characters ? and * can be used. A question mark substitutes exactly one character of the full file name, an asterisk any sequence of characters even empty one. MS-DOS system can permit maybe other wildcards but they can not be used in this task. File names consist only of Latin letters and digits.
Input
The first line of the input is an integer M, then a blank line followed by M datasets. There is a blank line between datasets. Input data for each dataset contains a list of full file names without any extra empty lines and spaces. Each name is written in a separate line of input data file and ended with a control sign: + for delete or - for keep. Full file names are not repeated. The list comprises at least one file, and at least one file is marked to be deleted. There are no more than 250 files.
Output
For each dataset, write to the first line of output the maximum number of files one DEL command can delete.
Example
Input: 2 BP + BPC + TURBO EXCHANGE + EXT + HARDWARE + MOUSE -
NETWORK Output: 2 2
Hint: For the two tests above,the corresponding DEL commands are DEL BP* and DEL EX*.
Link
You can try problem DELCOMM first. Its far easier than this problem. Added by: Blue Mary Date: 2007-04-01 Time limit: 35s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1997,Day 1
Input
The very first line of the input contain the number t,then t cases follow. For each case,The first line contain two integer number N and M. N(N<=100) is the total number of the cuboids, M(M<=N) is the number of the piles, separated by a single space. Then N line follow, which are the description of the cuboids 1..N. Each line contains three integer numbers(<=1000)- the length, width and height of that cuboid,separated by spaces.
Output
For each case, the output contains only one line with a single integer number - the maximum sum.
Example
Sample Input: 1 4 2 10 5 5 8 7 7 2 2 2 6 6 6 Sample Output: 24
Added by: Blue Mary Date: 2007-04-01 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1997,Day 2; translated by Blue Mary
1448. 3D Cover
Problem code: COVER2
In the 3D Cartesian coordinate system, there are n cubes.These cubes are all axis-paralleled. Whats the volume of the union of these cubes?
Input
There is a single integer m in the very first line of the input, the number of test cases. m blocks follow. For each test, the first line contains a single integer n(1<=n<=100), the number of cubes. n lines follow, each contains four integers x,y,z,r(-1000<=x,y,z<=1000,1<=r<=200), separated by spaces. x,y,z are the X,Y,Z coordinates of the center of the cube, and r is the distance between the center and any surface of the cube.
Output
m lines,each contains a single integer - the answer.
Example
Sample Input: 1 3 0 0 0 3 1 -1 0 1 19 3 5 6 Sample Output: 1944
Added by: Blue Mary Date: 2007-04-01 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1997,Day 2; description by Blue Mary
1451. 01 Sequence
Problem code: SEQ1
The input consists of exactly 5 test cases in the following format:
Input
N A0 B0 L0 A1 B1 L1 [3<=N<=1000,1<=A0<=B0<=L0<=N,1<=A1<=B1<=L1<=N]
Output
Exactly 5 lines,each contains: a) A sequence (We name it S) consisting only characters 0 and 1 and no extra whitespaces, which satisfy the following conditions: The number of 0 in any consecutive subsequence of S whose length is L0 is not more than B0 and not less than A0. The number of 1 in any consecutive subsequence of S whose length is L1 is not more than B1 and not less than A1. or b)A single number -1,if the sequence which satisfies the conditions above doesnt exist.
Example
Input: 6 1 2 3 1 1 2 [and 4 test cases more] Output: 010101 [and 4 test cases more]
Added by: Blue Mary Date: 2007-04-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1999,Day 1; translated by Blue Mary
Input
The very first line contains a integer number T. T test cases follow. For each test case, the first line contains a single integer number N (N<=10000), the second line contains a single integer number M (M<=10). The cake must be made of M cylinders and its volume must be N*Pi.
Output
For each test case, a single line containing a single integer S must be written to output. The required minimum area must be S*Pi.
Example
Sample Input: 1 100 2 Sample Output: 68
Added by: Blue Mary Date: 2007-04-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1999,Day 1; translated by Blue Mary
Input
The very first line of the input contains a single integer T, the number of test cases. T blocks follow. For each test case, the first line contains a single integer N=|V|(N<=1000). N lines follow, each contains 3 integers, the X-coordinate, the Y-coordinate and the weight(the absolute value of the weight<=100) of the ith integer point, separated by single spaces.
Output
T lines,each contains a single integer - the maximum sum of weights.
Example
Input: 1 5 0 0 -2 0 1 1 1 0 1 0 -1 1 -1 0 1 Output: 2
Added by: Blue Mary Date: 2007-04-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1999,Day 2; translated by Blue Mary
Input
Ten test cases (given one after another, you have to process all!).For each test case: The first line is a number N, which shows the number of memory cells. There addresses are 0..n-1. Less than 10000 lines follow, each contains 3 integers X, M(M<=N), P describing the programs. A line containing three zeroes denotes the end of a test case. The programs have been sorted by there application time X. All numbers in the input and output file will be less than 10 9 .
Output
For each test case output two lines. The first line contains a single integer, which shows the time when all the programs have been run and stops normally. The second line contains a single integer, which is the number of programs which has been put into the queue.
Example
Input: 10 1 3 10 2 4 3 3 4 4 4 1 4 5 3 4 0 0 0 [and 9 test cases more] Output: 12 2 [and 9 test cases more]
Added by: Blue Mary Date: 2007-04-01 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 1999,Day 2; translated by Blue Mary
The program runs following the following rules: Program starts from the sentence whose level is minimum, and executed by the level from low to high except that the sentence is<goto>or<condition>. All variables are initialized to 0. <Addition>means<variable>+=<integer>in C++. <output>means write the value of<variable>to the output file(we arent interesting about the real output file.) <condition>means if and only if the value of the <variable> equals to <integer>, <goto> will be executed, otherwise the next sentence executed is as usual. After<goto>, the next sentence executed is the sentence with level which equals to the level in<goto>. Program terminates by itself when <end> is executed. The numbers during the program is running will fit in a signed 32-bit integer. The number of sentences in the program is not more than 100. The length of each line in the input file is not more than 20. The input is correct. The sentence with the maximum level is always <end>. Any level is not more than 3000. Input terminate by EOF.
Output
Output the number of sentences executed.If the program can not terminate by itself,output -1.
Example
Input: 10 A+1 20 IF A=5 GO 60 60 END 30 A+2 40 A? 50 GO 20 Output: 11 Hint: 10->20->30->40->50->20->30->40->50->20->60
Note
You may try problem ANALYS_T first. Its the same problem with this one and its time limit is not so strict.
Log
The time limit of this problem has been changed from 0.4/0.5 second to 1 second per test on Jun.5, 2008. All the solutions have been rejudged. Added by: Blue Mary Date: 2007-04-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2000,Day 1; translated by Blue Mary
Input
The first line contains a single integer t.t blocks follow. To every block,the first line contains a single integer n(1<=n<=1000). n lines follow,each contains a string whose length is more than 4 and less than 12.The string contains only a-m and doesnt contain any whitespaces. At least 90% of test cases satisfy that n<=5. At least 80% of test cases satisfy that n<=2. In at least 70% of test cases, there are at most 5 different characters in all the equations.
Output
If there doesnt exist n equations that can be translated to H.L.s equations,print a line contains the word noway .Otherwise you should output all the corresponding relations that can be fixed in lexicographic order,see the example.
Example
Input 1 2 abcdec cdefe Output
a6 b* d= f+
hint
The two strings can be translated to the following equations possibly:
6*2=12 2=1+1 6*4=24 4=2+2 6*8=48 8=4+4
So the corresponding relations above can be fixed,others can not. Added by: Blue Mary Date: 2007-04-01 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2000,Day 2; translated by Blue Mary
Input
There is a single integer T in the very first line of the input denoted the number of tests.T blocks follow. For each test case: The first line contains a single integer n(n<=6).The second line contains a single integer m(m<=150).n lines follow,each contains two space-separated integers ki and pi, i=1,2,...,n. All pi are positive. [IMAGE]
Output
For each test case output a single line ,which contains a single integer - the answer.You may assume this number is less than 2^31.
Example
Input: 1 3 150 1 2 -1 2 1 2 Output: 178
Warning: The time limit is very strict for this problem. Blue Marys Note: test data were modified on Dec.4, 2007. All the solutions have been rejudged.
Added by: Blue Mary Date: 2007-04-01 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2001,Day 2; translated by Blue Mary
With her genius, Blue Mary knows that the 5th number is the key to solve the problem, but in some lines the 5th numbers were destoryed and we cannot know what they are instantly. After some days, she finds out the way to calculate the 5th number finally, which is: A Regular Expression(RE) is a string which only contains characters {,[,(,),],} and satisfies the rules below. An empty string is an RE. If theres no character [,],{,} in RE A, then (A) is an RE. If theres no character {,} in RE A, then [A] is an RE. If A is an RE, {A} is an RE. If both A and B are REs, AB is an RE. For example "()(())[]", "{()[()]}", "{{[[(())]]}}"(all without quotes) are REs and "()([])()","[()" are not REs. The deep of an RE A, D(A), is defined as below: If A is an empty string,D(A)=0; If A can be written as BC, D(A)=max(D(B),D(C)); If A can be written as (B) or [B] or {B}, D(A)=D(B)+1. Such as D("(){()}[]")=2. Suppose the first 4 numbers in current line are L1,L2,L3 and D, then the 5th number in current line is the number of REs modudo 11380.Each of the REs must have a depth of D and is made of L1 {}, L2 [] and L3 (). Now Mary needs your help to work out the 5th number.
Input
Input contains exactly 10 test cases.Each test case contains one line, which contains 4 numbers L1,L2,L3,D(0<=L1,L2,L3<=10, 0<=D<=30), separated by single spaces.
Output
Ten lines, each contains a single integer denoted the 5th number.
Example
Input: 1 1 1 1 0 0 6 3 1 1 1 2 [and 7 test cases more] Output: 6 57 8 [and 7 test cases more]
Added by: Blue Mary Date: 2007-04-01 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2001,Day 2; translated by Blue Mary
Problem
Addition,subtration and multiplication is necessary wherever you are in the galaxy.You are to write a program to perform these operations, and you can see 6*7=42 or 67-25=42 or 31+11=42, maybe one of them is the problem of Life, the Universe and Everything. Please note that the solution may only be submitted in Brainf**k, Whitespace and Intercal, other languages like C/C++/Pascal/Java are not allowed! If you want to use other languages to solve this problem, you may try this one.
Input
Multiple test cases, the number of them T is given in the very first line, T<=99. Each test case contains one line which has the following form: num oper num where num is an integer number between 1 and 99, and oper is + or - or * (without quotes). Theres no extra whitespace and leading zero in the input.
Output
For each test case you should output one line which contains the answer without any leading zeros.You may assume this number is always a positive one.
Example
Input: 3 6*7 67-25 31+11
Output: 42 42 42
Added by: Blue Mary Date: 2007-04-01 Time limit: 17s Source limit:17000B Languages: WSPC BF ICK Resource: Folklore, description and test data by Blue Mary
Input
Ten test cases(Given one after another, you have to process all!). For each test case the first line contains 3 integers N(1<=N<=300),M(2<=M<=N),K(1<=K<=N), separated by single spaces. The N fruits are numbered 1..N, and the biggest fruit is always numbered 1. N-1 lines follow, each contains 3 integers i,j,k separated by spaces denoted that there is a branch between fruit i(1<=i<=N) and fruit j(1<=j<=N) and the weight of illness of this branch is k(0<=k<=100000).
Output
Ten lines, each contains a single integer - the minimum weight of illness of the hydra. If we cant divide the fruit into M groups, output "-1"(without quotes).
Example
Input: 8 2 4 1 2 20 1 3 4 1 4 13 2 5 10 2 6 12 3 7 15 3 8 5 [and 9 test cases more] Output: 4 [and 9 test cases more]
Link
After solving this problem you can try the problem DRAGON2. Blue Marys Note: test data has been modified on Dec.12, 2007. All the solutions have been rejudged. Added by: Blue Mary Date: 2007-04-01 Time limit: 9s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2002,Day 1; translated by lcosvse
1462. Barbarians
Problem code: BARB
There are N Barbarians living on an unknown island. On the island there are M caves, we can number them 1, 2, ..., M clockwise. When we find the island, the barbarians are living in N distinct caves numbered C1,C2,...,CN.Every year each barbarian walks out of his cave and goes along the road,passes Pi caves and then go into that cave.Every Barbarian has a living time: Li years, after Li years the ith barbarian died. We are surprised to find out that no two barbarians live in one cave in the same year so no conflicts have happened.We are interesting about the minimum number of caves on the island. Please note that this problem has a somewhat strict source limit and time limit.
Input
The very first line contains a single integer T,the number of test cases.T blocks follow. For each test case, the first line contains a single integer N(N<=15).N lines follow,each contains 3 integers Ci(1<=Ci<=100),Pi(1<=Pi<=100),Li (1<=Li<=1,000,000).
Output
For each test case, the first and only line contains a single integer M - the answer.You may assume M<=1,000,000.
Example
Input: 1 3 1 3 4 2 7 3 3 2 1 Output: 6 Hints ------------------------------------------------| Year | Barb. No.1 | Barb. No. 2 | Barb. No. 3 | ------------------------------------------------| 0 | 1 | 2 | 3 | ------------------------------------------------| 1 | 4 | 3 | 5 | ------------------------------------------------| 2 | 1 | 4 | Died | -------------------------------------------------
Added by: Blue Mary Date: 2007-04-01 Time limit: 5s Source limit:2048B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2002,Day 2; translated by Blue Mary
Input
The very first line contains a single integer T,the number of test cases.T blocks follow. For each block, the first line contains a single integer K.K lines follow, each contains two integers p i and a i separated by a single space. M = p 1 a 1 * p 2 a 2 * p 3 a 3 * ... * p K a K . You can assume that: All p i are distinct primes and are less than 10,000. p 1 < p 2 < p 3 < ... n. All a i are positive and no more than 1,000,000. 1 <= k <= 1000.
Output
For each test case, output 3 lines. The first line contains a single integer denotes to the sum of good numbers of all businessmen among Robot No.M and his teachers modudo 10000. The second line contains a single integer denotes to the sum of good numbers of all hackers among Robot No.M and his teachers modudo 10000. The third line contains a single integer denotes to the sum of good numbers of all doctors among Robot No.M and his teachers modudo 10000.
Example
Input: 1 3 2 1 3 2 5 1 Output: 8 6 75
Hints
In the sample input, M=2 1 *3 2 *5 1 =90. Robot No.90 has 10 teachers.Among Robot No.90 and his teachers, Robot No.15 is a businessman; No.3 and No.5 are hackers; all others are doctors, their numbers are 2,6,9,10,18,30,45,90.
Added by: Blue Mary Date: 2007-04-01 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2002,Day 2; translated by Blue Mary
1464. Editor II
Problem code: EDIT3
Background
After trying to solve problem EDIT1(Editor) and being ****ed by Brainf**k, Blue Mary decided to set another difficult problem about editor.
Description
Some definations: Text: Its a sequence that consists characters whose ASCII code is in [32,126]. Cursor: Its a sign for pointing out the current position.It can be at the start or the end of the text or between two consecutive characters of the text. Editor is a structure.It contains one text and one cursor.The operations are listed below:
-------------------------------------------------------------------------| Name | Input format | function | -------------------------------------------------------------------------| Move(k) | Move k | Move the cursor after the kth character | | | | in the text. If k=0, you should put | | | | the cursor at the start of the text. | -------------------------------------------------------------------------| Insert(n,s) | Insert n s | Insert string s whose length is n(>=1) | | | | after the cursor.The cursor doesnt move. | -------------------------------------------------------------------------| Delete(n) | Delete n | Delete n(>=1) characters after the cursor.| | | | The cursor doesnt move. | -------------------------------------------------------------------------| Get(n) | Get n | Output n(>=1) characters after the cursor.| -------------------------------------------------------------------------| Prev() | Prev | Move the cursor one character forward. | -------------------------------------------------------------------------| Next() | Next | Move the cursor one character backward. | --------------------------------------------------------------------------
If the text of a editor is empty,we say the editor is empty. Here is an example._ denotes to the cursor,$ denotes to the start and the end.At start the editor is empty.
-----------------------------------------------------------------------------| Operation | Text after the operation | Output | -----------------------------------------------------------------------------| INSERT(13,"Balanced tree") | $_Balanced tree$ | $$ | -----------------------------------------------------------------------------| MOVE(2) | $Ba_lanced tree$ | $$ | -----------------------------------------------------------------------------| DELETE(5) | $Ba_d tree$ | $$ |
-----------------------------------------------------------------------------| NEXT() | $Bad_ tree$ | $$ | -----------------------------------------------------------------------------| INSERT(7," editor") | $Bad_ editor tree$ | $$ | -----------------------------------------------------------------------------| MOVE(0) | $_Bad editor tree$ | $$ | -----------------------------------------------------------------------------| GET(15) | $_Bad editor tree$ | $Bad editor tree$ | ------------------------------------------------------------------------------
Your task is: Build an empty editor. Read some operations from the standard input and operate them. For each Get operation, write the answer to the output.
Input
the very first line contains the number of testcases T(T<=4).T tests follow. For each test, the first line is the number of operations N.N operations follow. Blue Mary is so depressed with the problem EDIT1 that she decides to make the problem more difficult.So she inserts many extra line breaks in the string of the Insert operation.You must ignore them. Except line breaks, all the charaters ASCII code are in [32,126]. Theres no extra space at the end of a line. You can assume that for each test case: No invalid operation is in the input. Number of move operations is no more than 50000. Number of the total of insert and delete operations is no more than 4000. Number of the total of prev and next operations is no more than 200000. The characters inserted will not more than 2MB.The valid output will not more than 3MB.
Output
The output should contain T blocks corresponding to each testcase. For each test case, the output should contain as many lines as the get operations in the input.Each line should contains the output of each get operation.
Example
Input: 1 15 Insert 26 abcdefghijklmnop qrstuv wxy Move 15 Delete 11
Move 5 Insert ^ Next Insert _ Next Next Insert .\/. Get 4 Prev Insert ^ Move 0 Get 22
Warning: large Input/Output data, be careful with certain languages Blue Marys note: the test case #1 has something wrong and it has been fixed on April 27th, 2007.Solutions has been rejudged. Please accept my apology. Added by: Blue Mary Date: 2007-04-01 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2003,Day 1
Input
The number of test cases T is given in the very first line.T blocks follow. For each test case, the first line contains 2 space-separated integers N(3<=N<=200000) and M, which denotes the number of houses and the number of roads in the city.M lines follow, each contains 3 space-separated integers x,y,z(1<=x,y<=n,1<=z<=10 9 ).It tells us there exist a road between house No.x and house No.y, and to go from x to y or from y to x along this road will take z minutes.No two roads are repeated.
Output
For each test case you should output a single line, which contains a single integer - the maximum time measured in minutes.
Example
Input: 1 4 3 1 2 1 2 3 1 3 4 1 Output 4
Added by: Blue Mary Date: 2007-04-01 Time limit: 5s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2003,Day 2; translated by Blue Mary
Input
T [the number of tests <= 10] M MIN [M is the number of commands below, MIN is the least wage] CK [C is one of the 4 characters I,A,S,F. I denotes that Mary should build a new file, and the new workers wage is K(0<=K<=100000) at start.If K is less than MIN, the worker will not join the company. A denotes that the boss increases all the workers wage with K(0<=K<=1000). S denotes that the boss decreases all the workers wage with K(0<=K<=1000). F denotes that the boss asks Blue Mary a question: how much money does the worker who gets the k-th most wage get(K>0)?] [M-1 other commands] [other tests] You may assume that: The number of worker in the company at start is 0. The number of command I is no more than 100000. The total numner of command A and S is no more than 100. The number of command F is no more than 100000.
Output
For each test case: For each F command you must output one line contains a single integer which is the answer or -1 if K is more than the number of workers in the company at that time. In the last line you must output a single integer - the number of workers who leave the company(excluded the ones who dont join the company)
Example
Sample Input: 1 9 10 I 60 I 70 S 50 F 2 I 30 S 15 A 5 F 1 F 2 Sample Output: 10 20 -1 2
Warning: large Input/Output data, be careful with certain languages Added by: Blue Mary Date: 2007-04-01 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2004,Day 1; translated by Blue Mary
Input
The very first line comes a single integer Q, the number of test cases.Q blocks follow. For each test case: The first line contains 4 space-separated integers N(<=10), W(<=100), T(<=100), V(<=50), the number of "Automatic Umbrella", the length of the crosswalk in meters, the total time in seconds and the volume of rain falling to the ground per square meter per second. To simplify the description, we can build a Cartesian coordinate system in the following way: let the left side of the street be the origin, the street be the positive Ox-axes, and the vertical line to the ground be the positive Oy-axes,see the picture below. [IMAGE] Each of the next N lines contains 3 integers xi, li, vi, the initial position(in meter), the length(in meter), the speed(in meter per second) of the i-th umbrella. If vi>0, the umbrella moves to the right side initially; if vi<0, the umbrella moves to the left side initially;if vi=0, the umbrella doesnt move at all. You can assume that the width of the umbrella and the crosswalk is 1 meter, the rain falls vertically, the speed of the rain will not change and the umbrellas and the crosswalk are absolutely horizontal.
Output
For each test case, you should output a single real number(rounded to 2 decimal places) - the answer.You can assume the total distance of all the umbrellas movement will not exceed 550*W.
Example
Input: 1 2 4 3 10 0 1 1 3 1 -1 Output: 65.00
Added by: Blue Mary Date: 2007-04-01 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2004,Day 2; translated by Blue Mary
Input
The very first line contains a single integer T(T<=4), the number of test cases.T blocks follow. For each test case: The first line contains two integers n and m(m<=20000), the number of numbers in the sequence in the beginning and the number of operations. The second line contains n integers seperated by spaces, the sequence in the beginning. Next m lines, each contains an operation listed above. You can assume that for each test case: No invalid operation is in the input. Number of numbers in the sequence is no more than 500000 and not less than 1 at any time. All the numbers in the sequence is in range[-1000,1000] at any time. The total number of numbers inserted will be not more than 4,000,000.The input is no more than 20MB.
Output
For each Get sum and Get maximum partial sum operation,you should write the answer to the output,one per line.
Example
Input: 1 9 8 2 -6 3 5 1 -5 -3 6 3 GET-SUM 5 4 MAX-SUM INSERT 8 3 -5 7 2 DELETE 12 1 MAKE-SAME 3 3 2 REVERSE 3 6 GET-SUM 5 4 MAX-SUM Output: -1 10 1 10 Hints: After the 3rd op., the sequence is 2 -6 3 5 1 -5 -3 6 -5 7 2 3
Warning: enormous Input/Output data, be careful with certain languages Added by: Blue Mary Date: 2007-04-01 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2005,Day 1; translated by lcosvse
Input
Ten test cases(given one after another,you have to process all!), Each contains a big design, A-L denote the filled grids, . denotes the empty grids,see the example. You can assume that the pearl designs used are completely put into the empty grids.
Output
A big design which has no grids that havent been filled and each pearl design is used one and only one time in it,or No solution(without quotes) if theres no solution.If there are multiple solutions,output any.
Example
Input: . .. ... .... ..... .....C ...CCC. EEEHH... E.HHH.... E......... [and 9 test cases more] Output: B BK BKK BJKK JJJDD GJGDDC GGGCCCI EEEHHIIA ELHHHIAAF ELLLLIFFFF [and 9 test cases more]
Added by: Blue Mary Date: 2007-04-01 Time limit: 20s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2005,Day 1; translated by Blue Mary
Input
Multiple test cases, the number of them is given in the very first line. For each test case: The first line contains two space-separated integers N and E. The second line contains two space-separated integers P and Q. E lines then follow, each contains 2 space-separated integers A and B which shows that there is a corridor between room A and room B.
Output
For each test case:
Output one line, which contains a single real number - the expected time unit, rounded to 3 decimal places.
Example
Input: 2 4 3 1 4 1 2 2 3 3 4 9 9 9 3 1 2 2 3 3 4 4 5 3 6 4 6 4 7 7 8 8 9 Output: 1.500 2.167 Hint The calculations for the first example can be found here.
Added by: Blue Mary Date: 2007-04-01 Time limit: 6s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2005,Day 2; translated by Blue Mary
Input
The very first line of the input data contains one integer T, the number of tests. T blocks follow. For each test: The first line of the input data contains one integer number N(N<=500) and a real number Alpha (Alpha>0.3). N denote the number of floors, Alpha denote the included angle of the moonshine and the ground(radian). The second line contains N + 1 real number h0 h1 h2... hn.(hi<=100) h0 denotes the height of the undersurface of the 1st frustum. h1 .. hn denote the height of each floor. The third line contains N real number r1 r2 .. rn(ri<=100), the radii of the undersurface in each floor.
Output
For each data set you should output one line containing a single real number - the area of the shadow. Numbers should be rounded to two decimal places.
Example
Input: 1 2 0.7853981633 10.0 10.00 10.00 4.00 5.00 Output: 171.97
Time limit has been changed from 30 seconds to 13 seconds, some naive solution gets TLE. Added by: Blue Mary Date: 2007-04-01 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2005,Day 2; translated by g201513
Description
A natural number x is called a good number if one or two of the next two conditions is satisfied: 7 is a divisor of x. 7 is a digit of x.
Task
Write a program that: reads a number n from the standard input, computes the number of good numbers in range[1,10 n ], writes the result to the standard output. Solve the problem in at most 0.5kB of source code.
Input
The input begins with an integer t(t<= 210), the number of test cases.t test cases follow. For each test case, the first and only line contains an integer n (1<=n<=500).
Output
For each test case the output consists of one line that contains the answer.
Example
Sample input: 3 1 2 1 Sample output: 1 30 1
Added by: Blue Mary Date: 2007-04-01 Time limit: 2s Source limit:512B Languages: All except: C99 strict Resource: Folklore, description, standard program and test data by Blue Mary
Input
T [The number of tests] n m [n<=5000 m<=50000] P1 P2 P3 ... Pn [Pi<=100] A1 B1 C1 A2 B2 C2 ... Am Bm Cm [1<=Ai,Bi<=n, Ci<=100] [other tests] At least 80% of the tests satisfy that n<=200, m<=1000.
Output
MaximumProfit [other tests]
Example
Input: 1 5 5 1 2 3 4 5 1 2 3 2 3 4 1 3 3 1 4 2 4 5 3 Output: 4 Hints: The service stations to be set are 1,2,3.
Added by: Blue Mary Date: 2007-04-01 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2006,Day 2; translated by Blue Mary
Input
Input consists of multiple test-cases. The first line contains one integer t - number of cases (0 < t <= 20). For each case, the input format is following. The first line contains one integer N (1 <= N <= 100000). The next line N integers s[i] (1 or 0). If s[i] is 1, the i-th node is on the ground. If s[i] is 0, the i-th node is not on the ground. Each line of the following N - 1 lines contains two integers u, v. They denote there is an edge between node u and node v (1 <= u,v <= N). There is no blank line after each case.
Output
For each case, output who will win the game. If ACRush wins, output 1; otherwise, output 0 (Jelly wins). There is no blank line after each case.
Example
Input: 1 4 0 0 0 1 1 2 2 3 2 4 Output: 1
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.5s-1s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line of the input file contains one integer N --- number of nodes in the tree (0 < N <= 10 6 ). Next N-1 lines contain N-1 edges of that tree --- Each line contains a pair (u, v) means there is an edge between node u and node v (1 <= u, v <= N).
Output
At the first line, output number of nodes in the optimal subtree you found. Next lines, print all edges belong to that subtree, each line contains a pair u v means an edge between node u and node v.
Example
Input: 5 1 2 2 3 2 4 2 5 Output: 5 1 2 2 3 2 4 2 5
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.100s-10s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line contains two integers n, m (1 <= n <= 200, n - 1 <= m <= 20000). Each line of the following m lines contains three integers u, v, w (u != v, 0 <= w <= 10 5 ). They denote there is a road with length w between city u and city v.
Output
The first line contains one integer which is the farthest distance between cities after the simplification. Each line of the follow n - 1 contains two integers u, v (u < v). They denote there is an road between city u and city v in the simplification plan. If there are many optimal solutions, any of them will be accepted.
Example
Input: 3 3 1 2 1 2 3 1 1 3 1 Output: 2 1 2 1 3
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 1s Source limit:50000B Languages: All Resource: Co-author Amber
Input
Each line contains three integers k, n, p. k denotes which kind of query this case is. For Kind 1 or Kind 2 query, 1 <= n <= 10 9 . For Kind 3 or Kind 4 query, 1 <= n <= 10 3 and n <= p. For all queries, 2 <= p <= 10 4 and p is a prime.
Output
For each query, output a line which contains only one integer.
Example
Input: 1 2 2 2 2 3 3 2 5 4 2 3 Output: 1 2 1 1
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.300s-4s Source limit:50000B Languages: All Resource: Co-author Amber
Input
There may be many maps in one input file. The first line of file is number of maps T (0 < T <= 10). The following line is blank. Then, there are the descriptions of T maps. For each map, the first line contains one integer N --- number of places in the Disneyland (0 < N <= 10000). We number places from 1 to N. Next N-1 lines contain N-1 rails between places --- Each line contains a pair (u, v) means there is a rail between place u and place v (1 <= u,v <= N). There is a blank line after each description.
Output
For each map, the first line, write minimal number of routes K. Next K lines, show out the routes in your solution, each has form u[1] u[2]...u[m], means the route starts at place u[1] then visits place u[2],..., ends at place u[m]. So between 2 consecutive places in each route must have a rail. If there are many solutions, any of them will be accepted.
Example
Input: 1 7 1 2 2 4 5 6
2 3 4 6 6 7
Output: 3 1 2 3 4 5 6 7
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.100s-0.5s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line of file is T -- number of halls in THU (0 < T <= 10). The following line is blank. Then, there are the descriptions of T halls. For each hall, the first line contains one integer kind. kind denotes which kind of the current hall: 1 is a small hall, 2 is a large one. On next line, there are two cases: For Kind 1, first line is n (1 <= n <= 27) -- number of lights. Next n - 1 lines describe wires in this hall. Each line is pair (u, v) -- there is a wire between light u and v (1 <= u, v <= n). For Kind 2, only one line contains two numbers k and t (1 <= k, t <= 1000).
Output
For each hall, show us n numbers on one line, i-th number is the color id of i-th light. If there are many solutions any of them will be accepted. Otherwise, if there is no solution, all color id should be -1. The color ids on one line are separated by exactly one blank, and youd better not print any redundant blanks. There is no blank line after each case.
Example
Input: 2 1 3 1 2 2 3 2 2 1 Output: 0 2 1 0 4 2 1 3
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.100s-2s Source limit:50000B Languages: All Resource: Co-author Amber
For identifying the elements in a document, we number the elements in according to the order that the start tags of the elements appear in the document. For instances, "THU" is numbered 1. The first "Team" is numbered 2. "ACRush" is numbered 3. "Ahyangyi" is numbered 8. The problem of querying XML documents has been given much attention by researchers. Now we are given a querying pattern of XML documents and a text of XML documents. The following is an valid example for pattern.
<Team><Cooly></Cooly></Team>
And we are requested to find all occurrences of the pattern in the text of XML documents. Here, the pattern occurs at a particular text position if placing the pattern with root element at that text position leads to a situation in which each pattern element overlaps some text element with the same label. Because the sibling elements have different labels, there is only one way to put the pattern into the text.
Input
There are two parts in the input file. The first part is a valid XML documents with exactly one root element. The second part is a valid XML documents as querying pattern with exactly one root element. Please ignore all whitespaces (unvisiable characters) in the input file, i.e. only consider the uppercase and lowercase letter and "/", "<", ">". Assume XML documents is always strictly a rooted tree. The input file is less than 100kb.
Output
Output all the occurrences of pattern in a text of XML documents. The first line consists of an integer n that denotes the number of the occurrences. Then the next n line, each line consists of an id number of an element that occurs the query pattern. Please print them in increasing order.
Example
Input: <THU> <Team> <ACRush></ACRush> <Team><Cooly></Cooly></Team> Output: 2 2 7 <Jelly></Jelly> <Cooly></Cooly> </Team> <JiaJia> <Team> <Ahyangyi></Ahyangyi> <Dragon></Dragon> <Cooly><Amber></Amber></Cooly> </Team> </JiaJia></THU>
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.100s-3s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The first line contains one integer n (1 <= n <= 10 5 ). The next line contains n integers l i (0 <= l i <= 10 9 ) which denotes the label of the i-th node. Each line of the following n - 1 lines contains two integers u, v. They denote there is an edge between node u and node v. Node 1 is the root of the tree. The next line contains one integer m (1 <= m <= 10 4 ) which denotes the number of the queries. Each line of the next m contains two integers x, k. (k <= the total node number in the subtree of x)
Output
For each query (x, k), output the index of the node whose label is the k-th largest in the subtree of the node x.
Example
Input: 5 1 3 5 2 7 1 2 2 3 1 4 3 5 4 2 3 4 1 3 2 3 2 Output: 5 4 5 5
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 1s-1.100s Source limit:50000B Languages: All Resource: Co-author Amber
Input
The input file contains two bunches of balloons (or trees). The first is of WinD, the second is of Amber. The first line of the input file contains one integer N - number of balloons in the bunch T1 (1 <= N <= 500). Balloons are numbered from 1 to N. In next N lines, the i-th line contains the ordered children list of the i-th balloon. The first integer l[i] of the i-th line is the color id of the i-th balloon (0 <= l[i] <= 10 4 ). The second integer c[i] of the i-th line c[i] is the number of the children of the i-th balloon. Then c[i] integers followed, which means the ordered children list of the i-th balloon.
The remaining part of the input file is the description of the second bunch of balloons T2. The format is the same as T1.
Output
Output minimum number of operators JiaJia needs to do.
Example
Input: 3 1 2 2 3 2 0 1 0 2 1 1 2 3 0 Output: 2
Explanation
We cut the string connected between 1st balloon and 3rd balloons, then change the color of 2nd balloon to 3.
Added by: Thanh-Vy Hua Date: 2007-04-07 Time limit: 0.100s-2.5s Source limit:50000B Languages: All Resource: Co-author Amber
1505. Whac-a-Mole
Problem code: MOLE
Map While visiting a traveling fun fair you suddenly have an urge to break the high score in the Whac-a-Mole game. The goal of the Whac-a-Mole game is to... well... whack moles. With a hammer. To make the job easier you have first consulted the fortune teller and now you know the exact appearance patterns of the moles. The moles appear out of holes occupying the n 2 integer points (x, y) satisfying 0 <= x, y <n in a two-dimensional coordinate system. At each time step, some moles will appear and then disappear again before the next time step. After the moles appear but before they disappear, you are able to move your hammer in a straight line to any position (x2 , y2 ) that is at ditance at most d from your current position (x1 , y1 ). For simplicity, we assume that yo can only move your hammer to a point having integer coordinates. A mole is whacke if the center of the hole it appears out of is located on the line between (x1 , y1 ) an (x2 , y2 ) (including the two endpoints). Every mole whacked earns you a point. Whe the game starts, before the first time step, you are able to place your hammer anywher you see fit.
Input
The input consists of several test cases. Each test case starts with a line containing three integers n, d and m, where n and d are as described above, and m is the total number of moles that will appear (1 <= n <= 20, 1 <= d <= 5, and 1 <= m <= 1000). Then follow m lines, each containing three integers x, y and t giving the position and time of the appearance of a mole (0 <= x, y < n and 1 <= t <= 10). No two moles will appear at the same place at the same time. The input is ended with a test case where n = d = m = 0. This case should not be processed.
Output
For each test case output a single line containing a single integer, the maximum possible score achievable.
Example
Input: 4 2 6 0 0 1 3 1 3 0 1 2 0 2 2 1 0 2 2 0 2 5 4 3 0 0 1 1 2 1 2 4 1 0 0 0
Output: 4 2
Added by: Abhilash I Date: 2007-04-19 Time limit: 5s Source limit:50000B Languages: All
Input
The input consists of exactly 10 test cases. The first line of each test case contains n (2 <= n <= 1000), the number of players. Each of the following n lines contains one non-negative integer s i (0 <= s i <= 1000000), the scores of the players in the current order. You may assume that all scores are distinct.
Output
For each test case, print in one line the number of moves used to create the ranklist. The following lines should specify the moves in the order in which they are applied. Each move should be described by a line containing two integers i and j, which means that the player at position i is moved to position j. The numbers i and j must be separated by a single space.
Example
here only one test case
Input: 5 20 30 5 15 10 Output: 2 2 1 3 5
Added by: Adrian Kuegel Date: 2007-05-04 Time limit: 4s Source limit:50000B Languages: All Resource: own problem, used in BOI 2007
Input
Ten test cases(given one after another,you have to process all!)For each test case, the first line is a single integer n(n<=21).Next 3 lines contains 3 strings, each of them has a length of n and contains only first n capital latin characters.The sum of the numbers the first two strings indicates equals to the number the third string incicates.The numbers can have leading zeros and each of their bases is n.
Output
For each test case you should output one line contains n numbers separated by spaces, which is a permutation of integer numbers 0 to n-1.Number x is on the k-th position iff x is replaced by the kth capital latin character.There is one and only one solution for each test case.
Example
Input: 5 ABCED BDACE EBBAA [and 9 test cases more] Output: 1 0 3 4 2 [and 9 test cases more]
Added by: Blue Mary Date: 2007-05-08 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: description by Blue Mary
Input
There will be multiple cases to consider. The input for each case begins with an integer n, between 1 and 10, that specifies the number of rows in the modified chessboard. Following n there will be n pairs of integers, with the ith pair corresponding to the ith row of the chessboard. The first integer of each pair indicates the number of squares skipped at the beginning of the row. The second integer indicates the number of squares in the row (which will always be at least 1).The last case will be followed by the integer 0. For example, input for the case illustrated by the chessboard shown above would be: 703030404131744 The maximum dimensions of the board will be 10 rows and 10 columns. That is, any modified chessboard specified by the input will fit completely on a 10 row, 10 column board.
Output
For each input case, display the case number (1, 2, ...), and the number of squares that the knight can not reach. Display the results in the format shown in the examples below.
Example
Input: 7 0 3 0 3 0 4 0 4 1 3 1 7 4 4 3 0 3 0 3 0 3 2 0 1 2 1 0 Output: Case 1, 4 squares can not be reached. Case 2, 1 square can not be reached. Case 3, 0 squares can not be reached.
Added by: Camilo Andrs Varela Len Date: 2007-05-11 Time limit: 5s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
1552. Mobiles
Problem code: MOBILE2
You have been asked to buy a gift for your baby brother, Ike. However, you have noticed that Ike has a very particular taste in gifts. He only likes gifts that are configured in his particular style. You have found a shop that sells mobiles. A mobile is a multi-layered decoration that is typically hung from the roof. Each mobile consists of a series of horizontal rods connected by vertical wires. Each rod has a wire hanging from both ends, which holds either another horizontal rod or a toy. A sample mobile is shown below: [IMAGE] To satisfy your brother, you need to find a mobile that can be reconfigured so that: (i) any two toys are either at the same level (that is, joined to the roof by the same number of rods), or di.er by only one level; (ii) for any two toys that differ by one level, the toy to the left is further down than the toy to the right. Mobiles can be reconfigured by performing swaps. A swap involves taking some rod, unhooking whatever is hanging beneath the left and right ends, and reattaching them at opposite ends (that is, the right and left ends respectively). This process does not modify the ordering of any rods or toys further down. Since you are training for the Informatics Olympiad, you decide to write a program to test whether a given mobile can be reconfigured into a gift that Ike will like! As an example, consider the mobile illustrated earlier. Ike will not like this mobile. Although it satisfies condition (i), it breaks condition (ii) -- the toy at the leftmost end is at a higher level than the toys to its right. However, the mobile can be reconfigured into a mobile that Ike will like. The following swaps are required: 1. First, the left and right ends of rod 1 are swapped. This exchanges the positions of rods 2 and 3, resulting in the following configuration: [IMAGE] 2. Second, and finally, the left and right ends of rod 2 are swapped. This moves rod 4 to the left end of rod 2, and the toy to the right end of rod 2. [IMAGE]
It can be seen that this final mobile satisfies Ikes requirements. All toys are at most one level apart, and the toys at a lower level are further to the left than the toys at a higher level. Your task is, given a description of a mobile, to determine the smallest number of swaps required to reconfigure it so that Ike will like it (if this is possible). You may assume that the toys can never get in each others way.
Input
Multiple test cases, the number of them will be given at the very first line. For each test case: The first line of input will contain the single integer n (1 <= n <= 100 000) representing the number of rods in the mobile. The rods are numbered 1, 2 , ..., n. The following n lines will describe the connections for each rod. Specifically, the ith of these lines will describe rod i. Each of these lines will contain two integers l r separated by a single space, indicating what is hung beneath the left and right ends of the rod respectively. If a toy is hung beneath this rod, the corresponding integer l or r will be -1. Otherwise the integer l or r will be the number of a rod that is hung beneath this rod. If there are any rods hanging beneath rod i, these rods will have numbers strictly greater than i. Rod 1 is the single rod at the top of the mobile.
Output
Output should consist of a single line containing a single integer, giving the smallest number of swaps required to reconfigure the mobile according to Ikes constraints. If this is not possible, you should output the integer -1.
Example
Input: 1 6 2 3 -1 4 5 6 -1 -1 -1 -1 -1 -1 Output: 2
Added by: Blue Mary Date: 2007-05-14 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Asia-Pacific Informatics Olympiad(APIO) 2007
Input
Multiple test cases, the number of them will be given at the very first line. For each test case: The first line of input will contain the integers n and k, representing the number of offices on the street (2 <= n <= 100 000) and the number of available network cables (1 <= k <= n/2). The following n lines will each contain a single integer (0 <= s <= 1 000 000 000), representing the distance of each office from the beginning of the street. These integers will appear in sorted order from smallest to largest. No two offices will share the same location.
Output
Output should consist of a single positive integer, giving the smallest total length of network cable required to join 2k distinct offices into k pairs.
Example
Input: 1 5 2 1 3 4 6 12 Output: 4 Explanation The sample input above represents the example scenario described earlier.
Warning: large input/output data,be careful with certain languages Blue Marys Note: test data has been modified on Dec. 5, 2007. All the solutions have been rejudged. Added by: Blue Mary Date: 2007-05-14 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Asia-Pacific Informatics Olympiad(APIO) 2007
1554. Zoo
Problem code: ZOO
The pride of the Asia-Pacific region is the newly constructed Great Circular Zoo. Situated on a small Pacific island, it consists of a large circle of different enclosures, each containing its own exotic animal as illustrated below. [IMAGE] You are in charge of public relations for the zoo, which means it is your job to keep people as happy as possible. A busload of schoolchildren has just arrived, and you are eager to please them. However, this is no easy task|there are animals that some children love, and there are animals that some children fear. For example, little Alex loves monkeys and koalas because they are cute, but fears lions because of their sharp teeth. On the other hand, Polly loves lions because of their beautiful manes, but fears koalas because they are extremely smelly. You have the option of removing some animals from their enclosures, so that children are not afraid. However, you are worried that if you remove too many animals then this will leave the children with nothing to look at. Your task is to decide which animals to remove so that as many children can be made happy as possible. Each child is standing outside the circle, where they can see five consecutive enclosures. You have obtained a list of which animals each child fears, and which animals each child loves. A child will be made happy if either at least one animal they fear is removed from their field of vision, or at least one animal they love is not removed from their field of vision. For example, consider the list of children and animals illustrated below: [IMAGE]
----------------------------------------------------------------------|Child |Enclosures Visible |Fears |Loves | |Alex |2, 3, 4, 5, 6 |Enclosure 4 |Enclosures 2, 6| |Polly |3, 4, 5, 6, 7 |Enclosure 6 |Enclosure 4 | |Chaitanya |6, 7, 8, 9, 10 |Enclosure 9 |Enclosures 6, 8| |Hwan |8, 9, 10, 11, 12 |Enclosure 9 |Enclosure 12 | |Ka-Shu |12, 13, 14, 1, 2 |Enclosures 12, 13, 2 || -----------------------------------------------------------------------
Suppose you remove the animals from enclosures 4 and 12. This will make Alex and Ka-Shu happy, because at least one animal that they fear has gone. This will also keep Chaitanya happy, since both enclosures 6 and 8 still contain animals that he loves. However, both Polly and Hwan will be unhappy, since they cannot see any animals that they love but they can still see all the animals that they fear. This arrangement therefore gives a total of three happy children. Now suppose you put these animals back into their enclosures, and remove the animals from enclosures 4 and 6 instead. Alex and Polly will be happy because the animals that they fear in enclosures 4 and 6 have gone. Chaitanya will be happy because, even though animal 6 has gone, he
can still see the animal in enclosure 8 which he loves. Likewise, Hwan will be happy because she can now see the animal in enclosure 12, which she loves. The only person unhappy will be Ka-Shu. Finally, suppose you put the animals back once more and then remove only the animal from enclosure 13. Ka-Shu will now be happy since one animal that he fears has been removed, and Alex, Polly, Chaitanya and Hwan will all be happy since they can all see at least one animal that they love. Thus this arrangement gives five happy children, the largest number possible.
Input
Multiple test cases, the number of them will be given at the very first line. For each test case: The first line will be of the form N C, where N is the number of animal enclosures (10 <= N <= 10 000) and C is the number of children (1 <= C <= 50 000). The enclosures are numbered 1, 2, ...,N clockwise around the circle. Following this will be C additional lines of input, where each line describes a single child. Each of these lines will be of the form:
E F L X1 X2 ... XF Y1 Y2 ... YL;
where: E is the first enclosure that the child can see (1 <= E <= N). In other words, the child can see enclosures E, E + 1, E + 2, E + 3 and E + 4. Note that numbers larger than N wrap back around the circle, so if N = 14 and E = 13 then the child can see enclosures 13, 14, 1, 2 and 3. F is the number of animals that the child fears, and L is the number of animals that the child loves. Enclosures X1,...,XF contain the animals that the child fears (1<=X1,...,XF<=N). Enclosures Y1,...,YL contain the animals that the child loves (1<=Y1,...,YL<=N). No two of the integers X1,...,XF,Y1,...,YL are equal, and all of these integers describe enclosures that the child can see. Children will be listed in sorted order according to the first enclosure E (so the child with lowest E will appear first and the child with largest E will appear last). Note that more than one child may have the same first enclosure E.
Output
Output must consist of a single integer, giving the largest number of children that can be made happy.
Example
Sample Input: 2 14 5 2 1 2 4 2 6 3 1 1 6 4 6 1 2 9 6 8 8 1 1 9 12 12 3 0 12 13 2 12 7
1 1 1 1 5 5 1 1 5 7 5 0 3 5 7 9 7 1 1 7 9 9 1 1 9 11 9 3 0 9 11 1 11 1 1 11 1 Sample Output: 5 6 Explanation: The first sample case is the example discussed earlier, in which all C = 5 children can be made happy. The second sample case is an example in which it is impossible to make all C = 7 children happy.
Warning: large input/output data,be careful with certain languages Added by: Blue Mary Date: 2007-05-14 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Asia-Pacific Informatics Olympiad(APIO) 2007
Input
Line 1: integer N (1 <= N <= 100000); Line 2: N integers denoting the score of each problem, each of them is a integer in range [-100000, 100000]; Line 3: integer Q (1 <= Q <= 100000); Line 3+i (1 <= i <= Q): two integers X and Y denoting the ith question.
Output
Line i: a single integer, the answer to the ith question.
Example
Input: 9 4 -2 -2 3 -1 -4 2 2 -6 3 1 2 1 5 4 9
Output: 4 5 3
Warning: large input/output data,be careful with certain languages Added by: Blue Mary Date: 2007-05-16 Time limit: 1s-5s Source limit:50000B Languages: All except: C99 strict Resource: Description, standard program and test data by Yang Zhe
1644. Trees
Problem code: TREEOI14
Byteasar has a cottage. Lately, he has bought n trees and had them planted all in one row. Byteasar does not, however, like the order which the trees have been planted in. It particularly annoys him that tall and short ones have been mixed up, and the composition does not meet his aesthetic criteria. Byteasar has invented a disorder coefficient so as to allow the gardener to comprehend his intentions: the lower the value of the coefficient the prettier the row of trees. It is defined in the following way: |h 1 -h 2 |+ |h 2 -h 3 |+...+|h n-1 -h n |, where h 1 ,h 2 , . . . ,h n are the heights of consecutive trees in a row. Replanting is a very toilsome and cumbersome task, therefore Byteasar has ordered the gardener to replant two trees at the most (i.e. interchange their positions). The task of the gardener is to choose the pair to replant in a way that makes the disorder coefficient the smallest. The gardener is not sure if he has chosen the correct pair of trees and he fears he may lose his job if he is mistaken. Help him: for each tree calculate the minimal disorder coefficient that may be attained by switching places with any other tree.
Task
Write a program which: reads the height of the consecutive trees in a row from the standard input, for each tree calculates the minimal disorder coefficient that may be attained should it switch places with some other tree (or should there be no change at all), writes the outcome to the standard output.
Input
The first line of the standard input contains one integer n (2 <= n <= 50000). The other contains n integers h i (1 <= h i <= 100000000) separated by single spaces, denoting the height of the consecutive trees in the row.
Output
The output should consist of precisely n lines. The i-th line should contain a single integer - the smallest disorder coefficient attainable when considering replanting of the i-th tree.
Example
Input: 5 7 4 5 2 5 Output:
7 7 8 7 7
* Added some unofficial tests Added by: Thanh-Vy Hua Date: 2007-06-09 Time limit: 1s-6s Source limit:50000B Languages: All Resource: Polish Olympiad 14
Input
The first line of the input contains a single integer T, the number of test cases (1<=T<=30) . Each test case starts with a single line containg the values M,N,K and L ( 1<=M<=10000, 1<=N<=10000, 0<=K<=50, 1<=L<=10). It is followed by K lines, each line containing 4 integers separated by single spaces, x 1 ,y 1 ,x 2 ,y 2 where (x 1 ,y 1 ) and (x 2 ,y 2 ) are the zero based coordinates of lower left and upper right vertex of the carpet. Assume that x 1 <x 2 and y 1 <y 2 . The carpets may cover each other. Water would not be able to seep through even if two carpets touch in a corner.
Output
For each test case, print the maximum area that can be watered on a single line
Example
Input: 2 10 10 0 1 10 10 1 1 3 3 4 4 Output: 100 99
Added by: Rahul Garg Date: 2007-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: C-maphore, Tryst 2007
Input
First line contains a single integer integer T, the number of test cases ( 1<=T<=100). Each test case is described on two lines. First line contains two integers, N and K ( 1<=N<=2 63 -1, 1<=K<=50) , the second line contains a space separated list of K integers, the a i s ( 1<=a i <=1000).
Output
For each test case, output on a single line 1-based indices of the days (separated by a single space) he should attend to ensure a salary of exactly N rupees at the end of the period. The indices should be printed in the sorted order. In case of multiple answers, output any one of them. If there is no answer, print -1.
Example
Input: 2 9 3 1 1 2 10 2 2 3 Output: 1 3 -1
Added by: Rahul Garg Date: 2007-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: C-maphore, Tryst 2007
Input
First line contains a single integer T, the number of test cases ( 1<=T<=50), followed by the description of the test cases. The first line of each test case contains two integers, K and N respectively ( 1<=K<=100, 1<=N<=1000). It is followed by K lines, where each line contains space separated three integers representing the X, Y and Z coordinates of the particular source. The coordinates of the diagonally opposite corners of the cube are (0,0,0) and (N,N,N). All the sources will lie strictly inside the cube.
Output
For each test case, output the maximum value of the time before the first electron hits the boundary of the cube on a single line.
Example
Input: 2 1 10 5 5 5 2 10 1 1 1
1 1 2 Output: 5 9
Added by: Rahul Garg Date: 2007-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: C-maphore, Tryst 2007
Input
The input contains several test cases. The first line of each test case contains two integers c and n (1 <= c <= n <= 100000), the number of children and the number of neighbours, respectively. The next line contains n space separated integers a 1 , ... , a n (1 <= a i <= 100000 ), where a i represents the number of sweets the children get if they visit neighbour i. The last test case is followed by two zeros.
Output
For each test case output one line with the indices of the neighbours the children should select (here, index i corresponds to neighbour i who gives a total number of a i sweets). If there is no solution where each child gets at least one sweet, print "no sweets" instead. Note that if there are several solutions where each child gets at least one sweet, you may print any of them.
Example
Input: 4 5 1 2 3 7 5 3 6 7 11 2 5 13 17 0 0
Output: 3 5 2 3 4
Added by: Simon Gog Date: 2007-07-05 Time limit: 15s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2007/2008
1681. Cylinder
Problem code: CYLINDER
Using a sheet of paper and scissors, you can cut out two faces to form a cylinder in the following way: 1. Cut the paper horizontally (parallel to the shorter side) to get two rectangular parts. 2. From the first part, cut out a circle of maximum radius. The circle will form the bottom of the cylinder. 3. Roll the second part up in such a way that it has a perimeter of equal length with the circles circumference, and attach one end of the roll to the circle. Note that the roll may have some overlapping parts in order to get the required length of the perimeter. Given the dimensions of the sheet of paper, can you calculate the biggest possible volume of a cylinder which can be constructed using the procedure described above?
Input Specification
The input consists of several test cases. Each test case consists of two numbers w and h (1 <= w <= h <= 100), which indicate the width and height of the sheet of paper. The last test case is followed by a line containing two zeros.
Output Specification
For each test case, print one line with the biggest possible volume of the cylinder. Round this number to 3 places after the decimal point.
Sample Input
10 10 10 50 10 30 0 0
Sample Output
54.247 785.398 412.095
In the first case, the optimal cylinder has a radius of about 1.591549, in the second case, the optimal cylinder has a radius of 5, and in the third case, the optimal cylinder has a radius of about 3.621795.
Added by: Adrian Kuegel Date: 2007-07-06 Time limit: 4s Source limit:50000B Languages: All Resource: own problem, used in University of Ulm Local Contest 2007
1683. Expressions
Problem code: EXPRESS
Arithmetic expressions are usually written with the operators in between the two operands (which is called infix notation). For example, (x+y)*(z-w) is an arithmetic expression in infix notation. However, it is easier to write a program to evaluate an expression if the expression is written in postfix notation (also known as reverse polish notation). In postfix notation, an operator is written behind its two operands, which may be expressions themselves. For example, x y + z w - * is a postfix notation of the arithmetic expression given above. Note that in this case parentheses are not required. To evaluate an expression written in postfix notation, an algorithm operating on a stack can be used. A stack is a data structure which supports two operations: 1. push: a number is inserted at the top of the stack. 2. pop: the number from the top of the stack is taken out. During the evaluation, we process the expression from left to right. If we encounter a number, we push it onto the stack. If we encounter an operator, we pop the first two numbers from the stack, apply the operator on them, and push the result back onto the stack. More specifically, the following pseudocode shows how to handle the case when we encounter an operator O:
a := pop(); b := pop(); push(b O a);
The result of the expression will be left as the only number on the stack. Now imagine that we use a queue instead of the stack. A queue also has a push and pop operation, but their meaning is different: 1. push: a number is inserted at the end of the queue. 2. pop: the number from the front of the queue is taken out of the queue. Can you rewrite the given expression such that the result of the algorithm using the queue is the same as the result of the original expression evaluated using the algorithm with the stack?
Input Specification
The first line of the input contains a number T (T <= 200). The following T lines each contain one expression in postfix notation. Arithmetic operators are represented by uppercase letters, numbers are represented by lowercase letters. You may assume that the length of each expression is less than 10000 characters.
Output Specification
For each given expression, print the expression with the equivalent result when using the algorithm with the queue instead of the stack. To make the solution unique, you are not allowed to assume that the operators are associative or commutative.
Sample Input
2 xyPzwIM abcABdefgCDEF
Sample Output
wzyxIPM gfCecbDdAaEBF
Added by: Adrian Kuegel Date: 2007-07-06 Time limit: 4s Source limit:50000B Languages: All Resource: own problem, used in University of Ulm Local Contest 2007
Input Specification
The input consists of several test cases. Each test case starts with a line containing two integers n and q (1 <= n, q <= 100000). The next line contains n integers a 1 , ... , a n (-100000 <= a i <= 100000, for each i (- {1, ..., n}) separated by spaces. You can assume that for each i (- {1, ..., n-1}: a i <= a i+1 . The following q lines contain one query each, consisting of two integers i and j (1 <= i <= j <= n), which indicate the boundary indices for the query. The last test case is followed by a line containing a single 0.
Output Specification
For each query, print one line with one integer: The number of occurrences of the most frequent value within the given range.
Sample Input
10 3 -1 -1 1 1 1 1 3 10 10 10 2 3 1 10 5 10 0
Sample Output
1 4 3
A naive algorithm may not run in time! Added by: Adrian Kuegel Date: 2007-07-06 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2007
Input Specification
This problem has no input.
Output Specification
Print all solutions which have a sum of the four items of at most 20.00 Euro. For each solution, print one line with the prices of the four items in non-decreasing order, with one space character between them. You may print the solutions in any order, but make sure to print each solution only once.
Sample Output
0.50 1.00 2.50 16.00 1.25 1.60 1.75 1.84 1.25 1.40 1.86 2.00 ...
Added by: Adrian Kuegel Date: 2007-07-06 Time limit: 1.600s Source limit:600B Languages: All Resource: University of Ulm Local Contest 2007
1687. Logic II
Problem code: LOGIC2
Some day in 2003 in Byteland began calm and quietly as any other day. Some people went to work, some to school, some to store to buy food. Drivers were traditionally stucked in traffic jams, drinking coffee and reading morning newspaper. Suddenly the regularity of this day was disturbed by huge explosion."They blew up the embassy of Bajtocja!!!" somebody cried. Everybody began to run away in panic. Police works pretty good in Byteland and first radiocars appeared near the embassy only few seconds after the explosion. All the people near the embassy were detained. Only one of the people is the organizer of the explosion, the others could by just occasional witnesses. It is known, among these M(1<=M<=11) people, N(1<=N<=M) people always lie because they want to make the work of police more difficult, the others always tell the truth. All these people say P(1<=P<=30) sentences in total.All the useful sentences are in one of the 4 forms below, all the other sentences are useless and you can ignore them. I am guilty. I am not guilty. Somebody is guilty. Somebody is not guilty. Today is Someday. Among these sentences, Somebody is a name of one of these M people, and Someday is Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday. Your task is to help the police to find out the only one organizer of the explosion.
Input
Multiple test cases. For each test case: The first line contains three integers M, N and P. M lines follow, each contains a name of one of the people.All names contain only capital Latin letters and no whitespaces.P lines come next, each contains no more than 250 characters, the speaker and his/her speech. See the example. You can assume that theres no whitespace at the start and the end of a line, and there are no two consecutive spaces in the input. Input terminate by EOF.
Output
The name of the organizer if you can determine, or Cannot Determine if you find more than one, or Impossible if you find no one.
Example
Input: 3 1 5 MIKE CHARLES KATE MIKE: I am guilty. MIKE: Today is Sunday. CHARLES: MIKE is guilty. KATE: I am guilty. KATE: How are you?? Output: MIKE
Added by: Blue Mary Date: 2007-07-13 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: Description by Blue Mary
Output
Output some form of these numbers: 137, 1315, 73, 136, 255, 1384, 16385, one per line in the listed order.
Example
The first two lines of the CORRECT output file are:
137=2(2(2)+2+2(0))+2(2+2(0))+2(0) 1315=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)
The correct output file should contain 7 lines. Added by: Blue Mary Date: 2007-07-13 Time limit: 1s Source limit:500B Languages: TEXT Resource: You can imagine it.
Input
Multiple test cases. Each contains a single integer N(1<=N<=50). Input terminates by EOF.
Output
For each test case, output one line contains the answer. See the example.
Example
Input: 8 9 10
Added by: Blue Mary Date: 2007-07-14 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Based on a problem from an ACM/ICPC Regional Contest
Added by: Andrs Leonardo Rojas Duarte Date: 2007-07-24 Time limit: 5s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest 2002 - South America
4 3 -2 071 182 3 6 -2 472 661 6 6 -2 3 -10 0 20 -5 1 10 50 50 100 0 Output for the sample input 1.41 1.00 Added by: Andrs Leonardo Rojas Duarte Date: 2007-07-25 Time limit: 10s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest 2002 - South America
After the five years of operation, the final amount of fund is 1150357 JPY. If the interest is simple with all other parameters being equal, it looks like: The balance of the fund under operation (at the beginning of year) A 1000000 997000 994000 991000 988000 The balance of the fund under operation (at the end of year) A - 3000 997000 994000 991000 988000 985000 31250 62406 93468 124436 155311 Cumulative interest
Interest B = A 0.03125 (and rounding off fractions) 31250 31156 31062 30968 30875
In this case the final amount of fund is the total of the fund under operation, 985000 JPY, and the cumulative interests, 155311 JPY, which is 1140311 JPY.
Input
The input consists of datasets. The entire input looks like: the number of datasets (=m) 1st dataset 2nd dataset ... m-th dataset The number of datasets, m, is no more than 100. Each dataset is formatted as follows. the initial amount of the fund for operation the number of years of operation the number of available operations (=n) operation 1 operation 2 ... operation n The initial amount of the fund for operation, the number of years of operation, and the number of available operations are all positive integers. The first is no more than 100000000, the second no more than 10, and the third no more than 100. Each operation is formatted as follows. simple-or-compound annual-interest-rate annual-operation-charge where simple-or-compound is a single character of either 0 or 1, with 0 indicating simple interest and 1 compound. annual-interest-rate is represented by a decimal fraction and is an integral multiple
Output
For each dataset, print a line having a decimal integer indicating the final amount of fund for the best operation. The best operation is the one that yields the maximum final amount among the available operations. Each line should not have any character other than this number. You may assume the final balance never exceeds 1000000000. You may also assume that at least one operation has the final amount of the fund no less than the initial amount of the fund.
Example
Input: 4 1000000 5 2 0 0.03125 3000 1 0.03125 3000 6620000 7 2 0 0.0732421875 42307 1 0.0740966796875 40942 39677000 4 4 0 0.0709228515625 30754 1 0.00634765625 26165 0 0.03662109375 79468 0 0.0679931640625 10932 10585000 6 4 1 0.0054931640625 59759 1 0.12353515625 56464 0 0.0496826171875 98193 0 0.0887451171875 78966 Output: 1150357 10559683 50796918 20829397
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
Input
The input consists of multiple datasets. The end of the input is indicated by a line which contains a zero. A dataset is given as follows. n Polygonal line0 Polygonal line1 Polygonal line2 ... Polygonal linen n is the number of polygonal lines for the object of search on xy-plane. n is an integer, and 1 <= n <= 50. Polygonal line0 indicates the template. A polygonal line is given as follows. m x1 y1 x2 y2 ... xm ym
m is the number of the vertices of a polygonal line (3 <= m <= 10). xi and yi, separated by a space, are the x- and y-coordinates of a vertex, respectively (-10000 < xi < 10000, -10000 <yi < 10000).
Output
For each dataset in the input, your program should report numbers assigned to the polygonal lines that have the same shape as the template, in ascending order. Each number must be written in a separate line without any other characters such as leading or trailing spaces. Five continuous "+"s must be placed in a line at the end of each dataset.
Example
Input: 5 5 0 0 2 0 2 1 4 1 4 0 5 0 0 0 2 -1 2 -1 4 0 4 5 0 0 0 1 -2 1 -2 2 0 2 5 0 0 0 -1 2 -1 2 0 4 0 5 0 0 2 0 2 -1 4 -1 4 0 5 0 0 2 0 2 1 4 1 4 0 4 4 -60 -75 -60 -78 -42 -78 -42 -6 4 10 3
10 7 -4 7 -4 40 4 -74 66 -74 63 -92 63 -92 135 4 -12 22 -12 25 -30 25 -30 -47 4 12 -22 12 -25 30 -25 30 47 3 5 -8 5 -8 2 0 2 0 4 8 4 5 -3 -1 0 -1 0 7 -2 7 -2 16 5 -1 6 -1 3 7 3 7 5 16 5 5 0 1 0 -2 8 -2 8 0 17 0 0 Output: 1 3 5 +++++ 3 4 +++++ +++++
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 3s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
Input
The input is as follows. The first line contains a positive integer n (<= 500) that indicates the number of the following lines. The k+1 th line is the specification of the k th computation (k=1, ..., n). n specification1 specification2 ... specificationn Each specification is described in a line: MCXI-string1 MCXI-string2 The two MCXI-strings are separated by a space. You may assume that the sum of the two MCXI-values of the two MCXI-strings in each specification is less than or equal to 9999.
Output
For each specification, your program should print an MCXI-string in a line. Its MCXI-value should be the sum of the two MCXI-values of the MCXI-strings in the specification. No other characters should appear in the output.
Example
Input: 10 xi x9i i 9i c2x2i 4c8x8i m2ci 4m7c9x8i 9c9x9i i i 9m9c9x8i m i i m m9i i 9m8c7xi c2x8i Output: 3x x 6cx 5m9c9x9i m 9m9c9x9i mi mi mx 9m9c9x9i
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
Input
The input consists of multiple datasets, each in the following format. The last dataset is followed by a line containing five zeros (separated by a space). nmpab t1 t2 ... tn x1 y1 z1 x2 y2 z2 ... xp yp zp Every input item in a dataset is a non-negative integer. If a line contains two or more input items, they are separated by a space. n is the number of coach tickets. You can assume that the number of tickets is between 1 and 8. m is the number of cities in the network. You can assume that the number of cities is between 2 and 30. p is the number of roads between cities, which may be zero. a is the city index of the starting city. b is the city index of the destination city. a is not equal to b. You can assume that all city indices in a dataset (including the above two) are between 1 and m. The second line of a dataset gives the details of coach tickets. ti is the number of horses specified in the i-th coach ticket (1<=i<=n). You can assume that the number of horses is between 1 and 10. The following p lines give the details of roads between cities. The i-th road connects two cities with city indices xi and yi, and has a distance zi (1<=i<=p). You can assume that the distance is between 1
and 100. No two roads connect the same pair of cities. A road never connects a city with itself. Each road can be traveled in both directions.
Output
For each dataset in the input, one line should be output as specified below. An output line should not contain extra characters such as spaces. If the traveler can reach the destination, the time needed for the best route (a route with the shortest time) should be printed. The answer should not have an error greater than 0.001. You may output any number of digits after the decimal point, provided that the above accuracy condition is satisfied. If the traveler cannot reach the destination, the string "Impossible" should be printed. One cannot reach the destination either when there are no routes leading to the destination, or when the number of tickets is not sufficient. Note that the first letter of "Impossible" is in uppercase, while the other letters are in lowercase.
Example
Input: 3 4 3 1 4 3 1 2 1 2 10 2 3 30 3 4 20 2 4 4 2 1 3 1 2 3 3 1 3 3 4 1 2 4 2 5 2 4 3 4 1 5 5 1 2 10 2 3 10 3 4 10 1 2 0 1 2 1 8 5 10 1 5 2 7 1 8 4 5 6 3 1 2 5 2 3 4 3 4 7 4 5 3 1 3 25 2 4 23 3 5 22 1 4 45 2 5 51 1 5 99 0 0 0 0 0 Output: 30.000 3.667 Impossible Impossible 2.856
Since the number of digits after the decimal point is not specified, the above result is not the only solution. For example, the following result is also acceptable. 30.0 3.66667 Impossible Impossible 2.85595
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 3s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
Input
The input consists of multiple datasets, each in the following format. NTR nickname and travel route of the first robot nickname and travel route of the second robot ... nickname and travel route of the N-th robot The first line contains three integers N, T, and R that are the number of robots, the length of the simulation period, and the maximum distance wireless signals can reach, respectively, and satisfy that 1 <= N <= 100, 1 <= T <= 1000, and 1 <= R <= 10.
The nickname and travel route of each robot are given in the following format. nickname t0 x0 y0 t1 vx1 vy1 t2 vx2 vy2 ... tk vxk vyk Nickname is a character string of length between one and eight that only contains lowercase letters. No two robots in a dataset may have the same nickname. Each of the lines following nickname contains three integers, satisfying the following conditions. 0 = t 0 < t 1 < ... < t k = T -10 <= vx 1 , vy 1 , ..., vx k , vy k <= 10 A robot moves around on a two dimensional plane. (x 0 , y 0 ) is the location of the robot at time 0. From time t i-1 to t i (0 < i <= k), the velocities in the x and y directions are vx i and vy i , respectively. Therefore, the travel route of a robot is piecewise linear. Note that it may self-overlap or self-intersect. You may assume that each dataset satisfies the following conditions. The distance between any two robots at time 0 is not exactly R. The x- and y-coordinates of each robot are always between -500 and 500, inclusive. Once any robot approaches within R + 10 -6 . of any other, the distance between them will become smaller than R - 10 -6 . while maintaining the velocities. Once any robot moves away up to R - 10 -6 . of any other, the distance between them will become larger than R + 10 -6 . while maintaining the velocities. If any pair of robots mutually enter the wireless area of the opposite ones at time t and any pair, which may share one or two members with the aforementioned pair, mutually leave the wireless area of the opposite ones at time t, the difference between t and t is no smaller than 10 -6 . time unit, that is, |t - t | >= 10 -6 . A dataset may include two or more robots that share the same location at the same time. However, you should still consider that they can move with the designated velocities. The end of the input is indicated by a line containing three zeros.
Output
For each dataset in the input, your program should print the nickname of each robot that have got until time T the observational data originally acquired by the first robot at time 0. Each nickname should be written in a separate line in dictionary order without any superfluous characters such as leading or trailing spaces.
Example
Input: 3 5 10 red 0 0 0 5 0 0
green 0 5 5 5 6 1 blue 0 40 5 5 0 0 3 10 5 atom 0 47 32 5 -10 -7 10 1 0 pluto 0 0 0 7 0 0 10 3 3 gesicht 0 25 7 5 -7 -2 10 -1 10 4 100 7 impulse 0 -500 0 100 10 1 freedom 0 -491 0 100 9 2 destiny 0 -472 0 100 7 4 strike 0 -482 0 100 8 3 0 0 0 Output: blue green red atom gesicht pluto freedom impulse strike
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 2s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
Input
IThe input consists of multiple maps, each representing the size and arrangement of the room. A map is given in the following format. wh c11 c12 c13 ... c1w c21 c22 c23 ... c2w ... ch1 ch2 ch3 ... chw The integers w and h are the lengths of the two sides of the floor of the room in terms of widths of floor tiles. w and h are less than or equal to 20. The character cyx represents what is initially on the tile with coordinates (x, y) as follows. . : a clean tile * : a dirty tile x : a piece of furniture (obstacle) o : the robot (initial position) In the map the number of dirty tiles does not exceed 10. There is only one robot. The end of the input is indicated by a line containing two zeros.
Output
For each map, your program should output a line containing the minimum number of moves. If the map includes dirty tiles which the robot cannot reach, your program should output -1.
Example
Input: 7 5 ....... .o...*. ....... .*...*. ....... 15 13 .......x....... ...o...x....*.. .......x....... .......x....... .......x....... ............... xxxxx.....xxxxx ............... .......x....... .......x....... .......x....... ..*....x....*.. .......x....... 10 10 .......... ..o....... .......... .......... .......... .....xxxxx .....x.... .....x.*.. .....x.... .....x.... 0 0 Output: 8 49 -1
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 5s Source limit:50000B Languages: All Resource: Japan Domestic, 2005
The rules used in these examples seem to be: Insignificant words (such as "of", "a", "the", etc.) are ignored. The letters of the abbreviation must appear, in the correct order, as an ordered sublist of the letters in the significant words of the phrase to be abbreviated. At least one letter of the abbreviation must come from every significant word (multiple occurrences of a letter are, of course, treated as distinct). Of course these rules are often broken in real life. For instance, RADAR is an abbreviation for "RAdio Detecting And Ranging". Under our rules (assuming that "and" is an insignificant word), this would not be a valid abbreviation (however, RADR or RADRAN or DODGING would be valid). You have been asked to take a list of insignificant words and a list of abbreviations and phrases and to determine in how many ways each abbreviation can be formed from the corresponding phrase according to the rules above.
Input
The input file consists of multiple scenarios. Each scenario begins with an integer 100 >= n >= 1 followed by n insignificant words, all in lower case, one per line with no extra white space. (A line containing 0 indicates end of input.) Following this are one or more test cases for this scenario, one per line, followed by a line containing the phrase "LAST CASE". Each line containing a test case begins with an abbreviation (uppercase letters only) followed by a phrase (lowercase letters and spaces only). The abbreviation has length at least 1 and the phrase contains at least one significant word. No input line (including abbreviation, phrase, and spaces) will contain more than 150 characters. Within these limits, however, abbreviations and phrase words may be any length.
Output
For each test case, output the abbreviation followed by either is not a valid abbreviation or can be formed in i ways where i is the number of different ways in which the letters of the abbreviation may be assigned to the letters in the phrase according to the rules above. The value of i will not exceed the range of a 32-bit signed integer.
Example
Input: 2 and of ACM academy of computer makers RADAR radio detection and ranging LAST CASE 2 a an APPLY an apple a day LAST CASE 0 Output: ACM can be formed in 2 ways RADAR is not a valid abbreviation APPLY can be formed in 1 ways
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: East Central North America 2005
1704. Countdown
Problem code: CDOWN
Ann Sister owns a genealogical database service, which maintains family tree history for her clients. When clients login to the system, they are presented with a variety of services: searching, printing, querying, etc. One recent question that came up which the system was not quite prepared for was the following: "Which member of my family had the most grandchildren?" The client who posed this question eventually had to answer it by manually searching the family tree database herself. Ann decided to have software written in case this question (or ones similar to it asking for great-grandchildren, or great-great-grandchildren, etc.) is asked in the future.
Input
Input will consist of multiple test cases. The first line of the input will contain a single integer indicating the number of test cases. Each test case starts with a single line containing two positive integers n and d, where n indicates the number of lines to follow containing information about the family tree, and d indicates the specific question being asked about the tree: if d = 1, then we are interested in persons with the most children (1 generation away); if d = 2, then we are interested in persons with the most grandchildren (2 generations away), and so on. The next n lines are of the form name m dname 1 dname 2 ... dname m where name is one of the family members names, m is the number of his/her children, and dname 1 through dname m are the names of the children. These lines will be given in no particular order. You may assume that all n lines describe one single, connected tree. There will be no more than 1000 people in any one tree, and all names will be at most 10 characters long.
Output
For each test case, output the three names with the largest number of specified descendants in order of number of descendants. If there are ties, output the names within the tie in alphabetical order. Print fewer than three names if there are fewer than three people who match the problem criteria (you should not print anyones name who has 0 of the specified descendants), and print more than three if there is a tie near the bottom of the list. Print each name one per line, followed by a single space and then the number of specified descendants. The output for each test case should start with the line Tree i: where i is the test case number (starting at 1). Separate the output for each problem with a blank line.
Example
Input: 3 8 2 Barney 2 Fred Ginger Ingrid 1 Nolan Cindy 1 Hal Jeff 2 Oliva Peter Don 2 Ingrid Jeff Fred 1 Kathy Andrea 4 Barney Cindy Don Eloise Hal 2 Lionel Mary 6 1 Phillip 5 Jim Phil Jane Joe Paul Jim 1 Jimmy Phil 1 Philly Jane 1 Janey Joe 1 Joey Paul 1 Pauly 6 2 Phillip 5 Jim Phil Jane Joe Paul Jim 1 Jimmy Phil 1 Philly Jane 1 Janey Joe 1 Joey Paul 1 Pauly Output: Tree 1: Andrea 5 Don 3 Cindy 2 Tree 2: Phillip 5 Jane 1 Jim 1 Joe 1 Paul 1 Phil 1 Tree 3: Phillip 5
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 3s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
There will be multiple test cases. Each case will start with a line containing a pair of positive integers m and n, indicating the number of rows and columns of the configuration, respectively. The next line will contain a nonnegative integer k indicating the number of "live" cells in the configuration. The following k lines each contain the row and column number of one live cell, where row and column numbering both start at zero. The final test case is followed by a line where m = n = 0 -- this line should not be processed. You may assume that the product of m and n is no more than 16.
Output
For each test case you should print one line of output containing the case number and the number of possible ancestors. Imitate the sample output below. Note that if there are 0 ancestors, you should print out
Garden of Eden.
Example
Input: 2 3 2 0 0 0 1 3 3 4 0 0 0 1 0 2 1 1 3 3 5 0 0 1 0 1 2 2 1 2 2 0 0 Output: Case 1: 3 possible ancestors. Case 2: 1 possible ancestors. Case 3: Garden of Eden.
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 60s-65s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
There will be multiple test cases. Each test case will consist of 4 lines. The first line will contain two integers n and m, indicating the dimensions of the board, giving rows and columns, respectively. Neither integer will exceed 1000. The next three lines will each be of the form k r1 c1 r2 c2 . . . rk ck indicating the location of the queens, knights and pawns, respectively. The numbering of the rows and columns will start at one. There will be no more than 100 of any one piece. Values of n = m = 0 indicate end of input.
Output
Each test case should generate one line of the form Board b has s safe squares. where b is the number of the board (starting at one) and you supply the correct value for s.
Example
4 4 2 1 4 2 4 1 1 2 1 2 3 2 3 1 1 2 1 1 1 0 1000 1000
1 3 3 0 0 0 0 Output: Board 1 has 6 safe squares. Board 2 has 0 safe squares. Board 3 has 996998 safe squares.
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
There will be multiple test cases for this problem. Each test case will start with a pair of integers n (<=15) and m (<= 20) on a line indicating the number of buildings (numbered 1 through n) and the number of potential inter-building connections, respectively. (Values of n = m = 0 indicate the end of the problem.) The following m lines are of the form b 1 b 2 c (all positive integers) indicating that it costs c to connect building b 1 and b 2 . All connections are bidirectional.
Output
For each test case you should print one line giving the cost of a minimal reliable net. If there is a minimal reliable net, the output line should be of the form: The minimal cost for test case p is c. where p is the number of the test case (starting at 1) and c is the cost. If there is no reliable net possible, output a line of the form: There is no reliable net possible for test case p.
Example
Input: 4 5 1 2 1 1 3 2 2 4 2 3 4 1 2 3 1 2 1 1 2 5 0 0 Output: The minimal cost for test case 1 is 6. There is no reliable net possible for test case 2.
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 3s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
Input will consist of multiple test cases. The first line of each case will be a positive integer n <= 1000 which will indicate the number of rooms in the museum. After this will be n lines, each containing a description of one room. Each room will be rectangular in shape and will be described by a line of the form x1 y1 x2 y2 where (x 1 , y 1 ) and (x 2 , y 2 ) are opposing corner coordinates (integers) of the room. No two rooms will overlap, though they may share a side. If the shared side is of length m > 2, then a door of length m-2 exists between the two rooms, centered along the shared length. No square of any size will overlap more than two rooms. All x and y values will be <= 1, 000, 000. An input line of n = 0 terminates input and should not be processed.
Output
For each test case, output the total number of squares on a single line in the format shown below. All answers will fit within a 32-bit integer and cases are enumerated starting at 1.
Example
Input: 2 0 0 9 3 10 6 4 3 3 11 20 15 24 11 17 15 20 15 16 20 24
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
There will be a series of test cases. Each test case is one photograph described by a line containing a positive integer n (<= 1000) the number of distinct spots in the photograph, followed by n lines containing the integer coordinates of the spots, one (x, y) pair per line. All coordinates are between 0 and 10000. The last photo description is followed by a line containing a zero, marking the end of the input. This line should not be processed.
Output
For each test case, output the photo number followed by the number of points eliminated from the photograph. Imitate the sample output below.
Example
Input: 6 0 1 0 2 1 2 2 2 4 5 5 6 4 3 5 4 4 6 5
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 25s Source limit:50000B Languages: All Resource: East Central North America 2005
Input
There will be multiple test cases. Each test case will be contained on one line. Each line will start with an even integer n followed by n positive integers. A value of n = 0 indicates end of input. You may assume that n is no more than 1000. Furthermore, you may assume that the sum of the numbers in the list does not exceed 1,000,000.
Output
For each test case you should print one line of output of the form: In game m, the greedy strategy might lose by as many as p points. where m is the number of the game (starting at game 1) and p is the maximum possible difference between the first players score and second players score when the second player uses the greedy strategy. When employing the greedy strategy, always take the larger end. If there is a tie, remove the left end.
Example
Input: 4 3 2 10 4 8 1 2 3 4 5 6 7 8 8 2 2 1 5 3 8 7 3 0 Output: In game 1, the greedy strategy might lose by as many as 7 points. In game 2, the greedy strategy might lose by as many as 4 points. In game 3, the greedy strategy might lose by as many as 5 points.
Added by: Camilo Andrs Varela Len Date: 2007-07-26 Time limit: 1s Source limit:50000B Languages: All Resource: East Central North America 2005
1712. Permalex
Problem code: PRMLX
Given a string of characters, we can permute the individual characters to make new strings. If we can impose an ordering on the characters (say alphabetic sequence), then the strings themselves can be ordered and any given permutation can be given a unique number designating its position in that ordering. For example the string acab gives rise to the following 12 distinct permutations: aabc aacb abac abca 1 2 3 4 acab acba baac baca 5 6 7 8 bcaa caab caba cbaa 9 10 11 12
Thus the string acab can be characterised in this sequence as 5. Write a program that will read in a string and determine its position in the ordered sequence of permutations of its constituent characters. Note that numbers of permutations can get very large; however we guarantee that no string will be given whose position is more than 2^31 = 2.147.483.647
Sample Input
bacaa abc cba bacaa abc cba #
Sample Output
15 1 6 15 1 6
Added by: Andrs Leonardo Rojas Duarte Date: 2007-07-27 Time limit: 5s Source limit:50000B Languages: All Resource: ACM ICPC 1992 Northwestern European Regionals
Input
Input has exactly one line consisting 2 numbers, the first is N and the second is X.
Output
If there is no solution, you should write -1 If there is at least one solution for the problem, you should write exactly 2 lines: The first line contains some numbers descripting the indices of the weights in the first disc The second line contains some numbers description the indices of the weights in the second disc Note: One of 2 lines can be blank
Constraints
1 <= N <= 20 1 <= X <= 2000000000
Example
Input 1: 10 2 Output 1: 1 2 Input 2: 10 5 Output 2: 1 2 3
Added by: Nguye^~n Ha Du+o+ng Date: 2007-07-29 Time limit: 1s Source limit:50000B Languages: All Resource: Classical
Input
Multiple test cases, the number of them(<=8) is given in the very first line. Each test case contains one line with two space-separated numbers k(1<=k<=5) and n(1<=n<=10 15 ).
Output
For each test case you should output one line, the number of different MSTs of the corresponding graph modulo 65521.
Example
Input: 1 3 5 Output: 75
Added by: Blue Mary Date: 2007-08-04 Time limit: 1s-4s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2007,Day 2; Translated by Blue Mary
Help Maja to convert Willis system to hers. Write a program which for a given honey comb number gives the coordinates in Majas system. Input The input contains one or more integers which represent Willis numbers. Each number stands on its own in a separate line, directly followed by a newline. The honey comb numbers are all less than 100 000. Output You should output the corresponding Maja coordinates to Willis numbers, each coordinate pair on a separate line. Sample Input 1 2 3 4 5 Sample Output 00 01 -1 1 -1 0 0 -1
Added by: Andrs Leonardo Rojas Duarte Date: 2007-08-04 Time limit: 20s Source limit:50000B Languages: All Resource: Ulm Local 1999
Input
Multiple test cases, the number of them is given in the very first line. For each test case: The first line contains two space-separated integers n(n<=100) and m(m<=4500), the number of nodes in the graph and the number of edges in the graph. The nodes are numbered from 1 to n. m lines follow, each contains 3 integers a, b, c, 1<=a, b<=n, 1<=c<=1000, a!=b, which denotes that there is an undirected edge between node a and node b weighted c. You may assume that there is at most one edge between any pair of nodes, and the number of shortest paths between any pair of nodes is at least 1 and at most 10 10 .
Output
For each test case: Your Output should contains n lines, each contains one single real number, with 3 decimal places after radix point. The number in the ith line denotes the importance of the ith node.
Example
Input: 1 4 4 1 2 1 2 3 1 3 4 1 4 1 1 Output: 1.000 1.000 1.000 1.000
Added by: Blue Mary Date: 2007-08-05 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2007,Day 1; Translated by Blue Mary
1726. Exchange
Problem code: EXCHANGE
There are 3 kinds of money in a planet far away from the earth: Mone, Luck, and Rpin. Theres a money exchange company in this planet. You must go to this company if you want to do some money exchange, and, more autocratically, this company regulate the exchange rate of each pair of these 3 kinds of money. The money exchange will be done in the following two ways: (A) You give the company a real number x in the range (0,100], the company will exchange x% of your Mone and x% of your Luck to equal Rpin according to the exchange rate of that day. (B) You give the company a real number x, the company will exchange your x Rpin to some Mone and Luck, whose value is equal to x Rpin according to the exchange rate of that day, and, the value of Mone is Rate times of the value of Luck. You can do many exchange operations in the same day. Now, as the excellant spy in this planet, you know the exchange rate between Mone and Rpin of each of the next n days(a i Mone per Rpin), and the exchange rate between Luck and Rpin of each of the next n days(b i Luck per Rpin), and, each Rate of the next n days( Rate i ). you have S Rpin in the start, and you want to get most Rpin in the nth day later.
Input
Multiple test cases, the number of them( <=5 ) is given in the very first line. For each test case: The first line contains a integer number n(1<=n<=100000) and a real number S.n lines follow, each contains 3 real numbers: a i (between 0 and 10), b i (between 0 and 10), Rate i (between 0 and 100).
Output
For each test case, output one line contains a real number with 3 digits after decimal point, which denotes to the answer. You can assume it is less than 1000000000.
Example
Input: 1 3 100 1 1 1 1 2 2 2 2 3 Output: 225.000
Warning: large input/output data, be careful with certain languages; the time limit is somewhat strict for this problem Added by: Blue Mary Date: 2007-08-05 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2007,Day 1; Translated by Blue Mary
Input
Input file contains several lines of input. Consecutive two lines make a set of input. That means in the input file line 1 and 2 is a set of input, line 3 and 4 is a set of input and so on. The first line of a pair contains a and the second contains b. Each string is on a separate line and consists of at most 1000 lowercase letters.
Output
For each set of input, output a line containing x. If several x satisfy the criteria above, choose the first one in alphabetical order.
Example
Sample input: pretty women walking down the street Sample output: e nw et
Added by: Andrs Leonardo Rojas Duarte Date: 2007-08-05 Time limit: 1s Source limit:50000B Languages: All Resource: University of Alberta Local Contest 1999
Input
The first line of the input contains an integer T - the number of test cases and T lines follow. Each line contains an integer N which is the level of the hexagon in that test case.
Output
For each test case, you should write a seperate line: the number of triangles in the "level N" hexagon. (All answers will fit within the range of a 64-bit positive integer)
Example
Input: 1 1 Output: 6
Be careful with certain languages Added by: Nguye^~n Ha Du+o+ng Date: 2007-08-06 Time limit: 1s Source limit:300B Languages: C C99 strict C++ PAS gpc PAS fpc ASM D Resource: Trn Huy Hu+ng
Input
The first line of the input contains an integer T - the number of test cases and T lines follow. Each line contains an integer N which is the level of the hexagram in that test case.
Output
For each test case, you should write a seperate line: the number of triangles in the level N hexagram. (All answers will fit within the range of a 64-bit positive integer)
Example
Input: 1 1 Output: 20
The author allows only few languages Added by: Nguye^~n Ha Du+o+ng Date: 2007-08-07 Time limit: 1s Source limit:128B Languages: C C99 strict C++ PAS gpc PAS fpc ASM D PERL PYTH RUBY Resource: Trn Huy Hu+ng
Input
The number of test cases t (around 30), followed by a list of t values of n (2 <= n <= 1000). You can assume that the equation can be solved for all values of n in the input set.
Output
For every test case, the values of x and y separated by a space character, on separate lines.
Example
Input: 3 2 6 61 Output: 3 2 5 2 1766319049 226153980
Added by: Mauro Persano Date: 2007-08-18 Time limit: 5s Source limit:50000B Languages: All Resource: Brahmagupta, circa 628 AD
Input
There will be multiple test cases, each one with 4 lines that are described below n: degree of polynomial. c n c n-1 ... c 2 c 1 c 0 : coefficients of the polynomial separated by a single space. k: number of points to evaluate the polynomial. x 1 x 2 ... x k-1 x k : points to evaluate the polynomial separated by a single space. The final test case is a single line where n = -1 and this case should not be processed.
Output
For each test case you should print k + 1 lines of output, the very first line containing the case number and the following k lines with the result of the polynomials evaluation in each one of the k given points. See the sample.
Example
Input: 21 -2 -150 1 -1 2 -232 1 -2 -140 -1 2 -2-1Output: Case 1:-1-22-17Case 2:-1015-9
Added by: Ivan Alfonso Olamendy Date: 2007-08-25 Time limit: 2.5s Source limit:50000B Languages: All except: C99 strict Resource: My own resource
Input
First line of input consists of a single integer containing the number of test cases T ( equal to around 20), each of the following T lines contain two integers N and k where N is the size of the matrix and k is the exponent. 1 <= N <= 1000000 1 <= k <= 10 9
Output
One line corresponding to each test case containing the determinant modulo 1000003 for the corresponding test case.
Example
Input: 3 4 2 2 4 4 3
Note: You may want to solve DETER first, in case you havent already solved it. Added by: Ajay Somani Date: 2007-09-07 Time limit: 1s Source limit:2048B Languages: All Resource: "The Art of Computer Programming"
Input
The input contains several test cases. Every test case starts with three integers N 1 , N 2 , D. You may assume that 1<=N 1 ,N 2 <=50000 and 0<=D<=100000. The first DVD contains N 1 packages, identified by the numbers 1, 2, ..., N 1 . The second DVD contains N 2 packages, identified by the numbers N 1 +1, N 1 +2, ..., N 1 +N 2 . Then follow D dependence specifications, each consisting of two integers x i , y i . You may assume that 1<=x i ,y i <=N 1 +N 2 for 1<=i<=D. The dependence specification means that the installation of package x i requires the previous installation of package y i . You may assume that there are no circular dependences. The last test case is followed by three zeros.
Output
For each test case output on a line the minimal number of DVD changes required to install all packages. By convention, the DVD drive is empty before the installation and the initial insertion of a disc counts as one change. Likewise, the final removal of a disc counts as one change, leaving the DVD drive empty after the installation.
Example
Input: 3 2 1 1 2 2 2 2 1 3 4 2 2 1 1 1 3
0 0 0 Output: 3 4 3
Added by: Wanderley Guimaraes Date: 2007-09-14 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
This way, a value for P can be calculated. This value depends on the choice of the assignment of boolean values to the proposition symbols. If P contains n different proposition symbols, there are 2 n different assignments. To evaluate all possible assignments we may use truth tables. A truth table contains one line per assignment (i.e., 2 n lines in total). Every line contains the values of all subformulas under the chosen assignment. The value of a subformula is aligned with the proposition symbol, if the subformula is a proposition symbol, and with the center of the operator otherwise.
Input Specification
The input contains several test cases, each on a separate line. Every test case denotes a proposition and may contain arbitrary amounts of spaces in between. The input file terminates immediately after the newline symbol following the last test case.
Output Specification
For each test case generate a truth table for the denoted proposition. Start the truth table by repeating the input line. Evaluate the proposition (and its subformulas) for all assignments to its variables, and output one line for each assignment. The line must have the same length as the corresponding input line and must consist only of spaces and the characters 0 and 1. Output an empty line after each test case. Let s 1 ,...,s n be the proposition symbols in the denoted proposition sorted in alphabetic order. Then, all assignments of 0 to s 1 must precede the assignments of 1 to s 1 . Within each of these blocks of assignments, all assignments of 0 to s 2 must precede the assignments of 1 to s 2 , and so on.
Sample Input
((b --> a) <-> ((! a) --> (! b))) ((y & a) - ->(c |c))
Sample Output
((b --> a) <-> ((! a) --> (! b))) 0 1 0 1 1 0 1 1 0 1 0 0 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 0 1 ((y 0 1 0 1 0 1 0 1 & 0 0 0 0 0 1 0 1 a) 0 0 0 0 1 1 1 1 ->(c 1 0 1 0 1 1 1 1 1 0 0 0 1 1 1 1 |c)) 00 00 11 11 00 00 11 11
Added by: Wanderley Guimaraes Date: 2007-09-14 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
Added by: Andrs Leonardo Rojas Duarte Date: 2007-09-15 Time limit: 12s Source limit:50000B Languages: All Resource: TUD Programming Contest 2004
Input
The first line: N (N <= 100000). Following are N lines: the i-th line contains four real numbers A i , B i , C i , D i . (-10 9 <= A i , B i , C i , D i <= 10 9 )
Output
Only one line is the maximum of F(i, j). (The result takes exactly 3 decimal places)
Example
Input: 2 1.0 1.0 2.0 0.5 1.0 1.0 0.5 2.0
Output: 3.000
Added by: Nghia Nguyen Hoang Date: 2007-09-18 Time limit: 1s Source limit:50000B Languages: All Resource: IOICamp and Ms. Thanh Vy Hua Le
1785. Code
Problem code: CODE
KEY Inc., the leading company in security hardware, has developed a new kind of safe. To unlock it, you dont need a key but you are required to enter the correct n-digit code on a keypad (as if this were something new!). There are several models available, from toy safes for children (with a 2-digit code) to the military version (with a 6-digit code). The safe will open as soon as the last digit of the correct code is entered. There is no "enter" key. When you enter more than n digits, only the last n digits are significant. For example (in the 4-digit version), if the correct code is 4567, and you plan to enter the digit sequence 1234567890, the door will open as soon as you press the 7 key. The software to create this effect is rather simple. In the n-digit version the safe is always in one of 10 n-1 internal states. The current state of the safe simply represents the last n-1 digits that have been entered. One of these states (in the example above, state 456) is marked as the unlocked state. If the safe is in the unlocked state and then the right key (in the example above, 7) is pressed, the door opens. Otherwise the safe shifts to the corresponding new state. For example, if the safe is in state 456 and then you press 8, the safe goes into state 568. A trivial strategy to open the safe is to enter all possible codes one after the other. In the worst case, however, this will require n * 10 n keystrokes. By choosing a good digit sequence it is possible to open the safe in at most 10 n + n - 1 keystrokes. All you have to do is to find a digit sequence that contains all n-digit sequences exactly once. KEY Inc. claims that for the military version (n=6) the fastest computers available today would need billions of years to find such a sequence - but apparently they dont know what some programmers are capable of...
Input Specification
The input contains several test cases. Every test case is specified by an integer n. You may assume that 1<=n<=6. The last test case is followed by a zero.
Output Specification
For each test case specified by n output a line containing a sequence of 10 n + n - 1 digits that contains each n-digit sequence exactly once.
Sample Input
1 2 0
Sample Output
0123456789 00102030405060708091121314151617181922324252627282933435363738394454647484955657585966768697787988990
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 2s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
1786. In Danger
Problem code: DANGER
Flavius Josephus and 40 fellow rebels were trapped by the Romans. His companions preferred suicide to surrender, so they decided to form a circle and to kill every third person and to proceed around the circle until no one was left. Josephus was not excited by the idea of killing himself, so he calculated the position to be the last man standing (and then he did not commit suicide since nobody could watch). We will consider a variant of this "game" where every second person leaves. And of course there will be more than 41 persons, for we now have computers. You have to calculate the safe position. Be careful because we might apply your program to calculate the winner of this contest!
Input Specification
The input contains several test cases. Each specifies a number n, denoting the number of persons participating in the game. To make things more difficult, it always has the format "xyez" with the following semantics: when n is written down in decimal notation, its first digit is x, its second digit is y, and then follow z zeros. Whereas 0<=x,y<=9, the number of zeros is 0<=z<=6. You may assume that n>0. The last test case is followed by the string 00e0.
Output Specification
For each test case generate a line containing the position of the person who survives. Assume that the participants have serial numbers from 1 to n and that the counting starts with person 1, i.e., the first person leaving is the one with number 2. For example, if there are 5 persons in the circle, counting proceeds as 2, 4, 1, 5 and person 3 is staying alive.
Sample Input
05e0 01e1 42e0 66e6 00e0
Sample Output
3 5 21 64891137
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
Input Specification
The input consists of letters (both upper- and lower-case), digits, spaces, and punctuation. Every line is terminated with a newline character and no other characters appear in the input.
Output Specification
Each line in the input is encoded separately as described above. The newline at the end of each line is not encoded, but is passed directly to the output.
Sample Input
AAAAAABCCCC 12344
Sample Output
6A1B14C 11123124
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
1788. Fractan
Problem code: FRACTAN
To play the "fraction game" corresponding to a given list f 1 , f 2 , ..., f k of fractions and starting integer N, you repeatedly multiply the integer you have at any stage (initially N) by the earliest f i in the list for which the answer is integral. Whenever there is no such f i , the game stops. Formally, we define a sequence by S 0 =N, and S j+1 =f i S j , if for 1<=i<=k, the number f i S j is an integer but the numbers f 1 S j , ..., f i-1 S j are not. For example, if we have the list of eight fractions f 1 =170/39, f 2 =19/13, f 3 =13/17, f 4 =69/95, f 5 =19/23, f 6 =1/19, f 7 =13/7, f 8 =1/3, and start with N=21, we produce the (finite) sequence (21,39,170,130,190,138,114,6,2). In general, the sequence may be infinite. Given a fraction list and a starting integer calculate a part of the defined sequence. Actually, we are interested only in the powers of 2 that appear in the sequence.
Input Specification
The input contains several test cases. Every test case starts with three integers m, N, k. You may assume that 1<=m<=40, 1<=N<=1000, and 1<=k<=100. Then follow k fractions f 1 , ..., f k . For each fraction, first its numerator is given, followed by its denominator. You may assume that both are positive integers less than 1000 and their greatest common divisor is 1. The last test case is followed by a zero.
Output Specification
For each test case output on a line m numbers e 1 , ..., e m , separated by one space character, such that 2 e 1 , ..., 2 e k are the first m numbers in the defined sequence that are powers of 2. You may assume that there are at least m powers of 2 among the first 7654321 elements of the sequence.
Sample Input
1 21 8 170 39 19 13 13 17 69 95 19 23 1 19 13 7 1 3 20 2 14 17 91 78 85 19 51 23 38 29 33 77 29 95 23 77 19 1 17 11 13 13 11 15 2 1 7 55 1 0
Sample Output
1 1 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 2s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
p i *(1 + level of internal node K i ) + SUM q i *(level of leaf between K i and K i+1 ).
i=0..n
The leaf between K i and K i+1 is that leaf reached in the search for a string s that lies (lexicographically) strictly between K i and K i+1 . Adhere to the convention stated above for the border cases. The following figure illustrates the first test case of the sample input. It shows the two possible binary search trees, the probabilities and the associated costs. [IMAGE]
Input Specification
The input contains several test cases. Every test case starts with an integer n. You may assume that 1<=n<=200. Then follow 2n+1 non-negative integers denoting frequencies. Let s be the sum of all frequencies. You may assume that 1<=s<=1000000. The probabilities p 1 ,...,p n and q 0 ,...,q n are calculated in this order by dividing the frequencies by s. The last test case is followed by a zero.
Output Specification
For each test case devise a binary search tree whose cost is minimal for the specified probabilities. Output the integer cost*s for such a tree.
Sample Input
2 20 15 15 25 25 35 142 35 58 5 20 5 10 9 15 23 129 4 52 5 38 18 9 7 2 4 266 93 5 18 18 27 5 10 11 180 4 32 21 3 21 0 55 27 36 85 31 58 3 334 0 98 27 113 89 180 0 62 12 0 37 0 3 64 70 0 277 0 0 0 170 0 18 76 27 3 29 0
Sample Output
160 13637
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 2s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
Input Specification
The input contains several test cases. Every test case starts with an integer n. You may assume that 1<=n<=50000. Then follow n pairs of strings and numbers l 1 /p 1 ,...,l n /p n denoting the label and priority of each node. The strings are non-empty and composed of lower-case letters, and the numbers are non-negative integers. The last test case is followed by a zero.
Output Specification
For each test case output on a single line a treap that contains the specified nodes. A treap is printed as (<left sub-treap><label>/<priority><right sub-treap>). The sub-treaps are printed recursively, and omitted if leafs.
Sample Input
7 a/7 b/6 c/5 d/4 e/3 f/2 g/1 7 a/1 b/2 c/3 d/4 e/5 f/6 g/7 7 a/3 b/6 c/4 d/7 e/2 f/5 g/1 0
Sample Output
(a/7(b/6(c/5(d/4(e/3(f/2(g/1))))))) (((((((a/1)b/2)c/3)d/4)e/5)f/6)g/7) (((a/3)b/6(c/4))d/7((e/2)f/5(g/1)))
Added by: Wanderley Guimaraes Date: 2007-09-19 Time limit: 4s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2004
Input
Multiple test cases.Input terminates by EOF. For each test case: The first line contains two space-seperated integers L(0<=L<=10 9 ) and N(0<=N<=20). N lines follow, each contains a string (contains only lowercase letters), which is evil.You can assume the total length of the N evil strings is no more than 20.
Output
For each test case output one line contains the answer modudo 1000.
Example
Input: 10 1 zmy Output: 245
Added by: Blue Mary Date: 2007-09-20 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: description by Blue Mary; standard program and test data by g201513
Input
The first line contains 3 integers N(1<=N<=3000),M(2<=M<=N),K(1<=K<=N), separated by single spaces. The N fruits are numbered 1..N, and the biggest fruit is always numbered 1. N-1 lines follow, each contains 3 integers i,j,k separated by spaces denoted that there is a branch between fruit i(1<=i<=N) and fruit j(1<=j<=N) and the weight of illness of this branch is k(0<=k<=100000).
Output
Output one line contains a single integer denoted the minimum weight of illness of the hydra. If we cant divide the fruit into M groups, output "-1"(without quotes).
Example
Input: 8 2 4 1 2 20 1 3 4 1 4 13 2 5 10 2 6 12 3 7 15 3 8 5 Output: 4
Blue Marys Note: some new test cases were added on Dec.7, 2007. Added by: Blue Mary Date: 2007-09-20 Time limit: 0.5s-1s Source limit:50000B Languages: All except: C99 strict Resource: description by Blue Mary; standard program and test data by lcosvse
1797. Cardsharper
Problem code: CARD
Zenek is a well known (at least in Byteotia) card-sharper. He spent most of his best years practicing one card shuffle with his deck of n cards, which for simplicity we will call 1,2,...,n. Unfortunately, it turns out that knowing this one card shuffle a is not enough to earn a good living. To become rich and famous Zenek needs to know k shuffles c 1 ,...,c k . As he doesnt have enough time to learn all of them, he decided to learn only one shuffle b so that using both a and b he will be able to perform as many of c i as it is possible. Each shuffle is described by n numbers t 1 ,t 2 ,...,t n . Such description means that after performing shuffle, card that was originally at position i will be at position t i .
Task
Find shuffle b maximizing number of shuffles that can be performed.
Input
First line contains n (2<=n<=52). Second line contains n numbers a 1 ,a 2 ,...,a n describing shuffle that Zenek already knows.Third line contains k (2<=k<=6). i-th of the next k lines contains description of ci.
Output
First line contains description of the shuffle b that Zenek shoud learn. i-th of the next k lines contains: -1 when it is not possible to perform c i using only a and b m,r 1 ,r 2 ,...,r m (0<=m<=500000, 0<=r i <=10 6 ) meaning that applying a r 1 times, then b r 2 times, then a r 3 times and so on is the same as applying shuffle c i once.
Examples
Input
5 2 3 1 1 5 3 4 5 1 3 2 4 5 2 3 4 5 4 3 2 1
Output
2 1 3 4 5 3 4 1 1 0 9 1 1 3 1 4 1 1 1 1
Input
5 1 3 1 5 1 2 3 4 5 3 2 4 5 4 3 2 1 2 5 4 3
Output
1 3 2 4 5 2 0 1 -1 -1
Added by: Pawel Gawrychowski Date: 2007-09-20 Time limit: 1s Source limit:50000B Languages: All Resource: Fajne Zawody Informatyczne
Input Specification
The input contains several test cases. Each test case consists of an integer n. You may assume that 1<=n<=3000. A zero follows the input for the last test case.
Output Specification
For each test case specified by n output on a single line the n-th lucky number.
Sample Input
1 2 10 20 0
Sample Output
2 3 29 83
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input Specification
The input contains several test cases, each of which corresponds to a directed graph G. Each test case starts with an integer number v, denoting the number of vertices of G=(V,E), where the vertices will be identified by the integer numbers in the set V={1,...,v}. You may assume that 1<=v<=5000. That is followed by a non-negative integer e and, thereafter, e pairs of vertex identifiers v 1 ,w 1 ,...,v e ,w e with the meaning that (v i ,w i )(-E. There are no edges other than specified by these pairs. The last test case is followed by a zero.
Output Specification
For each test case output the bottom of the specified graph on a single line. To this end, print the numbers of all nodes that are sinks in sorted order separated by a single space character. If the bottom is empty, print an empty line.
Sample Input
3 1 2 1 0 3 3 2 3 3 1 1 2
Sample Output
1 3 2
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input Specification
The input data will contain multiple test cases. Each test case begins with a line containing a pair of integers m and n. The number m specifies the number of team members (1 <= m <= 3), and n specifies the number of problems to be solved (1 <= n <= 10). The next line contains m positive integers giving the intelligence amounts of the m team members. Following this are n lines, describing the time-brightness tradeoffs for each of the n problems. Each line starts with a positive integer k (k <= 10), followed by k pairs of positive integers s 1 ,t 1 ,s 2 ,t 2 ,...,s k ,t k that satisfy s i < s i+1 for 1 <= i < k. The minimum intelligence requirement of the problem is s 1 , i.e. it cannot be solved by a member with less intellectual capacity than this number. If the problem is solved by a team member with brightness s, where s i <= s < s i+1 for some i, then its solution time will be t i . Finally, if the problem is solved by a team member with intellectual capacity s k or more, then its execution time will be t k . A pair of zeroes will follow the input for the last test case. You may assume that each problem will be solved in exactly the time specified for the given brightness, regardless of the number of other problems being solved by other team members at the same time. No problem will have an intelligence requirement larger than that of the brightest team member.
Output Specification
For each test case, first display the case number (starting with 1 and increasing sequentially). Then print the minimum average solution time for the set of problems with two digits to the right of the decimal point. Follow this by the description of a solution schedule that achieves this average solution time. Display one line for each problem, in the order they were given in the input, that identifies the problem number, the member used to solve it (numbered in the order given in the input), the time when the member started to solve the problem, and the time when the problem was solved. Follow the format shown in the sample output, and print a blank line after each test case.
Sample Input
2 4 40 60 1 35 4 1 20 3 1 40 10 1 60 7 3 5 10 20 30 2 10 50 12 30 2 10 100 20 25 1 25 19 1 19 41 2 10 18 30 42 0 0
Sample Output
Case 1 Average Problem Problem Problem Problem Case 2 Average Problem Problem Problem Problem Problem solution time = 7.75 1 is solved by member 2 is solved by member 3 is solved by member 4 is solved by member 2 1 1 2 from from from from 0 0 3 4 to to to to 4 3 13 11
solution time = 35.40 1 is solved by member 2 is solved by member 3 is solved by member 4 is solved by member 5 is solved by member
3 2 3 2 1
19 to 49 0 to 25 0 to 19 25 to 66 0 to 18
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 2s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input Specification
The input contains several test cases. Each test case consists of four real numbers m w , m i , t w , t i . The mass of water m w and the mass of ice m i are both non-negative, given in grams, and m w + m i > 0. The water temperature t w and the ice temperature t i follow, both given in degrees Celsius, and you may assume that -30 < t i <= 0 <= t w < 100. The last test case is followed by four zeroes.
Output Specification
For each test case output the amount of ice and water in grams and the final temperature of the mixture in degrees Celsius. All numbers must be rounded to one digit. Adhere to the sample output for the exact format to use.
Sample Input
100 100 100 10 0 0 20 50 22 0 35 25 90 25 0 0 -10 0 -10.5 -28
[IMAGE]
Sample Output
0.0 g of ice and 120.0 g of water at 27.5 C 22.0 g of ice and 100.0 g of water at 0.0 C 6.0 g of ice and 129.0 g of water at 0.0 C 100.0 g of ice and 0.0 g of water at -4.2 C
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
1802. Edge
Problem code: EDGE
For products that are wrapped in small packings it is necessary that the sheet of paper containing the directions for use is folded until its size becomes small enough. We assume that a sheet of paper is rectangular and only folded along lines parallel to its initially shorter edge. The act of folding along such a line, however, can be performed in two directions: either the surface on the top of the sheet is brought together, or the surface on its bottom. In both cases the two parts of the rectangle that are separated by the folding line are laid together neatly and we ignore any differences in thickness of the resulting folded sheet. After several such folding steps have been performed we may unfold the sheet again and take a look at its longer edge holding the sheet so that it appears as a one-dimensional curve, actually a concatenation of line segments. If we move along this curve in a fixed direction we can classify every place where the sheet was folded as either type A meaning a clockwise turn or type V meaning a counter-clockwise turn. Given such a sequence of classifications, produce a drawing of the longer edge of the sheet assuming 90 degree turns at equidistant places.
Input Specification
The input contains several test cases, each on a separate line. Each line contains a nonempty string of characters A and V describing the longer edge of the sheet. You may assume that the length of the string is less than 200. The input file terminates immediately after the last test case.
Output Specification
For each test case generate a PostScript drawing of the edge with commands placed on separate lines. Start every drawing at the coordinates (300,420) with the command "300 420 moveto". The first turn occurs at (310,420) using the command "310 420 lineto". Continue with clockwise or counter-clockwise turns according to the input string, using a sequence of "x y lineto" commands with the appropriate coordinates. The turning points are separated at a distance of 10 units. Do not forget the end point of the edge and finish each test case by the commands stroke and showpage. You may display such drawings with the gv PostScript interpreter, optionally after a conversion using the ps2ps utility.
Sample Input
V AVV
Sample Output
300 420 moveto 310 420 lineto 310 430 lineto stroke showpage 300 420 moveto 310 420 lineto 310 410 lineto 320 410 lineto 320 420 lineto stroke showpage
[IMAGE]
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
1803. Fold
Problem code: FOLD
Read the statement of problem E: Edge to understand how to fold a sheet of paper and how to interpret the input. We define a "stripe" to be a maximally large part of the sheet that has no folding line going through. Since the turns occur at equidistant places, all stripes are congruent. In this problem you are given the description of the result of performing several folding steps as in problem E: Edge, i.e., in the unfolded state. Additionally, you know that the length of the sheet in its folded state is exactly the length of 1 stripe (again, we ignore thickness). Find the minimum number of folding steps necessary to generate the described sheet from an initially flat sheet of paper. Note that performing a folding step may create more than one turn in the result because parts of the sheet already overlay due to previous folding steps. When a step is carried out, however, all overlaying parts of the sheet are affected, i.e., it is not allowed to fold, say, only the top three layers. Finally, note that every result can be obtained by iterating through the turns in a fixed direction and performing a folding step at each turn, thereby accumulating a 1 stripe long stack of all stripes. If n is the number of turns in the input description, this procedure in fact requires n folding steps, which is not necessarily minimal as can be observed in the sample output.
Input Specification
The input contains several test cases, each on a separate line. Each line contains a nonempty string of characters A and V describing the longer edge of the sheet. You may assume that the length of the string is less than 200. The input file terminates immediately after the last test case.
Output Specification
For each test case print on a line the minimum number of folding steps required to produce the described sheet of paper.
Sample Input
V AVV AAVAAVVVAAV
Sample Output
1 2 4
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input Specification
The input contains several test cases. Each test case consists of an integer n. You may assume that 1<=n<=5000. The last test case is followed by a zero.
Output Specification
For each test case specified by n output on a single line any genome of length n. If no genome of length n exists, output a blank line instead.
Sample Input
1 2 10 20 0
Sample Output
N NO NONPNOPNPO NONPNOPNPONOPNONPNOP
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 1s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input Specification
The input contains several test cases. Each test case describes a histogram and starts with an integer n, denoting the number of rectangles it is composed of. You may assume that 1<=n<=100000. Then follow n integers h 1 ,...,h n , where 0<=h i <=1000000000. These numbers denote the heights of the rectangles of the histogram in left-to-right order. The width of each rectangle is 1. A zero follows the input for the last test case.
Output Specification
For each test case output on a single line the area of the largest rectangle in the specified histogram. Remember that this rectangle must be aligned at the common base line.
Sample Input
7 2 1 4 5 1 3 3 4 1000 1000 1000 1000 0
Sample Output
8 4000
Added by: Wanderley Guimaraes Date: 2007-09-21 Time limit: 3s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2003
Input
The input contains several blocks of test cases. Each block begins with a line containing four integers: 1 <= n, m <= 10000 describe the size of the plain, ks <= 100 is the number of small nuclear plants, and kl <= 100 is the number of large nuclear plants. The next ks lines describe the coordinates of the small nuclear plants, each line contains two integers 0 <= x <= n and 0 <= y <= m . The next kl lines describe the large nuclear plants in a similar fashion. The input is terminated by a block with n = m = ks = kl = 0 .
Output
For each test case, you have to output a single line containing the area that can be used for growing barley. This number should be a real value with two digits of precision. To avoid rounding problems, we accept solutions with a maximum of 0.01(positive or negative) error.
Example
Input: 10 10 2 2 2 2 4 4 5 6 1 8 10 10 1 0 5 5 0 0 0 0 Output: 87.46 98.94
Added by: Blue Mary Date: 2007-09-23 Time limit: 5s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
There is no input.
Output
Ten lines, each contains a single integer denoted the answer to the correspoding problem.
Example
There is no example.
Links
If there is any problem, please contact me. Added by: Blue Mary Date: 2007-09-27 Time limit: 1s Source limit:80B Languages: TEXT Resource: CMOP :)
Input
There is exactly one case. First one line, containing 3 integers N K M, with 1 <= N <= 200000, 0 <= K <= M, 0 <= M <= N. Next M lines, each line includes an id number of a crowded place. The last (N - 1) lines describe (N - 1) two-way roads connected N places, form a b i, with a, b is the id of 2 places, and i is its interest value (-10000 <= i <= 10000).
Output
Only one number, the maximum total interest value we can obtain.
Example
Input: 8 2 3 3 5 7 1 3 1 2 3 10 3 4 -2 4 5 -1 5 7 6 5 6 5
4 8 3
Output: 12
Explanation
We choose 2 and 6 as the departure and destination place, so the tour will be 2 -> 3 -> 4 -> 5 -> 6, total interest value = 10 + (-2) + (-1) + 5 = 12 * Added some unofficial cases Added by: Thanh-Vy Hua Date: 2007-09-28 Time limit: 1s-5s Source limit:50000B Languages: All Resource: Adapted from Preslav Les problem, first used in Bulgarian OI 07
1833. Sudoku
Problem code: SUDOKU2
Oh no! Bill just realized that the sudoku puzzle he had spent the last ten minutes trying to solve essentially was last weeks puzzle, only rotated counterclockwise. How cheap! Couldnt the magazine afford to make a new one every week? Of course, he had no way of knowing about this before he started to solve it, as the holes to fill with digits were other than last week. Nevertheless, realizing that this weeks puzzle was a simple derivative of last weeks certainly took the fun out of solving the rest of it. [IMAGE] The sudoku board consists of 99 cells. These can be grouped into 33 regions of 33 cells each. Some of the cells are filled with a digit 1 through 9 while the rest of them are left empty. The aim of the game is to fill each empty cell with a digit 1...9 so that every row, every column and every region contains each of the numbers 1...9 exactly once. A proper sudoku puzzle always has exactly one solution. Help Bill avoid unpleasant surprises by creating a program that checks whether an unsolved sudoku puzzle is in fact derived from an earlier puzzle by simple operations. The allowed operations are: Rotating the entire puzzle clockwise or counterclockwise. Swapping two columns within a 39 column segment. Swapping two rows within a 93 row segment. Swapping entire row or column segments. Applying a permutation f of the digits 1...9 to every cell (i.e. replace x by f(x) in every cell). An operation is considered being performed on the sudoku solution (rather than on the unsolved puzzle) and always guarantees that if the board before the transformation was a solution to a sudoku puzzle, it still is afterwards.
Input
The input starts with the number of test cases 0 <= N <= 50 on a single line. Then for every test case follow nine lines describing last weeks puzzle solution, from top to bottom. Each line corresponds to a row in the puzzle and consists of nine digits (1...9), describing the contents of the cell from left to right. Last weeks solution is followed by nine lines describing this weeks unsolved puzzle. Here, also, every line corresponds to a puzzle row and every digit (0...9) describes the contents of a cell. 0 indicates that the cell is empty. The rows are presented ordered from top to bottom, and within each row, the cells are ordered from left to right.
After every test case except the last one follows a blank line. Every unsolved puzzle is guaranteed to be uniquely solvable and last weeks solution is always a proper sudoku solution. /p>
Output
For every test case, output Yes if the sudoku puzzle can be derived from the given solved puzzle using the allowed operations, or No if this is not possible.
Example
Input: 2 963174258 178325649 254689731 821437596 496852317 735961824 589713462 317246985 642598173 060104050 200000001 008305600 800407006 006000300 700901004 500000002 040508070 007206900 534678912 672195348 198342567 859761423 426853791 713924856 961537284 287419635 345286179 010900605 025060070 870000902 702050043 000204000 490010508 107000056 040080210 208001090 Output: Yes No
Added by: Robin Nittka Date: 2007-10-02 Time limit: 10s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
An integer 0 <= T <= 5 on the first line gives the cardinality of the set of test cases. The first line of each test case contains the number of operations 0 <= N <= 2000. Then follow N lines each containing one of the five commands. It is guaranteed that the SetStack computer can execute all the commands in the sequence without ever popping an empty stack.
Output
For each operation specified in the input, there will be one line of output consisting of a single integer. This integer is the cardinality of the topmost element of the stack after the corresponding command has executed. After each test case there will be a line with *** (three asterisks).
Example
Input: 2 9 PUSH DUP ADD PUSH ADD DUP ADD DUP UNION 5 PUSH PUSH ADD PUSH INTERSECT Output: 0 0 1 0 1 1 2 2 2 *** 0 0 1 0 0 ***
Added by: Robin Nittka Date: 2007-10-02 Time limit: 12s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
1837. Pie
Problem code: PIE
[IMAGE] My birthday is coming up and traditionally Im serving pie. Not just one pie, no, I have a number N of them, of various tastes and of various sizes. F of my friends are coming to my party and each of them gets a piece of pie. This should be one piece of one pie, not several small pieces since that looks messy. This piece can be one whole pie though. My friends are very annoying and if one of them gets a bigger piece than the others, they start complaining. Therefore all of them should get equally sized (but not necessarily equally shaped) pieces, even if this leads to some pie getting spoiled (which is better than spoiling the party). Of course, I want a piece of pie for myself too, and that piece should also be of the same size. What is the largest possible piece size all of us can get? All the pies are cylindrical in shape and they all have the same height 1, but the radii of the pies can be different.
Input
One line with a positive integer: the number of test cases. Then for each test case: One line with two integers N and F with 1 <= N, F <= 10000: the number of pies and the number of friends. One line with N integers r i with 1 <= r i <= 10000: the radii of the pies.
Output
For each test case, output one line with the largest possible volume V such that me and my friends can all get a pie piece of size V. The answer should be given as a floating point number with an absolute error of at most 10 -3 .
Example
Input: 3 3 3 4 3 3 1 24 5 10 5 1 4 2 3 4 5 6 5 4 2 Output: 25.1327 3.1416 50.2655
Added by: Robin Nittka Date: 2007-10-02 Time limit: 5s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
The input consists of several (at most 20) games to be analyzed. Each game starts with two integers 1 <= n <= 30, 0 <= m <= 1000, giving the number of cities and railway routes in the map, respectively. Then follow n lines, giving the names of the n cities. City names are at most 20 characters long and consist solely of lower case letters (a-z). After this follow m lines, each containing the names of two different cities and an integer 1 <= c <= 10000, indicating that there is a railway route with cost c between the two cities. Note that there may be several railway routes between the same pair of cities. You may assume that it is always possible to set up a train line from any city to any other city.
Finally, there will be four lines, each containing the names of two cities, giving the four train line assignments. The input is terminated by a case where n = m = 0. This case should not be processed.
Output
For each game, output a single line containing a single integer, the minimum possible cost to set up all four train lines.
Example
Input: 10 15 stockholm amsterdam london berlin copenhagen oslo helsinki dublin reykjavik brussels oslo stockholm 415 stockholm helsinki 396 oslo london 1153 oslo copenhagen 485 stockholm copenhagen 522 copenhagen berlin 354 copenhagen amsterdam 622 helsinki berlin 1107 london amsterdam 356 berlin amsterdam 575 london dublin 463 reykjavik dublin 1498 reykjavik oslo 1748 london brussels 318 brussels amsterdam 173 stockholm amsterdam oslo london reykjavik dublin brussels helsinki 2 1 first second first second 10 first first first first second first first first 0 0 Output: 3907 10
Added by: Robin Nittka Date: 2007-10-02 Time limit: 20s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
The input begins with a positive number on a line of its own telling the number of test cases (at most 20). For each test case there is one line containing a single positive integer N, 3 <= N <= 70 giving the number of books. Then N lines follow each containing two positive integers h i , t i , satisfying 150 <= h i <= 300 and 5 <= t i <= 30, the height and thickness of book i respectively, in millimeters.
Output
For each test case, output one line containing the minimum area (height times width) of a three-shelf bookcase capable of holding all the books, expressed in square millimeters.
Example
Input: 2 4 220 29 195 20 200 9 180 30 6
20 30 15 20 15 9
Added by: Robin Nittka Date: 2007-10-02 Time limit: 40s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
One line with a positive integer: the number of test cases (at most 100). Then for each test case: One line with two integers n and m, where n is the number of jobs in the queue (1 <= n <= 100) and m is the position of your job (0 <= m <= n-1). The first position in the queue is number 0, the second is number 1, and so on. One line with n integers in the range 1 to 9, giving the priorities of the jobs in the queue. The first integer gives the priority of the first job, the second integer the priority of the second job, and so on.
Output
For each test case, print one line with a single integer; the number of minutes until your job is completely printed, assuming that no additional print jobs will arrive.
Example
Input: 3 1 0 5 4 2 1 2 3 4 6 0 1 1 9 1 1 1 Output: 1 2 5
Added by: Robin Nittka Date: 2007-10-02 Time limit: 2s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
The cost of this solution is 6 pounds. Note that the digit 1 which got pasted over in step 2 can not be reused in the last step - a new 1 must be purchased.
Input
One line with a positive number: the number of test cases (at most 100). Then for each test case, one line with two numbers separated by a blank. Both numbers are four-digit primes (without leading zeros).
Output
One line for each case, either with a number stating the minimal cost or containing the word Impossible.
Example
Input: 3 1033 8179 1373 8017 1033 1033 Output: 6 7 0
Added by: Robin Nittka Date: 2007-10-02 Time limit: 3s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
One line with a positive number: the number of test cases (at most 25). Then for each test case: One line with an integer N, 2 <= N <= 500, the number of points, and an integer L, 1 <= L <= 10000, the necessary length to flatten. N lines with two integers x i and y i with 0 <= x i , y i <= 10000 describing the landscape of Lineland. The x i are in (strictly) ascending order. At position x i the height of the landscape is x i . Between two x i the landscape has constant slope. (So the landscape is piecewise linear). The difference between x N and x 1 is greater than or equal to L.
Output
For each test case, output one line with the minimum amount of rock which must be removed in order to build the airport. The answer should be given as a floating point number with an absolute error of at most 10 -3 .
Example
Input: 4 3 5 0 2 4 2 14 0
4 3 0 2 2 0 4 0 5 3 3 10 10 2 30 2 35 7 2 777 222 333 4444 5555 Output: 0.9000 0.3750 0.0000 373362.4867
Added by: Robin Nittka Date: 2007-10-02 Time limit: 20s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Input
The input begins with a positive number on a line of its own telling the number of test cases (at most 500). Then for each test case there is one line containing a permutation of the 26 capital letters of the English alphabet.
Output
For each test case, output one line containing Yes if the given permutation can result from applying some permutation twice on the original alphabet string ABC...XYZ, otherwise output No.
Example
Input: 2 QWERTYUIOPASDFGHJKLZXCVBNM ABCDEFGHIJKLMNOPQRSTUVWXYZ Output: No Yes
Added by: Robin Nittka Date: 2007-10-02 Time limit: 2s Source limit:50000B Languages: All Resource: ACM ICPC NWERC 2006
Problem
Write a program that, given a description of the maze and the time limit, predicts the number of mice that will exit the maze. Assume that there are no bottlenecks is the maze, i.e. that all cells have room for an arbitrary number of mice.
Input
The maze cells are numbered $1,2,\ldots,N$ , where $N$ is the total number of cells. You can assume that $N\leq 100$ . The first three input lines contain $N$ , the number of cells in the maze, $E$ , the number of the exit cell, and the starting value $T$ for the count-down timer (in some arbitrary time unit). The fourth line contains the number $M$ of connections in the maze, and is followed by $M$ lines, each specifying a connection with three integer numbers: two cell numbers $a$ and $b$ (in the range $1,\ldots,N$ ) and the number of time units it takes to travel from $a$ to $b$ . Notice that each connection is one-way, i.e., the mice cant travel from $b$ to $a$ unless there is another line specifying that passage. Notice also that the time required to travel in each direction might be different.
Output
The output consists of a single line with the number of mice that reached the exit cell $E$ in at most $T$ time units.
Example
Input: 4 2 1 8 1 2 1 1 3 1 2 1 1 2 4 1 3 1 1 3 4 1 4 2 1 4 3 1 Output: 3
Added by: Robin Nittka Date: 2007-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: ACM ICPC -- SWERC 2001
Problem
Write a program that reads a project file and outputs the order in which the tasks should be performed.
Input
For simplicity we represent each task by an integer number from $1,2,\ldots,N$ (where $N$ is the total number of tasks). The first line of input specifies the number $N$ of tasks and the number $M$ of rules, such that $N \leq 100,\; M\leq 100$ . The rest of the input consists of $M$ rules, one in each line, specifying dependencies using the following syntax:
$T_0$ $k$ $T_1$ $T_2$ ... $T_k$
This rule means that task number $T_0$ depends on $k$ tasks $T_1, T_2, \ldots T_k$ (we say that task $T_0$ is the target and $T_1\ldots T_k$ are dependents). Note that tasks numbers are separated by single spaces and that rules end with a newline. Rules can appear in any order, but each task can appear as target only once. Your program can assume that there are no circular dependencies in the rules, i.e. no task depends directly or indirectly on itself.
Output
The output should be a single line with the permutation of the tasks $1\ldots N$ to be performed, ordered by dependencies (i.e. no task should appear before others that it depends on). To avoid ambiguity in the output, tasks that do not depend on each other should be ordered by their number (lower numbers first).
Example
Input: 5 4 3 2 1 5 2 2 5 3 4 1 3
5 1 1 Output: 1 5 3 2 4
Added by: Robin Nittka Date: 2007-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: ACM ICPC -- SWERC 2001
1847. No Change
Problem code: NOCHANGE
Though it might be hard to imagine, the inhabitants of a small country Additivia do not know of such thing as change, which probably has to do with them not knowing subtraction either. When they buy something, they always need to have the exact amount of addollars, their currency. The only other option, but not a really attractive one, is over-paying. Professor Adem, one of the Additivian mathematicians came up with an algorithm for keeping a balanced portfolio. The idea is the following. Suppose you have more coins of value $v_1$ than coins of value $v_2$ . In this case you should try to spend at least as many coins of value $v_1$ as those of value $v_2$ on any buy you make. Of course spending too many $v_1$ coins is not a good idea either, but to make the algorithm simpler professor Adem decided to ignore the problem. The algorithm became an instant hit and professor Adem is now designing a kind of electronic portfolio with built-in Adems algorithm. All he needs now is a software for these machines, that will decide whether a given amount of addollars can be paid using a given set of coins according to the rules of Adems algorithm. Needless to say, you are his chosen programmer for the task.
Problem
Write a program that reads the description of a set of coins and an amount of addollars to be paid, and determines whether you can pay that amount according to Professor Adems rules.
Input
The input starts with the amount of addollars to be paid $x$ , where $1\le x \le 100 000$ . The number of different coin values $k$ follows, where $1 \le k \le 5$ . The values of the coins $v_1,\ldots,v_k$ follow, where $1 \le v_i \le 10 000$ . Notice that the order among coin values is significant: you need to spend at least as many coins of value $v_1$ as coins of value $v_2$ , at least as many coins of value $v_2$ as those of value $v_3$ , and so on. You may assume that you have a sufficiently large number of coins of each value.
Output
Your program should output for each test case either a single word YES, if the given amount can be paid according to the rules, or a single word NO otherwise.
Example
Input: 13 3 9 2 1 Output: NO
Added by: Robin Nittka Date: 2007-10-04 Time limit: 5s Source limit:50000B Languages: All Resource: ACM ICPC -- SWERC 2001
Input
There will be multiple cases to consider. Each case begins with an integer N, no larger than 1000, that specifies the number of signal samples. The next N data items are real numbers representing the signal samples at time 1/N sec, 2/N sec, and so forth. A single integer 0 follows the last case. The number of samples for each case is guaranteed to be sufficient to allow the correct result to be obtained.
Output
For each input case, display a single line that is formatted like this: Case 1, f1 = 400, f2 = 500
Example
Input: 100 0.156912 0.312821 0.466731 0.617657 0.764638 0.906737 1.04305 1.17271 1.29489 1.40883 1.51381 1.60917 1.69432 1.76873 1.83195 1.8836 1.92338 1.95106 1.96649 1.96962 1.96045 1.93908 1.9057 1.86055 1.80396 1.73634 1.65816 1.56997 1.47237 1.36603 1.25166 1.13003 1.00196 0.868307 0.729943 0.587785 0.442764 0.295823 0.147918 1.68756e-010 -0.146981 -0.292088 -0.434403 -0.573031 -0.707107 -0.835801 -0.958325 -1.07394 -1.18195 -1.28171 -1.37266 -1.45428 -1.52611 -1.58779 -1.63898 -1.67947 -1.70907 -1.7277 -1.73535 -1.73205 -1.71795 -1.69323 -1.65816 -1.61308 -1.55838 -1.49452 -1.42201 -1.34141 -1.25334 -1.15846 -1.05745 -0.951057 -0.840028 -0.725146 -0.607206 -0.487017 -0.365392 -0.243145 -0.121082 -2.75143e-010 0.119322 0.236125 0.34968 0.459289 0.564288 0.664055 0.758014 0.845635 0.926438 1 1.06595 1.12398 1.17384 1.21533 1.24833 1.27276 1.28862 1.29596 1.29489 1.28558
Added by: Camilo Andrs Varela Len Date: 2007-10-07 Time limit: 1s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
Input
There will be multiple cases to consider. Each case has a single line of input that contains one or more decimal digits followed by the end of line. The maximum number of digits in a sequence will be 6. The last case is followed by an empty line (that is, only an end of line).
Output
For each input case, display the case number (1, 2, ...), the input sequence, the cost of the cheapest transformation, and the length of the resulting palindrome. Your output should follow the format shown in the examples below.
Example
Input: 911 9118 11234 <-- This line is blank Output: Case 1, sequence = 911, cost = 1, length = 4 Case 2, sequence = 9118, cost = 2, length = 4 Case 3, sequence = 11234, cost = 3, length = 8
Added by: Camilo Andrs Varela Len Date: 2007-10-07 Time limit: 1s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
Limits and Caveats Macro names and arguments will contain no more than 32 characters each. The defining string for a macro will contain no more than 100 characters. Macros will never be defined more than once (that is, the same macro name will not be used more than once as the first argument to "def"). Macro calls will always provide the correct number of arguments. Character case is significant in comparisons. All input characters, including end of line characters, are to be processed through the macro processor. No output line will contain more than 80 characters, including the end of line character. The input is guaranteed to be correct.
Input
There will be multiple cases to consider. The input for each case begins with a line containing a single integer between 1 and 10, that specifies the number of lines of text immediately following that will be used as input to the macro processor. None of these lines will contain more than 80 characters, so the input to the macro processor will contain at most 810 characters. The last case will be followed by a line containing the integer 0.
Output
For each input case, display the case number (1, 2, ...), a line containing 79 hyphens, the output from the macro processor, another line containing 79 hyphens, and a blank line. In the sample input shown below, assume that the last visible character on each line is immediately followed by the end of line character. Blank lines in the expected output are shown here as **BLANK** for clarity, but these should actually be totally blank in your output.
Example
Input: 1 This is just copied (including end of line). 1 [def,321,<$3-$2-$1>][321,This,is,fun] 1 [def,321,<$3-$2-$1>][321,[321,A,B,C],D,E] 1 [def,321,<$3-$2-$1>][321,This,is,fun][321,[321,A,B,C],D,E] 3 [def,321,<$3-$2-$1>] [321,This,is,fun] [321,[321,A,B,C],D,E] 3 [def,A,<$1[B]$2>] [def,B,*B*] [A,1,2] 2 [def,#,<[-]$1[-]$2[-]$3[-]>][def,-,<$0>][def,DEF,def][[DEF],X,THIS IS X] [X][#,DEF,#,X] 0 Output: Case 1 ------------------------------------------------------------------------------This is just copied (including end of line).
------------------------------------------------------------------------------**BLANK** Case 2 ------------------------------------------------------------------------------fun-is-This ------------------------------------------------------------------------------**BLANK** Case 3 ------------------------------------------------------------------------------E-D-C-B-A ------------------------------------------------------------------------------**BLANK** Case 4 ------------------------------------------------------------------------------fun-is-ThisE-D-C-B-A ------------------------------------------------------------------------------**BLANK** Case 5 ------------------------------------------------------------------------------**BLANK** fun-is-This E-D-C-B-A ------------------------------------------------------------------------------**BLANK** Case 6 ------------------------------------------------------------------------------**BLANK** **BLANK** 1*B*2 ------------------------------------------------------------------------------**BLANK** Case 7 ------------------------------------------------------------------------------**BLANK** THIS IS X-DEF-#-X------------------------------------------------------------------------------**BLANK**
Added by: Camilo Andrs Varela Len Date: 2007-10-07 Time limit: 1s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
Input
There will be multiple cases to consider. The input for each case is an integer N specifying the number of vertices in a tree, which will always be between 1 and 10. The last case will be followed by a zero.
Output
For each input case, display the case number (1, 2, ...), the input value of N, and the number of different ways in which a tree with N vertices may be labeled. Use the format shown in the examples below.
Example
Input: 2 3 4 5 0 Output: Case 1, Case 2, Case 3, Case 4,
N N N N
= = = =
2, 3, 4, 5,
# # # #
of of of of
= = = =
1 3 16 125
Added by: Camilo Andrs Varela Len Date: 2007-10-07 Time limit: 1s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
Input
There will be multiple cases to consider. The input for each case begins with an integer N, the number of months for which planning is required (never larger than 24). This is followed by three integers giving the cost of hiring a worker, the workers monthly salary, and the severance pay for a terminated worker. Finally there will appear N integers giving the required minimum number of workers needed in each month. The last case will be followed by a zero.
Output
For each input case, display the case number (1, 2, ...) and the minimum cost to the company. Use the format shown in the examples below.
Example
Input: 3 400 500 600 10 9 11 8 400 600 600 11 9 10 14 9 9 13 15 0 Output: Case 1, cost = $19900 Case 2, cost = $66600
Added by: Camilo Andrs Varela Len Date: 2007-10-07 Time limit: 1s Source limit:50000B Languages: All Resource: North Central North America Regional Programming Contest - 2003
Sample Output:
1 0 10
NOTE: Please use 64-bit integers. Added by: Prasanna Date: 2007-10-08 Time limit: 1s-10s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Idea from a Topcoder problem]
could be transformed into this string, which is easier to compress because it has many repeated characters:
TEXYDST.E.IXIXIXXSSMPPS.B..E.S.EUSFXDIIOIIIT
Now the Burrows-Wheeler algorithm works as follows: Given an input string S, eg: "abcba". Find all rotations of S.
eg: "abcba", "bcbaa", "cbaab", "baabc", "aabcb"
Output the row number (1-based indexing) containing the original input string. Also output the strings formed by characters in the last column. eg: 2 bacab Now given the output of Burrows-Wheeler, can you recover the orginal string?
Input Format: The input file consists of multiple testcases. The first line of each testcase contains one integer, R, indicating the row number containing the original input string in the sorted matrix. The second line of each testcase contains one string, Col, which is the last column of the grid. (1 <= len(Col) <= 1000) Col contains only lowercase characters. 1 <= R <= len(Col). Input terminates with a line containing R=0 which must not be processed. Output Format: Print the original input string to the burrow wheelers algorithm. Testdata: 30 testcases Sample Input:
2 bacab 3 rwlb 11 baaabaaaabbbaba 0
Sample Output:
abcba rbwl baaabbbbaaaaaab
Added by: Prasanna Date: 2007-10-08 Time limit: 1s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Wikipedia/General]
Sample Output:
1 0 1 9 82340 54801678
Test Data: About 50 testcases. Added by: Prasanna Date: 2007-10-08 Time limit: 30s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Topcoder problem with Constraints raised]
Sample Output:
(1,0) (1,1) (0,1) (-32,32) (9648,-31504)
Added by: Prasanna Date: 2007-10-08 Time limit: 1s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Tsinghua]
Input Format
The input file consists of multiple testcases. The first line of each testcase contains three integers, W B N (1 <= N <= 100; W,B > 0) The second line of each testcase contains N integers, denoting money[i]. (| money[i] | <= 10 6 ) Input terminates with a line containing three zeros which must not be processed.
Output Format
For each testcase print one line denoting the maximal money gained and the number of turns taken. Please see the sample output and stick to the output format. "Case#id: Jack wins $X out of Y throws." NOTE: You must spell the same way the sample output says. Extra spaces and case insensitivity can cause wrong answer responses. Testdata: 100 testcases, Timelimit: 10s Sample Input:
2 3 10 -1 3 2 5 2 3 14 -1 3 2 5 3 3 5 -1 -2 -3 1 2 6 -1 -1 10 0 0 0 1 -2 0 5 1 -3 -5 -5 1 -2 0 5 -5 -5 1 -3 -4 -5 10 -1 -1
Sample Output:
Case#1: Case#2: Case#3: Case#4: Jack Jack Jack Jack wins wins wins wins $15 out of 2 throws. $10 out of 3 throws. $0 out of 0 throws. $18 out of 1 throws.
Output Explanation: We present one of the optimal solutions. We number balls from 1 to N. TestCase#1: [Jack takes only two throws, though he can take three] Throw#1: From ball#3 towards right, 2 + 1 + 0 + 1 = 4 Throw#2: From ball#8 towards left, 5 + -2 + 5 + 3 = 11 TestCase#2: Throw #1: From ball#3 towards left, 2 + -1 = 1 Throw #2: From ball#4 towards left, 5 + 3 = 8 Throw #3: From ball#13 towards right, 1 = 1 TestCase#3: All numbers are negative. Jack takes no throws. Added by: Prasanna Date: 2007-10-08 Time limit: 10s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Self]
30 12 5 3 12 30 100 5 22 12 22 100 0 0 0
Sample Output:
4 1 1 2 3 0 1 1 1 1 5 1 2 3 3
Added by: Prasanna Date: 2007-10-08 Time limit: 5s-120s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Self]
Sample Output:
12 10 8
Added by: Prasanna Date: 2007-10-08 Time limit: 10s Source limit:50000B Languages: All Resource: NITT Local Contest 07 [ZJU inc constrts]
Sample Output:
15 6 14
Added by: Prasanna Date: 2007-10-08 Time limit: 1s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Self/Traditional]
Sample Output:
65536 1 32768 16
Added by: Prasanna Date: 2007-10-08 Time limit: 3s Source limit:50000B Languages: All Resource: NITT ACM ICPC Local Contest 2007 [Self]
1960. Rectangles
Problem code: RECTANGL
You are given a set S of N points in the plane and must count the number of distinct axis-parallel rectangles whose four vertices all lie in S (that is, count those rectangles which have two sides parallel to the x-axis, and the other two sides parallel to the y-axis).
Input
The first line of the input is N (1 <= N <= 250000), the number of points in S. N lines then follow, where the i-th line is of the form "x i y i ", giving the coordinates of a point (x i , y i ) in S. All given points are distinct, and all coordinates fit into a 32-bit signed integer.
Output
Your output should consist of a single number, the number of distinct axis-parallel rectangles whose four vertices all lie in S, followed by a newline.
Example
Input: 6 -1 0 -1 1 0 0 0 1 1 0 1 1 Output: 3
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 1s-30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
Input
The first line of input contains N, 1 <= N <= 500. Each of the next N lines contains a space-separated list of integers. The i-th of these lines describes the "roads" that connect to "road" i. The first number on the line specifies the number of those "roads", d i , and the following d i numbers specify their labels. Note that although at this point we dont know if the map is valid, the input is consistent, i.e. if a road x is on the signpost of y, then y will be on the signpost of x. (Otherwise the archaeologist would know this is not a Roman map right away).
Output
If the input cannot describe a valid map according to the description, output "NO" on the first (and only) line of output. Otherwise, output "YES" and on each of the next N lines, write two integers separated by space, the numbers of the two cities that the road connected. City labeling is up to you with the only restriction that all city labels must be integers between 1 and M, where M is the total number of cities. Of course, a city can only have one label.
Note that since we dont know the actual locations of the cities or whether the roads were straight, we have no idea what the total cost of the network might have been. The archaeologist is willing to accept any map for which she cant determine if there is a cheaper network without knowing the actual costs. It is assumed that each road had some positive cost.
Example
Input: 3 2 3 2 2 1 3 2 2 1 Output: YES 1 3 4 1 1 2
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
1962. Circles
Problem code: CIRCLES
Little Gary plays the following video game. Circles pop up on the screen and disappear from it. When the screen flashes, Gary can draw a straight line on the screen and win as many points as there are circles intersected by the line. As a born-to-be-winner, Gary wants to maximize his score. Please, help him, and write a program that will determine the maximum number of points he can win each time the screen flashes.
Input
The first line of the input contains M (1 <= M <= 1000), the number of events during the game. The next M lines contain descriptions of the events, one per line. They can be in one of the following three formats: 1xyr , representing a circle of radius r popping up with the position of its center at (x, y) in the plane 2i , representing a circle i disappearing, where circle i is the ith circle that popped up since the beginning of the game; and 3 , representing the screen flashing. x, y, and r are real numbers with at most two decimals, -10 6 < x, y, r < 10 6 , r > 0. Notes: A line intersects a circle if it has at least two common points with it. At any time, no two Circles on the screen have a common point. At any time, there is no line that "touches" more than two circles (a line touches a circle if they have exactly one common point). At any time, there are no more than 100 circles on the screen. Each i determines a circle that is on the screen at the moment of removal. No circle is removed twice.
Output
Each time the screen flashes, write an integer to a separate line, which is the maximum number of circles Gary can intersect.
Example
Input: 9 1 3.00 0.00 1.00 1 -2.00 0.00 1.00 3 1 2.00 3.00 1.50 3
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All
Input
The first line of input contains a positive number, the number of images that follow. For each image there is a line with N and M. The following M lines describe one row each starting from row 1. A row is described in run-length encoding by pairs of numbers separated by spaces. The first number in each pair is the length of the run and the second number is the image intensity. Obviously, for each row, the run lengths add up to N. As in the example input, there is a blank line between each two consecutive images and before the first one. The number of test cases is at most 10. The width of each image is less than 10 9 and the height is less than 10 3 . Additionally, the total size of the input does not exceed 4 MB.
Output
For each image you should output one line, the diagonal projection for the image in run length encoding. The number of output lines should be the same as the number of images in the input. All the numbers on a line should be separated by exactly one space. When encoding the output in run-length encoding, the runs should be as long as possible, i.e. no two consecutive runs should have the same intensity value.
Example
Input: 2 3 1 1 1 3 1 1 2 1 3 1 1 2 1 3 3 1 2 1 1
3 2 3 1 3 1 Output: 1 1 1 3 1 8 1 5 1 1 1 1 2 2 1 1
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
Input
The first line of the input is "N M" (1 <= N, M <= 100000), where N is the number of vertices in the tree and M is the number of commodities. All vertices are numbered 0, ...,N-1, and the root has label N - 1. M lines then follow, where the ith line is "s i t i ", representing a commodity (s i , t i ) where s i != t i . Commodities are distinct: neither (s i , t i ) = (s j , t j ) nor (s i , t i ) = (t j , s j ) will hold when i != j.
Output
Your output should consist of a single number, the minimum possible max-cost of a multicut, followed by a newline.
Example
Input: 10 2 0 5 4 8 Output: 1
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
Input
The first line of the input is "N M" (1 <= N, M <= 300), where N is the size of the universe and M is the number of sets S i in the collection of subsets of {0, ...,N - 1}. What follows are M groups of lines. The ith group starts with one line containing |S i |, the size of the ith subset. If |S i | = 0, the current group of lines ends. Otherwise the next line is a space-separated list of the elements contained in S i .
Output
If [n] cannot be covered by a subcollection of C then you should output -1, followed by a newline. Otherwise, your output should consist of two lines. The first line is the size of a minimum-sized set cover. The second line is a space-separated list of the 0-based indices of the sets in an optimal set cover.
Example
Input: 3 4 0 2 2 1 2 1 0 0 Output: 2 1 2
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
Input
The first line of the input contains M and N (1 <= M, N <= 60), respectively, separated by a space character. Each of the next M lines contain N numbers, such that the jth number in the ith line represents h(i, j) (-10 6 <= h(i, j) <= 10 6 ). No two fields in the terrain are of the same height. Numbers on a line are separated by a space character.
Output
In the first line of the output, write a single number l max , which is the maximum length of a ski-valley. In the next l max lines write a description of any ski-valley of that length. In each of the lines, write two integers separated by a space character, such that numbers x i and y i in the ith line represent (x i , y i ), the ith field in the ski-valley.
Example
Input: 3 4 2 6 7 16 1 4 3 20 9 8 17 12 Output: 9 3 1 3 2 2 2 2 1 1 1 1 2 1 3 1 4 2 4
Added by: Jelani Nelson (Minilek) Date: 2007-10-25 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2007
Example
Input file: 3 0 99 3 2 49 50 8 16 17 15 0 20 1 1 2 10 0 0 100 0 0 0 0 0 0 0 -1
Output file: 34 -1 23 70
Added by: Blue Mary Date: 2007-11-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2002
Input
Multiple test cases, the number of them is given in the very first line. For each test case: The first line contains two space-separated integers V-Max (1<=V-Max<=32000) and the number of the goods N (1<=N<=60). N lines follow, each contains three space-separated integers V i , C i and a integer u. If u is not 0, this good is an attachment of good u(as the order in the input file). To make the problem not too difficult, Blue Mary tells you that: (A) An attachment wont have any attachments which belong to it. (B) A main good will always have less than 3 attachments.
Output
For each test case: The first and the only line contains a single integer denoted the answer.
Example
Input: 1 1000 5 800 2 0 400 5 1 300 5 1 400 3 0 500 2 0 Output: 2200
Added by: Blue Mary Date: 2007-11-03 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: Based on a Problem from Chinese National Olympiad in Informatics in Province 2006
Problem
A solid spherical ball of radius R rolls without slipping on the inside surface of a fixed cone, whose tip points downward. The half-angle at the vertex of the cone is u. Initial conditions have been set up so that the ball travels around the cone in a horizontal circle of radius l>R, with the points on the ball that touch the cone tracing out a circle on the ball. Determine the radius of the circle of these contact points, if you want the sphere to travel around the cone as fast as possible.
The Input
Each line of input has integers l (R < l <= 1000000) R (0 < R <= 1000) and u (0 < u < 90) given in degrees.
The Output
For each line of input, output the radius of the circle of the contact points, round to integer.
Sample Input
220000 100 29
Sample Output
46
Problemsetter --- Wu, Xiaogang Added by: Chen Xiaohong Date: 2007-11-06 Time limit: 1s Source limit:50000B Languages: All
Problem
Two players play the following game. At the beginning of the game they start with n (1<=n<=100000) piles of stones. At each step of the game, the player chooses a pile and remove at least one stone from this pile and move zero or more stones from this pile to any other pile that still has stones. A player loses if he has no more possible moves. Given the initial piles, determine who wins: the first player, or the second player, if both play perfectly.
The Input
Each line of input has integers 0 < n <= 100000, followed by n positive integers denoting the initial piles.
The Output
For each line of input, output "first player" if first player can force a win, or "second player", if the second player can force a win.
Sample Input
3 2 1 3
Sample Output
first player
Problemsetter --- Chen, Jiahong Added by: Chen Xiaohong Date: 2007-11-06 Time limit: 5s Source limit:50000B Languages: All
Problem
Suppose you have m yes or no questions that you want to ask n people. You are allowed to ask each person exactly two different questions. He/she will answer exactly one of them correctly and one of them incorrectly, you dont know which is a correct answer and which is an incorrect one. Given their answers, determine the number of combinations of answers to the m questions that can still be correct (i.e., no contradictions).
The Input
First line is the number of inputs. For each set of input, start out with a line of n<=10000 and m<=200, followed by n lines. The i-th line has four integers a b c d. It means that the answer given by the i-th person for question a is b, and for question c is d. Moreover, the answer "1" means yes, and "0" means no.
The Output
For each line of input, output "No Inference" if the answers do not help you eliminate any wrong combination of answers or the number of combinations of possible answers is 0, otherwise output the size of the set of combinations of answers still possible.
Sample Input
2 2 1 1 4 1 1 2 3 2 1 1 4 1 1 1 1 2 0 2 1 2 3 4 4 1 0 1 0
Sample Output
No Inference 2
Problemsetter --- sy
Added by: Chen Xiaohong Date: 2007-11-06 Time limit: 1s Source limit:50000B Languages: All
This means: subtract the value in M(A) from M(B) and store it in M(B); if the result is non-positive jump to the instruction in position C. M(i) represents the value stored in memory position i. The computer has a memory of 9999 integer positions, numbered from 0 to 9998. C > 9996, indicates the end of the program. Also, if A is negative, then the value of A is directly subtracted from M(B). Since there is only one instruction, it is unnecessary to represent its opcode explicitely in memory. Therefore, an instruction is stored in main memory using three consecutive memory positions, which correspond to the three instruction parameters. The memory is organized as follows:
Position Content 0-8 input/output variables (M0 to M8) 9-9998 program memory (instructions+data)
Each iteration of the above while instruction is called a simulation cycle. You are to translate postfix instructions into this machine language. There are at most 100 arithematic terms and 99 operators. Numerical constants are non-negative and less than or equal to 10000.
Input
The input has several test cases, one test case per line. Each test case corresponds to an arithmetic expression in postfix notation. An expression may contain constants (integer values), input variables (M0 to M8) and arithmetic operators (+, -, *, /).
Output
For each test case, a program must be printed using the following format: First line indicates m, the number of instructions of the program; and the following m lines contain the program, one instruction per line, where each instruction is represented by 3 integer values separated by one blank space. Your outputed program must finish within 10^7 simlation cycles for each test case.
Example
Input: 100 M1 M2 Output: 4 0 0 12 -100 0 0 19 19 10000 4 0 0 12 1 2 15 2 0 18 21 21 10000
Added by: Chen Xiaohong Date: 2007-11-06 Time limit: 1s Source limit:50000B Languages: All Resource: Changed and Enhanced from Columbian National Contest
Problem
You-Know-Who has C clients. Client i will buy a[i]-b[i]*p powder if the unit price is p. That is, if You-Know-Who shows a certificate issued by the Minister saying that the asked price is the correct price. Getting one such certificate involves paying a bribe B. To maximize the profit he may buy several such certificates and use for each client the one that maximizes his profit. You must tell You-Know-Who what certificates he should get. With some luck, Harry Potter is out!
Input
The first line contains the number of testcases, which shall be less than 20. The testcases follow. (Possible empty lines between testcases should be ignored.) The first line of each testcase input contains two non-negative integers: the bribe B and the number of clients C. The next C lines describe each client by two positive integers a[i] and b[i] (on line i). You are guaranteed that all numbers in the input are at most 2000.
Output
For each testcase the output is a single number, the maximum profit of You-Know-Who, and it should be written on a line by itself. The answer should have either an absolute or a relative error less than 1e-6.
Example
Input: 2 10 2 10 1 20 3 100 1 5 1
Output: 46.25 0
First testcase: If YKW would have only the first client then he should choose to get a certificate for the price 5. This way he will sell 5 grams of powder for a profit of 5x5-10=15. Analogously, for the second client the optimal price would be 3.(3), which would make the client buy 10 grams of magic powder. Choosing the optimal price for each client means that two bribes must be payed, which leads to a profit of 5x5+10x3.(3)-2x10=38.(3). Nevertheless, YKW can win more money by getting only one certificate for the price 3.75. This way the profit is 6.25x3.75+8.75x3.75-10=46.25. The second testcase shows that sometimes its better to not sell magic powder to some clients. Added by: Radu Grigore Date: 2007-11-07 Time limit: 10s Source limit:10000B Languages: All Resource: CSIC 2007
Input
The first line of input contains a number t (1<=t<=100) that indicates the number of test cases to follow. Each test case begins with a line consisting of two positive integers n and m (1<=n,m<=1000) indicating dimensions of the board. n lines follow, each of them containing m small letters of the English alphabet (a,b,...,z).
Output
For each test case output the smallest possible area of a pattern p that can be used to tile the given board.
Example
Input: 3 4 3 aaa aaa aaa aaa 4 4 abab cdcd abab cdcd 3 4 aaaa aaaa aaab Output: 1 4 12
Added by: Pawel Gawrychowski Date: 2007-11-10 Time limit: 1s Source limit:50000B Languages: All
A 1 1 0 0 0 B 1 0 0 0 0 C 0 0 0 0 0 D 0 0 0 0 0 E 0 0 0 0 0 Write a program that evaluates board configurations from this game. The program must output "winning" when there exists a winning move that no matter how the opponent responds, it will force the opponent to take the last piece. Otherwise, the program must output "losing".
Input
The first line contains n, the number of test cases. For each test case, a 5x5 grid of an initial game configuration is shown.
Output
For each case, output "winning" or "losing".
Example
Input: 1 1 0 0 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 Output: winning 0 0 0 0 1
Added by: Chen Xiaohong Date: 2007-11-13 Time limit: 1s Source limit:50000B Languages: All Resource: Adapted from Taiwan TPC 1999, Harder datasets.
Input
The input consists of several billboard descriptions. Each description begins with a line containing two integer numbers R and C (1 <= R,C <= 16) specifying the billboard size. Then there are R lines, each containing C characters. The characters can be either an uppercase letter "X" (black) or a dot "." (white). There is one empty line after each map. The input is terminated by two zeros in place of the board size.
Output
For each billboard, print one line containing the sentence "You have to tap T tiles.", where T is the minimal possible number of taps needed to make all squares white. If the situation cannot be solved, output the string "Damaged billboard."instead.
Example
Input: 5 5 XX.XX X.X.X .XXX. X.X.X XX.XX 5 5 .XX.X ..... ..XXX ..X.X ..X.. 1 5 ...XX 5 5 ...X. ...XX .XX.. ..X.. ..... 8 9 ..XXXXX.. .X.....X. X..X.X..X X.......X X.X...X.X X..XXX..X .X.....X. ..XXXXX.. 0 0 Output: You have to tap 5 tiles. Damaged billboard. You have to tap 1 tiles. You have to tap 2 tiles. You have to tap 25 tiles.
Added by: Rafal Date: 2007-11-15 Time limit: 1s-20s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input consists of several scenarios. Each scenario begins with a line containing two integer numbers N and R. N is the number of points of interest,1 <= N <= 2 000. R is the maximal distance the BTS is able to cover, 0 <= R < 10 000. Then there are N lines, each containing two integer numbers X_i, Y_i giving coordinates of the i-th point, |X_i|, |Y_i| < 10 000. All points are distinct, i.e., no two of them will have the same coordinates. The scenario is followed by one empty line and then the next scenario begins. The last one is followed by a line containing two zeros. A point lying at the circle boundary (exactly in the distance R) is considered covered. To avoid floating-point inaccuracies, the input points will be selected in such a way that for any possible subset of points S that can be covered by a circle with the radius R +0.001, there will always exist a circle with the radius R that also covers them.
Output
For each scenario, print one line containing the sentence "It is possible to cover M points.", where M is the maximal number of points of interest that may be covered by a single BTS.
Example
Input: 8 1 5 5 1 8 4 7 3 2 2 3 4 4 2 5 5 3
2 100 0 100 0 -100 0 0 Output: It is possible to cover 4 points. It is possible to cover 2 points.
The first sample input scenario corresponds to the picture, providing that the X axis aims right and Y axis down. Added by: Rafal Date: 2007-11-16 Time limit: 20s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input contains several scenarios. Each scenario begins with an integer number H,which specifies the size of the land, 2 <= H <= 20. Then there are 2.H - 1 lines representing individual "rows" of the land (always oriented as in the picture). The lines contain one non-space character for each parcel. It means the first line will contain H characters, the second line H +1, and so on. The longest line will be the middle one, with 2.H - 1 characters. Then the "length" descends and the last line contains H parcels, again. The character representing a parcel will be either a dot (".") for the land that is not owned by the investor, or one of the uppercase letters "A", "B", "C", or "D". The areas of parcels occupied by the same letter will always be connected. It means that between any two parcels in the same area, there exists a path leading only through that area. Beside the characters representing parcels, the lines may contain any number of spaces at any positions to improve "human readability" of the input. There is always at least one space between two letters (or the dots). After the land description, there will be one empty line and then the next scenario begins. The last scenario is followed by a line containing zero.
Output
For each scenario, output one line with the sentence "You have to buy P parcels.", where P is the minimal number of parcels that must be acquired to make all four areas connected together.
Areas are considered connected, if it is possible to find a path between them that leads only through parcels that have been bought.
Example
Input: 4 B . . C . . . . C . A . . C . . A A . . . . . A . . . . . . . D D . . . . 0 Output: You have to buy 4 parcels.
Added by: Rafal Date: 2007-11-16 Time limit: 5s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input consists of several maps. Each map begins with a line containing two integer numbers R and C (1 <= R, C <= 100) specifying the map size. Then there are R lines each containing C characters. Each character is one of the following: Hash mark # Wall Dot . Free square Asterisk * Your position Uppercase letter B,Y,R,G Blue, yellow, red or green door Uppercase X X Exit Note that it is allowed to have * more than one exit, * no exit at all, * more doors and/or keys of the same color, and * keys without corresponding doors and vice versa. You may assume that the marker of your position ("*") will appear exactly once in every map. There is one blank line after each map. The input is terminated by two zeros in place of the map size.
Output
For each map, print one line containing the sentence "Escape possible in S steps.", where S is the smallest possible number of step to reach any of the exits. If no exit can be reached, output the string "The poor student is trapped!" instead. One step is defined as a movement between two adjacent cells. Grabbing a key or unlocking a door does not count as a step.
Example
Input: 1 10 *........X 1 3 *#X 3 20 #################### #XY.gBr.*.Rb.G.GG.y# #################### 0 0 Output Escape possible in 9 steps. The poor student is trapped! Escape possible in 45 steps.
Added by: Rafal Date: 2007-11-16 Time limit: 2s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input contains several pictures. Each picture consists of at least one and at most 200 rows composed of the following characters: * Space (" "). Empty space in the picture. Spaces are used to indent other characters to appropriate locations, because the exact position of characters is often important. Trailing spaces at the end of input rows may be present but may also be left out. * Dash ("-"). Horizontal line. It connects characters on its left and right together, those characters will always exist and be able to "accept" the connection. * Pipe ("|"). Vertical line, connects characters that are directly above and below. Like with the horizontal line, those characters will always accept the connection. * Plus sign ("+"). Line connection or a bend. Connects characters on all four sides. All characters that are able to accept the connection are considered connected (there will always be at least two). However, there may be sides that contain a non-empty character that is not connected. For example, if a dash is present on a position directly below the plus sign, they are not considered connected. * Lowercase letter x ("x"). Crossing of two lines without a connection. All four neigh- boring characters will accept the connection. The character above is connected to the one below and the character to the left with the one on the right, but there is no mutual connection between these two pairs.
* Equal sign ("="). Represents an input or output port. It always connects characters on its left and right, at least one of these characters is the port. If there is a port on the left, it may only be a value source. If there is a port on the right, it may only be a value consumer. * Lowercase letter o ("o"). Negation. There will always be a gate on the left and a port on the right of this character. It makes the particular gate output negated. * Hash mark ("#"). Gate, which has always a rectangular shape with two vertical and two horizontal sides. The left vertical side may be connected to input ports, the right side to output ports (possibly negated). No two gates will touch each others side, which means that any two vertically or horizontally neighboring hash marks are always parts of the same gate. The rectangle size will always be at least 3 characters in both directions, which means there is at least one character inside. All inner characters are empty (spaces), with exactly one exception. That single non-empty character denotes the gate type (note that it may have different meaning than outside the gate area) and will be a digit "one" ("1"), ampersand ("&"), or an equal sign ("="). * Binary digit ("0"and"1"). Input value of the circuit. It is connected to the character on its right, which is always an equal sign. * Uppercase letter ("A" through "Z"). Named output of the circuit. It accepts connection from its left, which is always an equal sign. Each letter will appear at most once, which means the number of circuit outputs is between 0 and 26, inclusive. Each picture will be terminated by a row consisting solely of asterisk ("*") characters (at least one). The last picture will be followed by two such rows. No row in the input will be longer than 200 characters.
Output
For each picture, print the values of all named outputs, sorted alphabetically. Each output row should contain three characters: output name (one uppercase letter), equals sign, and a binary value (zero or one). Print one empty line after each test case.
Example
Input: 0=+ | | ####### +=# # # & #o=--+ 1=------=# # | # # | ####### +--=### ### | #=#=#1#o==X 1=-----------x--=# # ### 1=---x--=### +------------=Y *********************************** 1=A *** *
Output:
Added by: Rafal Date: 2007-11-16 Time limit: 1s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
You may notice that the negabinary representation of any integer number is unique, if no "leading zeros" are allowed. The only number that can start with the digit "0", is the zero itself.
Input
The input will contain several conversions, each of them specified on one line. A conversion from the decimal system to some negative-base system will start with a lowercase word "to" followed by a minus sign (with no space before it), the requested base (radix) R, one space, and a decimal number N.
A conversion to the decimal system will start with a lowercase word "from", followed by a minus sign, radix R, one space, and a number written in the system with a base of -R. The input will be terminated by a line containing a lowercase word "end". All numbers will satisfy the following conditions: 2 <= R <= 10, -1 000 000 <= N <= 1 000 000 (decimal).
Output
For each conversion, print one number on a separate line. If the input used a decimal format, output the same number written in the system with a base -R. If the input contained such a number, output its decimal value. Both input and output numbers must not contain any leading zeros. The minus sign "-"may only be present with negative numbers written in the decimal system. Any non-negative number or a number written in a negative-base system must not start with it.
Example
Input to-2 10 from-2 1010 to-10 10 to-10 -10 from-10 10 end Output 11110 -10 190 10 -10
Added by: Rafal Date: 2007-11-16 Time limit: 2s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input contains several buildings. The description of each building starts with a single positive integer N, the number of corners (polygon vertices), 1 <= N <= 1000. Then there are N pairs of integer numbers X_i,Y_i giving coordinates of individual corners, |X_i|, |Y_i| <= 10 000. You may assume that all corners are listed and no two of them have the same coordinates. The polygon does always exist, it is closed, its sides do not intersect or touch (except neighboring sides, of course), and it contains no "holes" inside. In other words, the outline is formed by one closed line. The order of corners in the input file may be arbitrary. There is an empty line after each building, then the next one is described. After the last building, there is a single zero that signals the end of input.
Output
For each building, output one line containing N characters without any whitespace between them. The characters should be uppercase letters that specify directions of individual walls (sides) when the building outline is followed. "N" stands for North (the positive direction of the Yaxis), "E" for East (the positive direction of the X axis), "W" for West, and "S" for South. The "walk" should start in the vertex that has been given first in the input and always proceed in the clockwise direction.
Example
Input 4 0 0 2 2 0 2 2 0 6 1 2 0 1
1 2 1 0
The second sample input corresponds to the picture. Added by: Rafal Date: 2007-11-16 Time limit: 1s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input contains several games. Each game starts with two lines describing players. Each of these two lines contains two lowercase letters specifying the language used by the player (see the language code in the table above), one space, and a player name. The name will consist from at most twenty upper- or lower-case letters.
After the players description, there are at most 100 lines containing individual rounds. Each round is described by two words separated with one space. The words name the symbol shown by the first and second player, respectively. All symbols are named in the mother tongue of the concerned player. All allowed words are shown in the table above, the first letter will be always in uppercase, all other letters in lowercase. The last round is followed by a line containing one single dash character ("-") and then the next game begins. The only exception is the last game in the input, which is terminated by a dot (".") instead of the dash.
Output
For each game, print five lines of output. The first line should contain the string "Game #G:", where G is the number of the game, starting with one. The second line will contain the first player name followed by a colon (":"), one space and the number of rounds won by that player. The number should be followed by one space and the word "points". Use the singular form "point" if (and only if) the number of points of the player equals one. The third line has the same format and shows the second players name and points. The fourth line displays the outcome of the game. It must contain the word "WINNER" followed by a colon, space and the name of the player who gained more points. If both players have the same number of points, the fourth line will contain words "TIED GAME" instead. The fifth line is left empty to visually separate individual games.
Example
Input cs Pepik en Johnny Nuzky Scissors Papir Rock Papir Scissors de Gertruda cs Lenka Stein Papir Schere Kamen . Output Game #1: Pepik: 1 point Johnny: 1 point TIED GAME Game #2: Gertruda: 0 points Lenka: 2 points WINNER: Lenka
Added by: Rafal Date: 2007-11-16 Time limit: 1s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input consists of several scenarios. Each scenario is described by two lines. The first line contains one integer number N, the number of samples, 1 <= N <= 100 000. The second line lists exactly N space-separated positive integers, they specify the heights of individual samples and their initial order. The last scenario is followed by a line containing zero.
Output
For each scenario, output one line with exactly N integers P_1,P_2,...P_N, separated by a space. Each P_i must be an integer (1 <= P_i <= N) giving the position of the i-th sample just before the i-th reversal operation.
Note that if a sample is already on its correct position P_i, you should output the number P_i anyway, indicating that the "interval between P_i and P_i" (a single sample) should be reversed.
Example
Input 6 3 4 5 1 6 2 4 3 3 2 1 0 Output 4 6 4 5 6 6 4 2 4 4
Added by: Rafal Date: 2007-11-16 Time limit: 2s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The input contains several cup descriptions. Each description consists of three lines. The first line contains two numbers: H (cup height) and B (bottom thickness), 0 < B < H <= 100. The second line contains an expression R(x) (radius), the third line an expression T (x) (glass thickness). All data are given in centimeters. The last description is followed by a line with two zeros.
The expressions will contain only digits ("0" through "9"), decimal points ("."), four basic operators ("+", "-", "*", and "/"), parentheses ("("and")"), and the lowercase letters "x" denoting the input variable (height measured from the cup bottom). Vx, 0 <= x <= H, the radius will satisfy: 0.1 < R(x) <= 100 Vx, B <= x <= H, the thickness will satisfy: 0.1 <= T (x) < R(x) Arithmetical operators have their usual meaning and priorities, i.e., multiplication and division have a higher priority than addition and subtraction.
Output
For each cup, output the sentence "Pour L litres / W cm of water.", where L is the amount of water that must be poured into the cup to reach the maximal stability (in litres). W is the water level (in centimeters) measured from the bottom of the cup. Both numbers must be given with exactly three decimal digits.
Example
Input 9 1 3+x/6 17/8-x/8 10 1 (x+10) 10/(x+10) 0 0 Output Pour 0.030 litres / 3.365 cm of water. Pour 0.878 litres / 2.193 cm of water.
Added by: Rafal Date: 2007-11-16 Time limit: 5s Source limit:50000B Languages: All Resource: Central European Programming Contest, Prague 2007
Input
The first line of the input contains a single integer T, the number of test cases. T blocks follow. For each test case, the first line contains two space-separated integer N (1<=N<=100000) and S(0<=S<=100000000).N-1 lines follow, each contains three integers X(1<=X<=N), Y(1<=Y<=N) and Z(1<=Z<=1000), denotes that there is an (undirected) edge weighted Z between node X and Y. The input is correct.
Output
T lines, each contains a single integer denoted the minimum distance.
Example
Input: 2 5 2 1 2 5 2 3 2 2 4 4 2 5 3 8 6 1 3 2 2 3 2 3 4 6 4 5 3 4 6 4 4 7 2 7 8 3 Output: 5 5
Added by: Blue Mary Date: 2007-11-19 Time limit: 15s Source limit:50000B Languages: All except: C99 strict Resource: description by Blue Mary; standard program and test data by g201513
2123. Candy I
Problem code: CANDY
Jennifer is a teacher in the first year of a primary school. She has gone for a trip with her class today. She has taken a packet of candies for each child. Unfortunatelly, the sizes of the packets are not the same. Jennifer is afraid that each child will want to have the biggest packet of candies and this will lead to quarrels or even fights among children. She wants to avoid this. Therefore, she has decided to open all the packets, count the candies in each packet and move some candies from bigger packets to smaller ones so that each packet will contain the same number of candies. The question is how many candies she has to move.
Input specification
The input file consists of several blocks of data. Each block starts with the number of candy packets N(1<= N <=10000) followed by N integers (each less than 1000) in separate lines, giving the number of candies in each packet. After the last block of data there is the number -1.
Output specification
The output file should contain one line with the smallest number of moves for each block of data. One move consists of taking one candy from a packet and putting it into another one. If it is not possible to have the same number of candies in each packet, output the number -1.
Example
Input file: 5 1 1 1 1 6 2 3 4 -1 Output file: 4 -1
Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 1999
Numbered places in the labyrinth are called nodes. Fred has one integer X stored in its memory and can perform some calculations. In each node (except node 1) he chooses a direction according to X, decreases X by 1 and goes to the chosen node. The direction is chosen according to this rules:
Node 2: Compute X mod 3. If the result is 0, go to 7 1, go to 1 2, go to 4. Node 4: Let Y be X written backwards (in decimal system). If Y>X then go to 6 otherwise go to 2. Node 6: Compute the number of digits of X (in decimal system). If the result is even then go to 4 otherwise go to 7. Node 7: Compute (X*X) mod 7. If the result is 0 go 1 go 2 go 4 go
to to to to
2 6 8 0.
Node 8: Compute X mod 5. If the result is 2 or 3 then go to 7 otherwise go to 9. Node 9: If you have come from 8 then go to 0. If you have come from 0 then go to 8. Node 0: Let Y be the third least significant digit of X in decimal system (if X<100 then Y=0). If Y<=7 then go to 7 otherwise go to 9.
At the beginning of each experiment, the experimenter puts the mouse in the node 0 and initializes value X by voice. After that, the mouse starts to move. The mouse displays current value of X on its digital display. The experiment finishes when the mouse enters the node 1, the result of the experiment is the number displayed. If the value of X decreases to zero, the experiment fails and its result is -1.
Example
Input file: thirteen fourteen one-thousand one-million-three-hundred-and-twenty-five-thousand-nine-hundred-and-seventy-nine Output file: -1 9 789 1325784
Blue Marys Note: new test cases were added on Jun.6, 2008. Another Note: One of the test cases has something wrong & it has been fixed in Jul. 19, 2008. Thanks to Robert Gerbicz and Stephen Merrimans discussion in the forum. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 1999
2127. Rain
Problem code: RAIN3
Doctor Jones is a famous archeologist. He did some research on the Tiribaki Islands recently. His most famous discovery was the Meteoronome - a machine with a yellow button used by the Tiribakian highest priest to predict the weather. The Meteoronome had been set up by the gods at the Beginning of Time. Tiribakians pressed the button every day. As a result, the Meteoronome produced a number the expected rainfall in millimetres for the next day. More precisely, after i button hits (counted since the Beginning of Time) Meteoronome gives the expected rainfall for the day i since the Beginning of Time. Unfortunately, the Meteoronome has not been used for several thousands of years and nobody knows how many steps should be performed to reach the current date. Researchers have spent a lot of effort to find out how the Meteoronome works. A mathematical model has been proposed: The Meteoronome is initialized by a pair of integers, s[0] and t[0]. For the i-th step, the Meteoronome computes the values
s[i] = (78901 + 31*s[i-1]) mod 699037 t[i] = (23456 + 64*t[i-1]) mod 2097151
Doctor Joness friend, Ms. Linda Watson, is now planning a holiday on Tiribaki Islands. She would like to stay there as long as possible but she hates the rain. She can stand no more than M millimetres of rainfall during her entire stay on Tiribaki. Doctor Jones wants to help his friend and to compute the longest period which she can safely stay on Tiribaki. He simulated N steps of the Meteoronome. This way, he obtained a sequence of numbers a[1],a[2],...,a[N] which represent predictions for N subsequent days. Now he wants to find the largest K such that for each period of at most K subsequent days from day i to day j the sum of the predictions a[i]+a[i+1]+...+a[j] is less than or equal to M. Linda can be sure that if she stays on Tiribaki for at most K days, she can endure the rain (provided that N is large enough).
Input specification
The input file consists of several blocks of data. The first line of the input file contains the number of blocks. Each block contains four integers delimited by whitespace: s[0], t[0] - the initial values for the Meteoronome, N (1<= N <=1500000)- the length of the sequence and M - the maximum sum of a subsequence. All the input data fits into 32-bit signed integer.
Output specification
The output file contains one line for each block of input data. In this line there is a single integer K as specified above.
Example
Input file: 1 123456 123456 10 10000 Output file: 2
Note, that the sequence produced by Meteoronome for this input file is 4664,1248,267,4900,837,4048,990,6935,1155,490. No subsequence of length 2 has sum greater than 10000 and there are subsequences of length 3 with greater sum. Added by: Blue Mary Date: 2007-12-01 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 1999
2129. Cake
Problem code: CAKE2
Some time ago a VERY huge cake was made in the village called Nalomena Trieska. Well, it was infinitely large and infinitely thin. For our needs it looked exactly like an infinite plane. It was not very tasty, so nobody wanted to eat it. Instead, local children started to play with it. Each of them drew one straight line on the plane. These lines divided the plane into many parts. For a few hours the children were happy, they jumped from one part into another and played other similar games. But then little Tommy suddenly asked: "How many parts does the cake have?" "1999." answered Martin. "No, 2000 !" replied Richard. "Well, I think its only 1748." stated Michael. And they started to argue. Now their parents need your help, because the children spend all their time counting the parts of the cake.
Example
Input 4 5 0 0 4 0 4 2 4 3 1 1 1 file: 5 5 4 5
Output file: 9
Added some unofficial test cases. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-7s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2000
2130. Trolls
Problem code: TROLLS
In a secret forest, there are many trolls. They are intelligent and most of them even knows programming languages C or PASCAL. They have written many programs. With their super computers, their programs will run for a very short time and they can get the correct answer. Being an excellent programmer, you can even come up with the answer without computers!!!
Input
Theres no real input file. The four programs can be downloaded here.
Output
For program1.txt and program2.txt in the zip file: Your output should contain a single integer denoting the number of "*" the program will output. For program3.txt and program4.txt in the zip file: Your output should contain a single integer denoting the number the program will output. You can merge the 4 output lines together to get the real output file and submit it.
Example
If program1.txt is
var i:integer; begin for i:=2 to 8 do write(*); end. #include <stdio.h> void main() { int i; for(i=2; i<=8; i++) printf("*"); }
If program3.txt is
var a, i: integer; begin a := 0;
#include <stdio.h> void main() { int i, a; a = 0; for(i=1; i<=9; i++) a = a * 10 + i; printf("%d\n", a); }
Note
The numbers fit into the type "int" in C program or "integer" in PASCAL program in the zip file can be arbitrarily large because the computers used by trolls are super computers. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: TEXT Resource: IPSC 2000 and IPSC 2001
Example
Input file: 1 9 10 25 1 2 3 2 3 12 3 4 4 3 5 9 4 9 13 5 9 5 2 6 10 6 7 10 7 8 10 8 9 10 Output file: 65
Note: You can get to Desertville as follows: first you take 25 units of water from NGubara, go to restpoint 2, leave there 19 units in the reservoir and go back to NGubara. Then you repeat this trip, bringing additional 19 units to restpoint 2. Last, you take 15 units from NGubara to restpoint 2. Now you have 19+19+12 = 50 units of water here. You take a round trip to point 3 and back, leaving there 1 unit of water. Now you take all water left from point 2, go to point 3, take the one unit from point 3 (now you have 25-12+1=14 units) and go via restpoint 5 to Desertville. Added by: [Trichromatic] XilinX Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: IPSC 2000
2132. Puzzle
Problem code: PUZZLE2
Sam loves all kinds of puzzles. Recently he received a very special puzzle - a grid of N x M squares, each square is occupied either by a red or by a blue pebble. The puzzle is controlled by several buttons. Each row of the grid has its corresponding black button. When you press a black button, a complicated mechanism of the puzzle flips the colors of all pebbles in the row corresponding to that button (all red pebbles in this row become blue and vice versa). Each column of the grid has its corresponding white button. When you press exactly two white buttons simultaneously, the puzzle mechanism exchanges the contents of the two columns corresponding to those buttons without changing the order of the pebbles in the columns. Sam has found the puzzle very interesting. Unfortunately, he lent it to his daughter Ann yesterday. She was able to understand the idea of the puzzle very quickly and she gave him this teasing task. She drew two arrangements - initial and final and she changed the colors of the pebbles according to the initial arrangement. Sams task is to decide whether there exists a sequence of puzzle operations which transforms the initial arrangement of the puzzle to the final arrangement.
Example
Input file: 2 3 4 BLUE RED BLUE RED RED BLUE BLUE RED BLUE BLUE BLUE BLUE BLUE RED BLUE RED RED RED BLUE BLUE BLUE BLUE BLUE BLUE 2 2 BLUE BLUE
Note: In the first block of the input data it suffices to use the black button for the second row and then to press the white buttons for the first and the third columns simultaneously. Added by: Blue Mary Date: 2007-12-01 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2000
2136. Candy II
Problem code: CANDY2
Little Michael loves candies. Most of all, he likes chocolate, strawberry and banana flavored ones. No wonder that he has candy bags everywhere - there are at least four bags on his table, one or two in the pockets of his jeans, and one under his bed (just in case). Each bag contains some candies of all three flavors. Whenever he wants to eat a candy, he finds the nearest bag (which is usually is not very far because he has really A LOT of them) and eats the candy he wants. Yesterday, he wanted a strawberry one, so he opened one of his bags and... It is almost impossible to describe how great his disappointment was when he found out that there were no strawberry candies left in that bag. To make the matters worse, there were also none in the second bag he found. He was sure that he had lots of strawberry candies left, but he didnt know in which bags they were. Therefore, he decided to reorganize his candies, and keep the candies of the three different flavors in three distinct bags. He brought all his bags into the center of his room and realized, that there are really an awful lot of them. Michael has N bags full of candies. He knows the number of candies of each flavor in each bag. He wants to put all chocolate ones into one bag, all strawberry ones into another bag and all banana ones into yet another bag. He has to move the candies one-by-one, because he always has to look at it to determine its flavor. Moving one candy from one bag into another takes 1 second. Your task is to select the bag for each flavor, so that the total time required for Michael to move all the candies into their bags would be minimal.
The numbers C, S, B have to be such that the total number of the required moves is minimal. If there are more solutions, you may choose any of them.
Example
Input file: 5 10 10 10 40 39 40 10 20 30 30 20 10 1 2 27 Output file: 3 1 2
Note: In this case Michael has to move 200 candies. If the bags for the different flavors were chosen in any other way, he would have to move more than 200 candies. Note: the test data is very naive for this problem. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2001
2138. Pibonacci
Problem code: PIB
You might have heard of the Fibonacci numbers and of the number pi. If you let these two ideas merge, a new and esoteric concept comes into being: the Pibonacci numbers. These can be defined for real x>=0 by: P(x) = 1 P(x) = P(x-1) + P(x-pi) for 0<=x<4 for 4<=x,
where pi = 3.1415926535... In this problem, you are asked to compute P(x) for a given x.
Example
Input file:
0 4 11 -1
Output file:
1 2 20
Added by: Blue Mary Date: 2007-12-01 Time limit: 42s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2001; standard program and test data by Blue Mary
2139. Gossipers
Problem code: GOSSIPER
Doulnee Keltchow is a small town in the middle of nowhere; what makes it so famous is the number of gossipers who live there. Every morning, each gossiper finds out a new gossip, a gossip so unique that nobody else in the town knows it. The gossipers talk, gossip and exchange rumors all day long. What happens when two gossipers meet? Of course, they exchange all the gossips they have heard so far. Your task is to determine whether every gossiper will know all the gossips by the end of the day.
Example
Input file: 3 3 Alice Bob Cindy Alice Bob Bob Cindy Cindy Alice 4 4 Kirk Lucy Mike Nancy Kirk Lucy Lucy Mike Mike Nancy Nancy Lucy 0 0
Added by: Blue Mary Date: 2007-12-01 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2001
Problem Description
There are N teams numbered 1 through N, your team has the number N. The current number of points of each team and the list of remaining matches are given. Your task is to find out whether it is possible to manipulate each remaining match so that the team N will finish with strictly more points than any other team. In every match, the winning team gets 2 points, the losing team gets 0. If the match ends with a draw, both teams get 1 point.
Example
Input file: 5 8 2 1 0 0 1 1 2 3 4 2 3 4 5 3 1 2 4 1 4 3 5 5 4 4 4 1 0 3 1 3 2 3 3 4 4 5 -1 Output file: YES NO
Added by: Blue Mary Date: 2007-12-01 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2002
Input
There are multiple test cases in the input file. First line of each test case are three integers x, y and r, For the coordinate of the center of the inhaling circle. The second line contains four integers x1, y1, x2 and y2. Which are the coordinate of the Gold Garden. The Gold Garden is such a perfect rectangle so that its sides are parallel to the axis. All numbers in the input are integers and do not reach 1000 by their absolute values. Sides of the Golden Garden are non-zero.
Output
For each test cases, output only one line with one real number which is the common area of the garden and the circle. Your answer must be accurate up to 0.000001.
Note
There are two input files for this problem. If you get Wrong Answer, click on the "wrong answer" to get more details. For each test file, my judge will give you the id of the test case for which your program gives a wrong response.
Example
Input: 0 0 5 3 3 7 7 Output: 0.547426365104
Added by: Blue Mary Date: 2007-12-01 Time limit: 7s-13s Source limit:50000B Languages: All except: C99 strict Resource: Description, standard program & test data by g201513
Example
Input: 2 3 2 3 2 1 1 3 2
4 2 1 4 3 2 2 1 4 3 Output: 1 2 1 3 2 3 2 1 4 4 3 2 1
Added by: Xilinx Date: 2007-12-01 Time limit: 35s Source limit:50000B Languages: All except: C99 strict ERL JS Resource: IPSC 2003
Example
Input file a b c b 0 b c 0 c 0 d e f 0 e f 0 f e 0 g h 0 Output file 3
Note
Package c can be installed immediately. Package b depends only on c, and hence can also be installed once we installed c. Finally, package a depends only on b and c and can now also be installed. It is easy to verify that no other packages can be installed. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-5s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2003
Input
The first line of input contains a single integer T, (T<=20), denoting the number of test cases. For each test case: The first line contains two integers N and K, (2<=N<=500,2<=K<=6), which is the number of the nodes in the graph and the number of edge-disjoint branchings. Then next (N-1)*K lines contains the information about the edges. There are 2 integers X and Y in every line, meaning there exist an edge from X to Y in the graph.
Output
You should output the branchings you have found. For every test cases, print the number of test case at the start of output, then you should output K lines. Each line is about a branching which contains N-1 integers that the ID of the edges in this branching. The ID of edges starts with 0. Every edge will appear and only appear once in the output. See samples for further details.
Example
Input: 22 20 10 13 20 10 22 11 2 Output: Case 1:01Case 2:0 31 2
Test data have been enhanced. Added by: [Trichromatic] XilinX Date: 2007-12-01 Time limit: 20s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: g201513
Input
The number of test cases is given in the very first line. For each test case there is a single line containing two integers a and b without any leading zeroes, separated by a single space. Tip: For more than 95% of test cases, int in C/C++/Java or longint in Pascal is enough. The input file is about 1.4 KB.
Output
For each test case, output a single line containing the root in decimal cyclic notations, or "Invalid Input!!!"(without quotes) if the solution is not unique or the solution doesnt exist. See the example for more details. The output file is about 1.3MB.
Example
Input: 8 1 1 1 2 1 3 1 4 1 6 24 2 15 7 1 89 Output: 1.0 0.5 0.(3) 0.25 0.1(6) 12.0 2.(142857) 0.(01123595505617977528089887640449438202247191)
Added by: Blue Mary Date: 2007-12-01 Time limit: 15s Source limit:50000B Languages: All except: C99 strict Resource: UVA 942; USACO 79; test data by Blue Mary
Problem specification
You are given the number of candies each child brought. Find out whether the teacher can divide the candies into N exactly equal heaps. (For the purpose of this task, all candies are of the same type.)
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case looks as follows: The first line contains N : the number of children. Each of the next N lines contains the number of candies one child brought.
Output specification
For each of the test cases output a single line with a single word "YES" if the candies can be distributed equally, or "NO" otherwise.
Example
Input: 2 5 5 2 7 3 8 6 7 11 2 7
3 4 Output: YES NO
Note: the input file will not exceed 1MB. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2006
Problem specification
Given team names and their preferred placements find one ranklist with the minimal possible badness.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case looks as follows: The first line contains N : the number of teams participating in the competition. Each of the next N lines contains a team name (a string of letters and numbers) and its preferred place (an integer between 1 and N, inclusive). No two team names will be equal.
Output specification
For each of the test cases output a single line with a single integer : the badness of the best ranklist for the given teams.
Example
Input: 2 7 noobz 1 llamas 2 Winn3rz 2 5thwheel 1 NotoricCoders 5 StrangeCase 7 WhoKnows 7 3 ThreeHeadedMonkey 1
Explanation: In the first test case, one possible ranklist with the minimal badness is:
1. 2. 3. 4. 5. 6. 7. noobz llamas Winn3rz 5thwheel NotoricCoders WhoKnows StrangeCase
In the second test case all ranklists are equally good. Note: the input file will not exceed 5MB. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-3s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2006
And whats their sum? Of course, it is 47. Try walking around with your eyes open. You may be sure that soon you will start discovering occurences of the number 47 everywhere.
Problem specification
You are given a sequence S of integers we saw somewhere in the nature. Your task will be to compute how strongly does this sequence support the above claims. We will call a continuous subsequence of S interesting if the sum of its terms is equal to 47. E.g., consider the sequence S = (24, 17, 23, 24, 5, 47). Here we have two interesting continuous subsequences: the sequence (23, 24) and the sequence (47). Given a sequence S, find the count of its interesting subsequences.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. The first line of each test case contains the length of a sequence N. The second line contains N space-separated integers : the elements of the sequence.
Output specification
For each test case output a single line containing a single integer : the count of interesting subsequences of the given sentence.
Example
Input: 2 13 2 7 1 8 2 8 1 8 2 8 4 5 9
Note: the input file will not exceed 4MB. Added by: Blue Mary Date: 2007-12-01 Time limit: 3s-5s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2006
Problem specification
Given three positive integers N(1<= N <=10 8 ), K(1<= K <=50), L(1<= L <=100), compute the first K digits and the last L digits of N factorial.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of one line containing three positive integers N, K and L separated by single spaces. Neither K nor L will exceed the number of digits in N!.
Output specification
For each test case output one line containing two strings A and B separated by a single space. Here, A is the string composed of the first K digits of N! and B is the string composed of the last L digits of N!.
Example
Input: 3 6 2 1 10 3 2 8 5 5 Output: 72 0 362 00 40320 40320
Note : for all test cases whose N>=100, its K<=15. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-10s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2006
Input
Multiple test cases. For each test case: The first line of the input file contains two integer numbers: n and alpha - order of Hilbert curve and slope angle of surface in degrees (1 <= n <= 12, 0 <= alpha < 90). Input terminates by EOF.
Output
For each test case:
The first line of the output file must contain a single real number - the total area of the burrow, filled with water. The relative error of the answer must not exceed 10 -6 .
Example
Input: 5 30 3 45 4 10 3 0 Output: 190.803847577293 15.5 91.573591766702 26.0
[Trichromatic] XilinX 2007-12-01 3s 50000B All except: C99 strict ERL TECS JS ACM/ICPC Northeastern Europe Programming Contest(Northern Subregional) 2008, with description modified
Problem specification
You are given the number of computers N and the file size S. For each pair of computers u, v we know the probability p(u, v) that a network packet passes successfully through the direct link from computer u to v. (The value zero means that there is no direct link from u to v.) Finally, you are given a list of servers where David has an account. Find a way how to send Davids file so that the expected transfer time is minimized, and output this expected time in milliseconds. You may assume that the expected transfer time is less than 1 000 000 000 (1 billion) milliseconds.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case looks as follows: The first line contains a positive integer 2<= N <=200 giving the number of computers on the internet. N lines follow. The i-th of these lines contains N integers, each of them between 0 and 100, inclusive. These integers give the probabilities p(i, 1), p(i, 2), ..., p(i, N) in percents. The next line contains a non-negative integer M - the number of computers on which David has an account. The following line contains M integers - the numbers of these computers. This list will always contain the integers 1 and 2 (corresponding to Davids home and work computer). The last line contains an integer S - the size of Davids file in kilobytes.
Output specification
For each test case output a single line with a real number - the expected time of the transfer in milliseconds when using the best possible strategy. Each number in the output file should have sufficiently many decimal places. We recommend printing all results rounded to seven decimal places. Your output will be considered correct if each number has an absolute or relative error less than 10 -6 .
Example
Input: 2 4 0 0 40 66 0 0 0 30 40 47 0 66 0 30 66 0 4 1 2 3 4 47 5 0 1 20 0 0 0 0 0 0 0 0 0 0 50 90 0 20 0 0 0 0 0 0 90 0 3 1 2 5 10 Output: 207.897153 111.111111
Hint In the second case, we have four possible strategies. The first one is to use the direct link from 1 to 2. This link is really really faulty, and the expected time for this solution is 1000 milliseconds. The second strategy is to transfer the file from computer 1 to computer 2 using the route 1-3-4-1. The probability that a packet passes this route is 20% * 50% * 20% = 2%, and thus the expected transfer time is 500 milliseconds. The third strategy is to use the route 1-3-5-4-2. Here the probability of successfully transfering a packet is 3.24% and the expected transfer time is roughly 308.6 milliseconds. The optimal solution is to use the computer 5 as temporary storage. We will first transfer the file along the route 1-3-5, and then along the route 5-4-2. For each of the transfers the probability is 20% * 90% = 18%, and thus the expected time of each of the transfers is 55.5555 milliseconds. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s-11s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2007
2154. Kruskal
Problem code: KRUSKAL
A three-headed monkey was on his (theirs?) peaceful way from his dorm to the university. He decided to use the subway. But as soon as he descended into the station, he was stopped by a strange geek with a flashlight, saying strange words... "I am a servant of the Secret Group Order, wielder of the flame of Primes. Your limited knowledge of partial derivatives will not avail you, flame of Riemann! You shall not pass! You cant beat Kruskal in his game!" The three-headed monkey shook his head. The left one. But there was no way out. If he wanted to get to the university in time, he had to play. (Many others in his situation would use the distract-and-run tactics to get past the evil Kruskal into the subway. However, this was not possible in this case : nobody will turn around upon hearing "Hey! Look behind you! A three-headed monkey!" when he already sees the monkey in front of him...) So, what was the game about? It is a two-player game. At the beginning there are N (not necessarily equal) heaps of matches. On each turn, a player may only remove matches from one heap only, and he has to remove between 1 and K matches, inclusive. A player wins if after his move the size of some heap is a prime number. The three-headed monkey moves first.
Problem specification
You will be given several starting positions. For each of them, determine whether the three-headed monkey can win this game. You may assume that Kruskal (the monkeys opponent) plays optimally.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case looks as follows: on the first line there are the two integers N(1<= N <=200) and K(1<= K <=100), separated by a single space. N lines follow, one for each heap of matches. The i-th of these lines contains a single integer a i (3<= a i < 2 32 ) giving the number of matches on the i-th heap.
Output specification
For each test case output one line. If the monkey can win the game, output the string "YES", otherwise output the string "NO".
Example
Input: 2 3 3 48 15 4 2 3 51 51 Output: YES NO
Note: a somewhat hard test has been removed. Added by: Blue Mary Date: 2007-12-01 Time limit: 3s-9s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2006
Problem specification
You are given Jimmys notes, processed by the OCR. They contain simple math exercises, which were used to practice addition on positive integers. Your task is to recover the damaged part of the notes.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of exactly one line. The line represents an equation of the form "number + number = number", where each number is a positive integer. One part of the equation will be replaced by the string "machula". The string always covers a contiguous non-empty sequence of digits, possibly even an entire number. You may assume that for each equation in the input there will be exactly one way to fill in the missing digits.
Output specification
For each test case, the output shall contain one line of the form "number + number = number". The line must represent the equation from that test case with all missing digits filled in.
Example
Input: >
3 23 + 47 = machula 3247 + 5machula2 = 3749 machula13 + 75425 = 77038 <pre> Output:>
23 + 47 = 70 3247 + 502 = 3749 1613 + 75425 = 77038 <pre> Note: int in C++/C/Java or longint in Pascal is enough.
Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2007
Problem specification
The cake can be viewed as a grid consisting of NM unit squares. We are allowed to cut the cake along the grid lines. As a result the cake splits into several connected pieces. (Two unit squares remain connected if they share a side which was not cut.) How many different ways are there to cut the cake? We consider two cuttings of the cake to be the same if the resulting connected pieces of both cuttings have the same shape and are at the same positions within the cake. In other words, we are only counting those cuttings where no cut leads between two unit squares that are in the same connected piece. The following picture ilustrates all the 12 different possible ways how to cut a 22 inch cake: 12 possible ways of cutting a 22 cake Note that cutting, for example, as on following picture Not a good way of cutting is the same as not cutting at all.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of a single line with two positive integers N and M - dimensions of the cake.
Output specification
For each test case output a line with a single positive integer - the number of different possibilities how to cut the cake.
Example
Input: >
2 1 2 2 2 <pre> Output:>
2 12 <pre> Note For all the test cases, min(N,M)<=5, max(N,M)<=130. Blue Marys Note: The data has been enhanced on Feb.28, 2008 to avoid precalculated tables. Sorry to some users.
Added by: Blue Mary Date: 2007-12-01 Time limit: 8s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2007
2160. Here-There
Problem code: HERE
Do you know the game Here-There? I presume you dont. Its a virtual board game, so you should first learn how this virtual board looks like. The process of making the board is remarkably simple. You start by taking a square with side of length 3 N , divide it into nine smaller squares of equal size and remove the central one. Then, you repeat the same divide-and-remove-the-centre process with each of the eight smaller squares over and over (N times in total), until you are left with a grid that consists of many little squares with side length 1 - and of many holes. By the way, the number N is called the degree of the board. The game itself consists of two steps. First, your opponent chooses two squares on the board, one of them will be "Here" and the other one "There". Your task is to estimate the least number of steps you have to take if you started Here and wanted to get to There. One step consists of moving to another square, which has a common side with the one youre standing on. Obviously, you cannot move over the removed parts of the board. If you guess the number of steps correctly, you get a point. You would really like to become a master of this game, so you have written down the sizes of the boards and the positions of the Here and There squares from several games in the past. Now, youd like to find the exact number of steps you need to take to get from Here to There on each of the boards. Each square is described by two numbers between 1 and 3 N , the first of them denoting the column and the second one the row the square is in. The square in the upper left corner of the board has coordinates (1, 1), as you can see on the picture below. [IMAGE] You can see one of the shortest paths between squares (1, 1) and (4, 8) on the picture, consisting of 10 steps. [IMAGE]
Problem specification
You are given several boards and pairs of squares on them and your task is to find the steps-distances between the squares in each pair.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of five integers D(1<= D <=39), Hc, Tc, Hr, Tr, specifying the degree of the board D, the coordinates of Here (Hc, Hr) and the coordinates of There (Tc, Tr).
Output specification
For each of the test cases, output a single line with one integer - the steps-distance between Here and There.
Example
Input: 2 1 1 2 2 1 2 1 1 4 8 Output: 2 10
Added by: Blue Mary Date: 2007-12-01 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2007
Input
Test cases are given one after another, and a single 0 denotes the end of the input. For each test case: Input is made of two lines, the first line is number n (2 <= n <= 2 10 , n even). The number n is the size of images, one image is represented internally by a n * n pixel matrix (a j i ) , where i is the row number and j is the column number. The pixel at the upper left corner is at row 0 and column 0. The second line is a non-empty list of at most 32 words, separated by spaces. Valid words are the keywords id, rot, sym, bhsym, bvsym, div and mix, or a keyword followed by -. Each keyword key designates an elementary transform (as defined by Figure 1), and key- designates the inverse of transform key. For instance, rot- is the inverse of counter-clockwise 90 o rotation, that is clockwise 90 o rotation. Finally, the list k 1 , k 2 , ..., k p designates the compound transform [IMAGE] = k 1 ok 2 o ... ok p . For instance, "bvsym rot-" is the transform that first performs clockwise 90o rotation and then vertical symmetry on the lower half of the image. [IMAGE] Figure 1: Transformations of image (a j i ) into image (b j i ) [IMAGE]
Output
For each test case:
Your program should output a single line whose contents is the minimal number m (m > 0) such that [IMAGE] is the identity. You may assume that, for all test input, you have m < 2 31 .
Example
Input: 256 rot- div rot div 256 bvsym div mix 0 Output: 8 63457
Added by: Blue Mary Date: 2007-12-01 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
+ 22 + 2
+ 22
2+1
+ 22 + 2 + 1
The rising and falling heights of the numbers form the numbers "skyline". For each pair of integers n and b in the input, display the complete base - b representation of n. Your display should use multiple output lines for different exponent heights. The display must begin with n = , followed by the expansion. Answers should use an asterisk as the multiplication symbol between coefficients and powers of b. Zero terms must not be printed, and unnecessary coefficients and exponents must not be shown (for example, display 1 instead of b 0 , b 2 instead of 1*b 2 and b instead of b 1 ). To assist in accurately viewing the skyline of the number, the display must show one character (either a digit, +, or *) per column of the multi-line display; there must be no unnecessary spaces. The correct format is illustrated in the sample output shown below. Answers must be displayed using no more than 80 columns. Expansions requiring more than 80 columns must be split between terms, into two or more sets of display lines to show the remaining portion of the expansion. The second and following parts of the answer must begin in the same column as the first part of the answer and should contain the same number of (possibly blank) lines. The split may only occur between terms of the number itself (the bottom line), not between terms in an exponent. See the sample output for an example. Note that each set of display lines starts with a blank line.
Input
Input is a sequence of pairs of integers, n and b, followed by a pair of zeroes. Each value for n will be positive, and each value for b will be greater than or equal to 2. All values will fit into 64 bits unsigned integers (the maximum is therefore 18446744073709551615).
Output
For each input pair print the complete base - b expansion of n as described above. Print a line containing
n in complete base b:
preceding each expansion. Separate the output for consecutive pairs by a line of exactly 80 hyphens. All coefficients, bases, and exponents are to be displayed as standard base 10 integers.
Example
Input: 20000 3 16647 2 1000 12 85026244 3 0 0 Output: 20000 in complete base 3: 2 3+2 3 2 20000 = 3 +3 +2*3 +2*3 +2 -------------------------------------------------------------------------------16647 in complete base 2: 2+1 2 2 +2 +2 2+1 2 3
2 16647 = 2 +2 +2 +2+1 -------------------------------------------------------------------------------1000 in complete base 12: 2 1000 = 6*12 +11*12+4 -------------------------------------------------------------------------------85026244 in complete base 3: 2 3 +2*3+1 85026244 = 3 +2*3 2 3 +2*3 +2*3 2 3 +3+2 +2*3 2 3 +3+1 +2*3 2 3 +2 +2*3 2 3 +1 +2*3 2 3
2*3+2 +2*3 +3
2*3+1
3 +2*3 +3+1
Note
The number of test cases will be no more than 100. The judge of this problem compares your output and the expected output, an extra whitespace will cause Wrong Answer. Added by: Blue Mary Date: 2007-12-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM ICPC World Final 1998
Input
Each test case will consist on several lines. In all test cases the alphabet will be the set of hexadecimal digits (decimal digits plus the uppercase letters "A" to "F"). The first line of a test case will contain an integer N (1 <= N <= 100), the number of code words in the code. Each of the next N lines describes a code word and contains a different and non-empty string of at most 50 hexadecimal digits. Input is terminated by N = 0.
Output
For each test case, output a single line with the length of the shortest ambiguous message for the provided code or -1 if the code is unambiguous.
Example
Input: 3 10 01 101 3 AB BA ABB 0 Output: 5 -1
Added by: Camilo Andrs Varela Len Date: 2007-12-02 Time limit: 3s Source limit:50000B Languages: All Resource: The 2007 ACM South American Programming Contest
2175. Emoticons
Problem code: EMOTICON
Emoticons are used in chat and e-mail conversations to try to express the emotions that printed words cannot. This may seem like a nice feature for many, but a lot of people find it really annoying and wants to get rid of emoticons. George is one of those people. He hates emoticons so bad, that he is preparing a plan to remove all emoticons from all e-mails in the world. Since you share his visionary plans, you are preparing a special program to help him. Your program will receive the list of emoticons to proscribe. Each emoticon will be a string of characters not including any whitespace. You will also receive several lines of text. What you need to do is change some characters of the text into spaces to ensure no emoticon is left on the text. For an emoticon to be considered to appear in the text it has to appear in a single line and be made of consecutive characters. To help Georges plan remain secret as long as possible, you need to do your job with the minimum possible amount of character changes.
Input
The input file contains several test cases. Each test case consists of several lines. The first line of each test case will contain two integers separated by a single space: N, the number of emoticons to proscribe, and M, the number of lines the text has. The next N lines contain one emoticon each, a non-empty string of at most 15 characters. Each of the last M lines of the test case contains a line of text of at most 80 characters. You can assume 1 <= N,M <= 100. Valid input characters for emoticons are uppercase and lowercase letters, digits and the symbols "!?.,:;-_#$%&/=*+(){}[]" (quotes for clarity). Each line of the text may contain the same characters with the addition of the space character. The input is terminated by N = M = 0.
Output
For each test case, output exactly one line containing a single integer that indicates the minimum number of changes you need to make to the entire text to ensure no emoticon on the list appears in it.
Example
Input: 4 6 :-) :-( (-: )-:
Hello uncle John! :-) :-D I am sad or happy? (-:-(? I feel so happy, my head spins (-:-)(-:-)(-:-)(-:-) :-) (-: :-) but then sadness comes :-( Loves you, Joanna :-))))) 3 1 :) ): )) :):)):)):)):(:((:(((:):) 0 0 Output: 11 8
Added by: Camilo Andrs Varela Len Date: 2007-12-02 Time limit: 4s Source limit:50000B Languages: All Resource: The 2007 ACM South American Programming Contest
Input
* Line 1: The single integer N. * Lines 2..N+1: Line i+1 contains the single integer A i .
Output
* Line 1: A single integer that represents the minimum number of steps needed to make the given musical melody perfect. If there are no solutions, output -1 instead.
Example
Input: 5 13 -3 -4 -5 62 Output: 2
Explanation
There is a musical melody with length of 5. The notes are (13, -3, -4, -5, 62). First, we choose the range [2, 4]; its sum is (-3) + (-4) + (-5) = -12. After the first step, the melody becomes (1, 9, -4, 7, 50). Second, we choose the range [3, 3], whose sum is -4, and the melody after the second step becomes (1, 5, 4, 3, 50). The melody is perfect now. Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2007-12-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Lei HUANG [g201513] , used in USACO
Input
* Line 1: A single integer: N * Lines 2..N+1: Line i+1 contains the single integer: A i * Lines N+2..2*N+1: Line i+N+1 contains the single integer: B i
Output
* Line 1: A single integer that represents the maximum amount of cash that FJ can earn.
Example
Input: 3 1 1 5 5 1 1 Output: 17
Explanation There are 6 cows: 3 accordionists and 3 banjoists. The accordionists have talent levels (1, 1, 5), and the banjoists have talent levels (5, 1, 1). FJ pairs accordionist 3 with banjoist 1 to get earn A 3 * B 1 = 5 * 5 = 25 in profit. He loses a total of (1 + 1) 2 + (1 + 1) 2 = 8 dollars due to the cost of soda for his remaining cows. Thus his final (net) profit is 25 - 8 = 17. Time limit has been doubled on Aug.8, 2008, enjoy :) Added by: Blue Mary Date: 2007-12-04 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: Lei HUANG [g201513] , used in USACO CHN07
Task
The input data describes a tree with integer numbers on each of its nodes.You should count the number of triple (A,B,C) (A,B,C are distinct nodes) that (A,B),(B,C),(A,C) are all good games or all bad games((A,B,C) and (B,C,A) are supposed to be counted once).
Input
The first line of the test data is the number of test case t,then t test case follow. For each test case: The first line contains a single integer M,the number of nodes in the tree(M<=100000).
M lines follow, each contains two integers F i and V i . F i is the father of node i (F i =0 if node i is the root).V i is the number on the node i.(0<=V i <=40000)
Output
For each test case: The first and only line contains a single integer S, which means there are S triples(A,B,C) that (A,B),(B,C),(A,C) are all good games or all bad games.
Example
Input: 1 3 0 3 1 5 1 7 Output: 0
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2007-12-07 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: description and test data by LoLitter; standard program by rendezvous
Input
The input consists of several test cases. The first line of each test case contains a single integer n that indicates the number of points in the set (1<=n<=6). The second line contains three integers that represent the (x, y, z) integer coordinates of a corner of the box, and the third line contains the (x, y, z) integer coordinates of the opposite corner of the box. The next n lines of the test case contain three integers each, representing the (x, y, z) coordinates of the points in the set. The box has non-zero length in each dimension and its sides are parallel to the coordinate axes. The input is terminated by the number zero on a line by itself.
Output
For each test case print one line of output consisting of the test case number followed by the volume of the box not occupied by balloons. Round the volume to the nearest integer. Follow the format in the sample output given below. Place a blank line after the output of each test case.
Example
Input: 2 0 0 0 10 10 10 3 3 3 7 7 7 0 Output: Box 1: 774
Added by: Blue Mary Date: 2008-01-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
Input
One or more codes are to be tested. The input for each code begins with an integer m, 1<=m<=20, on a line by itself, where m is the number of binary codewords in the code. This is followed by m lines each containing one binary codeword string, with optional leading and trailing whitespace. No codeword will contain more than 20 bits. The input is terminated by the number zero on a line by itself.
Output
For each code, display the sequential code number (starting with 1), the length of the shortest encoding that is not uniquely decodable, and the shortest encoding itself, with ties broken as previously described. The encoding must be displayed with 20 bits on each line except the last, which may contain fewer than 20 bits. Place a blank line after the output for each code. Use the format shown in the samples below.
Example
Input: 3 0 01 10 5 0110 00 111 001100 110 5 1 001 0001 00000000000000000001 10000000000000000000 0 Output: Code 1: 3 bits 010 Code 2: 9 bits 001100110 Code 3: 21 bits 10000000000000000000 1
Added by: Blue Mary Date: 2008-01-03 Time limit: 5s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
Input
The first line of input in each trial data set contains n (2 <= n <= 20), which is the total number of significant locations in the desert, followed by an integer that is your total carrying capacity in units of food and water. The next n lines contain pairs of integers that represent the coordinates of the n significant locations. The first significant location is the starting point, where your food supply must be purchased; the last significant location is the destination; and the intervening significant locations (if any) are oases. You need not visit any oasis unless you find it helpful in reaching your destination, and you need not visit the oases in any particular order. The input is terminated by a pair of zeroes.
Output
For each trial, print the trial number followed by an integer that represents the number of units of food needed for your journey. Use the format shown in the example. If you cannot make it to the destination under the given conditions, print the trial number followed by the word "Impossible."
Example
Input: 4 100 10 -20 -10 5 30 15 15 35 2 100 0 0 100 100 0 0 Output: Trial 1: 136 units of food Trial 2: Impossible
Added by: Blue Mary Date: 2008-01-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
2273. Ferries
Problem code: FERRY
Millions of years ago massive fields of ice carved deep grooves in the mountains of Norway. The sea filled these grooves with water. The Norwegian people call them fjords. This landscape of mountains and water is beautiful, but it makes traveling difficult. The usual scheme is: drive some kilometers, wait for a ferry, cross a fjord with the ferry, drive some more kilometers, and so on until the destination has been reached. To reach a destination as early as possible, most people have the following strategy: drive as fast as allowed (the maximum speed is 80 km/h) to the next ferry, and wait until it goes. Repeat until the destination has been reached. Since driving fast requires more fuel than driving slow, this strategy is both expensive and harmful to the environment. The new generation of cruise control systems is designed to help. Given the route you want to go, these systems will gather information about the ferries involved, calculate the earliest possible time of arrival at the final destination, and calculate a driving scheme that avoids driving faster than needed. The systems will calculate your road speed so that you board the next ferry the moment it leaves. Given a route (a sequence of road-pieces and crossings with ferries), you must write a program to calculate the minimal time it takes to complete this route. Moreover, your program must find a driving scheme such that the maximal driving speed at any point during the trip is as small as possible.
Input
The input file contains one or more test cases. Each test case describes a route. A route consists of several sections, each section being either a piece of road or a crossing. The first line in the description contains a single number s (s > 0), which is the number of sections in the route. The next s lines contain the descriptions of the sections. Every line describing a section starts with two names: the place of departure and the place of arrival, followed by either the word road or the word ferry indicating what kind of section it is. If the section is a road, its length (a positive integer) is given in km. For example: Dryna Solholmen road 32 Lines describing ferry sections have more information. Following the word "ferry", the duration of the ferry crossing, in minutes (a positive integer) is given. This is followed by the frequency f (f > 0) of the ferry, that is, the number of times the ferry departs in a single hour. The next f integers give the departure times of the ferry, in ascending order. For example: Manhiller Fodnes ferry 20 2 15 35 The ferry travels from Manhiller to Fodnes in 20 minutes, and it leaves twice an hour (on 0h15, 0h35, 1h15, 1h35,...). The beginning of the entire trip always starts at a full hour. The sections in a route are consecutive, that is, if a section goes from A to B then the next section starts at B. Every route in the input can be traveled in no more than 10 hours.
Output
Output for each test case is a single line containing three items. The first item is the test case number. The second is the total travel time for an optimal scheme in the form hh:mm:ss. The third item is the maximal road speed in an optimal scheme rounded to two digits to the right of the decimal point. Place a blank line after the output of each test case.
Example
Input: 1 Bygd Bomvei road 7 2 Ferje Overfarten ferry 20 2 Overfarten Havneby ferry 30 5 Begynnelse Brygge road 30 Brygge Bestemmelse ferry 15 Bestemmelse Veiskillet road Veiskillet Grusvei road 25 Grusvei Slutt ferry 50 1 10 0 Output: Test Case 1: 00:05:15 80.00 Test Case 2: 01:00:00 0.00 Test Case 3: 03:00:00 45.00
5 25 3 10 30 50
4 10 25 40 55 20
Added by: Blue Mary Date: 2008-01-03 Time limit: 20s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
Input
The input consists of several descriptions of groups of islands. The first line of each description contains a single positive integer n, the number of islands in the group (n <= 50). Each of the next n lines has three integers x i , y i , m i , giving the position of the router (x i , y i ) and number of inhabitants m i (m i > 0) of the islands. Coordinates are measured in kilometers. The first island in this sequence is the main island. The input is terminated by the number zero on a line by itself.
Output
For each group of islands in the input, output the sequence number of the group and the average number of days until the inhabitants are connected to the internet. The number of days should have two digits to the right of the decimal point. Use the output format in the sample given below.
Example
Input: 7 11 12 2500 14 17 1500 9 9 750 7 15 600 19 16 500 8 18 400 15 21 250 0 Output: Island Group: 1 Average 3.20
Added by: Blue Mary Date: 2008-01-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
Input
The input file contains several test cases. Each test case consists of two lines. The first line contains a single integer n (n>1), representing the number of items to be sorted. The second line contains n different integers (each positive and less than 1000), which are the numbers to be sorted. The input is terminated by a zero on a line by itself.
Output
For each test case, the output is a single line containing the test case number and the minimal cost of sorting the numbers in the test case. Place a blank line after the output of each test case.
Example
Input: 3 3 2 1 4 8 1 2 4 5 1 8 9 7 6 6 8 4 5 3 2 7 0 Output: Case 1: 4 Case 2: 17 Case 3: 41 Case 4: 34
Added by: Blue Mary Date: 2008-01-03 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC World Final 2002 (unofficial testdata)
Illustration
Enumerate all CBS length 4 in lexicographical order: (()), ()(), ()[], ([]), [()], [[]], [](), [][].
Task
Your task is to find k-th CBS with length n in lexicographical order
Input
Contains 2 integers n (2..250) and k (1..10^120)
Output
Print the k-th CBS with length n in lexicographical order
Example
Input: 4 3 Output: ()[]
Added by: Chinh Nguyen Date: 2008-01-10 Time limit: 1s Source limit:50000B Languages: All
Input
The first line of the input file contains two integers, N and L separated by space. N, 1 <= N <= 100 is the number of words in the set (including the initial word). The next N lines describe one word each. No other symbols except small latin letters, and the end-of-line symbol are found on these lines. Each word has length at least L and at most 128. The word you start with is the first word in this set.
Output
The only line of the output should contain one integer: the number of different subwords of length L that can be produced using the operation described above.
Example
Input: 2 5 acmicpc pcaaaaaaargh Output: 11
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
2319. Sequence
Problem code: BIGSEQ
You are given the sequence of all K-digit binary numbers: 0, 1,..., 2 K -1. You need to fully partition the sequence into M chunks. Each chunk must be a consecutive subsequence of the original sequence. Let S i (1 <= i <= M) be the total number of 1s in all numbers in the ith chunk when written in binary, and let S be the maximum of all S i , i.e. the maximum number of 1s in any chunk. Your goal is to minimize S.
Input
In the first line of input, two numbers, K and M (1 <= K <= 100, 1 <= M <= 100, M <= 2^K), are given, separated by a single space character.
Output
In one line of the output, write the minimum S that can be obtained by some split. Write it without leading zeros. The result is not guaranteed to fit in a 64-bit integer.
Example
Input: 3 4 Output: 4
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
2320. Manhattan
Problem code: DISTANCE
The L 1 distance of two d-dimensional points is the sum of absolute values of their coordinate differences (i.e. S i=1 d |x i - y i | for two points x,y). Given N points in the plane you must find the farthest pair of points under the L 1 distance metric and output their distance.
Input
The first line of the input is "N d" (2 <= N <= 100000, 1 <= d <= 6) signifying that there are N points in d-dimensional space. N lines then follow, where the ith line is a space-separated list of d numbers, the coordinates of the ith point. All given coordinates are integers that are at most 1000000 in absolute value, and all given points are distinct.
Output
Your output should consist of a single integer, the farthest distance between a pair of input points, followed by a newline.
Example
Input: 3 2 0 0 -5 0 1 1 Output: 7
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 1s-30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
2321. Segments
Problem code: SEGMENTS
There are N horizontal line segments in the plane. The ith segment has some height h i (which may be negative) and runs from x = a i to x = b i (a i < b i ). Segments do not contain their endpoints. You must draw a set of vertical lines (note lines and not line segments) so that every given horizontal segment is intersected at least once and at most R times by vertical lines in such a way that R is minimized.
Input
The first line of the input is N (1 <= N <= 400), the number of horizontal line segments. N lines then follow, where the ith line is "a i b i h i ". Each of a i ,b i ,h i are 32-bit signed integers. Horizontal segments may overlap.
Output
Your output should consist of a single integer, the smallest value of R that is achievable, followed by a newline.
Example
Input: 3 0 1 5 0 2 -2 1 2 7 Output: 2
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 10s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
Input
In the first line of input the number h is given (1 <= h <= 15). In the second line a space-separated list of 2 h numbers are given. They are a permutation of the numbers 1, 2, ..., 2 h , and they represent the order of asked leaves (leaves of a tree are indexed from left to right).
Output
On a single line write a space-separated sequence of 0s and 1s corresponding to the values of leaves in the given order of being asked. If there are multiple solutions, write any of them. Do not output a response for the last query.
Example
Input: 3 5 2 7 3 1 6 8 4 Output: 1 1 1 1 0 0 1
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
Input
To overcome this difficulty the group decided to take measurements at several different points and try to recover the location of the North pole from that. For simplicity, we assume that the region around the North pole is a plane in which a coordinate system is introduced. Each point is then described by a pair of real numbers (x,y), x,y (- [-200, 200]. One of those points (not necessarily (0,0)) is the location of the pole. The compass would always point to that location if it were not broken. Instead, it always points a fixed angle away from the true direction to the pole. In this problem we assume that the magnetic pole is the same as the geographic pole and that it is a point source.
Output
The first line of input specifies one integer number N, N < 10, the number of measurements taken. Each of the next N lines contains four space separated real numbers: the first two are the x and y coordinates of the point at which the measurement was taken, the third and fourth are (u x , u y ), the direction of a unit vector indicating where the compass needle points. There should be only one line of output that should contain two real numbers separated by space: the x and y coordinates of the pole. Your output is considered correct if it is within an additive 0.01 of the correct answer. All measurements are consistent and it is always possible to determine the location of the North pole from them. None of the measurements is made on the pole.
Example
Input: 4 1.000000 0.000000 -0.000000 -1.000000 -1.000000 0.000000 0.000000 1.000000 0.000000 1.000000 1.000000 0.000000 0.000000 -1.000000 -1.000000 0.000000 Output: 0.000000 0.000000
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
2324. Mario
Problem code: MARIOGAM
Mario lives in an N x M maze grid. In this maze there are coin boxes, monsters, pipe systems, and walls. Whenever Mario enters a cell containing a coin box, he jumps to hit the box and gets as many coins as there are in the box (coin boxes do not disappear or lose coins after being hit). When Mario enters a cell with a monster, he loses a life. Pipe systems are like teleporters: for each system there is exactly one exit with at least one (but possibly several) entrances leading to that exit. When Mario walks into the entrance to a pipe system he is teleported to that pipe systems unique exit. Walking into a pipe systems exit does nothing special. Finally, Mario cannot walk into walls. Mario decides to play a game. In the beginning of the game he starts with three lives at some given position, and at each time step he looks at all neighboring cells (excluding walls) and chooses one neighboring cell uniformly at random to walk to (x neighbors y if x is directly above, below, to the left, or to the right of y). If Mario has no non-wall neighboring cells then he stays at his current location. The game is over when either Mario is out of lives or it is impossible for him to collect more coins. Help Mario figure out the expected number of coins he will earn in one play of the game.
Input
The first line of the input is "N M" (1 <= N,M <= 15), giving the dimensions of the maze. What follows are N lines, each of which are M characters in length. The ith line displays the contents of the cells in the ith row of the maze. Mario starts in the unique cell with an $ (which, beside holding Mario, is otherwise an empty cell). Cells with monsters are designated with !. Cells with coin boxes are represented by a number between 0 and 9 (inclusive), which is the number of coins in that coin box. Each pipe system is associated with a distinct letter between a and z (inclusive). A pipe systems entrances are designated with lower case letters, and the unique exit for a given pipe system has the corresponding capitalized letter (e.g. a pipe system with entrances labeled c has exactly one exit, and it is labeled C). Every pipe system appearing in the maze is guaranteed to have exactly one exit and at least one entrance. The character # designates a wall, and . designates an empty cell that Mario can just walk through.
Output
If the expected number of coins Mario collects is infinite, output -1. Otherwise, output a single real number, the expected number of coins Mario collects before the game is over. Your answer should be accurate to within either an absolute or relative error of 10 -6 of the actual answer. Your output should be followed by a newline.
Example
Input: 2 3 $1!
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
Input
In the first line, k and l are given, giving the lengths of the strings A and B (1 <= k, l <= 10 5 ). In the second and third lines strings A and B, respectively, are given. A and B contain only lowercase letters of the English alphabet.
Output
In the first line, write one number, the distance between A and B, followed by a newline.
Example
Input: 8 8 computer kmpjutre Output: 4
Added by: Jelani Nelson (Minilek) Date: 2008-01-10 Time limit: 30s Source limit:50000B Languages: All Resource: MIT 1st Team Contest 2007
Input
First line of input contains T, the number of test cases. For each test case first line contains a number ni, which is equal to the number of amplifiers available. Next line contains n integers, separated by spaces which denote the values with which the amplifiers are loaded.
Output
Output contains T lines, one for each test case. Each line contains ni integers, denoting the order in which the amplifiers should be kept such that the result is strongest.
Example
Input: 2 3 5 6 4 2 2 3 Output: 6 5 4 2 3
Input<h3> First line of input contains a positive integer T, the number of test cases. The first line of each test case contains a positive integer K, equal to the total number of stones available. This line is followed by K lines, each containing a pair of positive integers X,Y. Here X denotes the height of that stone (here the height would be 2 X ) and Y denotes its value. Followed is a line containing an integer N, the number of towers. Each of the next N lines contain a single positive number, which is the height H of the corresponding tower the mathematician wants to build. Output Output contains T lines, one for each test case, containing a number denoting the maximum sum total of strengths of rocks used to construct the Beacons if solution is possible, else the message "Plan Failed!".
Example
Input: 1 2 2 3 0 4 1 5
Output: 7
Constraints and Limits T <=11, H < 10^281, 0 <= X <= 977, 0 < Y <= 977, 0 <= k <= 977 , N <= 97
Added by: Ajay Somani Date: 2008-02-05 Time limit: 4s Source 50000B limit: Languages: All CodeCraft 08, Problem Setter: Gaurav Agarwal,Anshuman Resource: Singh
Input
The first line of the input contains an integer T, which is the number of test cases. For each test case, the first line contains an integer n, equal to the number of trees in the area. This line is followed by n lines each containing 3 integers separated by spaces which are coordinate of the tree ( x, y ) and value of that tree. Following this is an integer R, equal to the number of proposols of land areas given by the Company Man. Next R lines contain 4 integers each (x1, y1, x2, y2) which are the coordinates of lower left ( x1,y1 ) and upper right ( x2, y2 ) corner of the rectangular area.
Output
For each test case, your program should output R lines containing the sum of values of the Trees which lie inside or on the corresponding rectangular plot. There should NOT BE any blank lines between output of different test cases.
Example
Input: 1 3 1 1 2 2 2 3 3 3 4 2 1 1 1 2 0 0 5 5
Output: 2 9
Ajay Somani 2008-02-05 8s 50000B All CodeCraft 08, Problem Setter: Ajay Somani,Anshuman Singh
Output
For each test case, output the total resistance between the nodes 1 and N rounded within two digits after a decimal points.
Example
Input: 4 5 1 2 15 2 4 5 1 3 10 3 4 10 2 3 1 Output: 9.40
Added by: Blue Mary Date: 2008-02-05 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Timus Online Judge, test data by g201513
Input<h3> First line of input contains an integer T, equal to the number of test cases. Followed is the description of each of the T test cases and you are required to process all test cases. First line of each test case contains three integers m,n,k ( in this order ). Each of the next m lines contain n integers separated by spaces. Jth integer in ith line corresponds to the number of Flying Frogs in Square (i,j) in the arena. Output Output contains one line for each test case. You have to output "SensibleFrog Wins!." if SensibleFrog wins and "SmartFrog Wins!." otherwise.
1
Example
Input: 3 1 1 1 837465 2 2 1 0 0 0 1 2 2 2 0 0 0 2
Constraints and Limits T <= 20, 1 <= m,n <= 1000, m*n <= 10^5, 1 <= k <= 10^9 , 0 <= Number of Frogs in a square <= 10^100. > The total input data in each of the input file doesnt exceed 5 MB.
Added by:<td> Date: Time limit: Source limit: Languages: Resource: Ajay Somani 2008-02-05 4s 50000B All CodeCraft 08, Problem Setter: Ajay Somani
> The students experiments and finds that the only significant operations are the modulus(%) and division() operation which take almost equal time. The time taken by other operations may be ignored in the order analysis. He finds a algorithm to solve the problem in which these operations can be carried out in random order. For his testing he chooses M processors . Each processor will carry out exactly M operations (% or /) .The performance is optimal when such a scheme exactly covers all the operations. Puzzled, the student finds that this can only be done for some specific values of x for given a,b and c. He wants to trick the professor, so he needs few values of x for which his algorithm works. However, to make the professor feel that he manually did it these values of x need to be as small as possible. > > Given the values of a,b,c and k, output the first k values of x, for which the students algorithm works. > > Note: The value of x should be greater than or equal to 0. >
Input<h3> The first line of input contains an integer t , the number of testcases. For each testcase , there is exactly one line which contains 4 space separated a,b,c and k.
Output For each test case, output the corresponding k values of x, each in successive different lines. Example
Input: 1 1 2 1 4
Output: 0 1 2 3
Constraints and Limits t <= 10. The values in the output vi <= 10^12. Each of the intermediate values will fit in a 64 bit variable. The values a,b,c would be such that 0 <= a,b,c <= 100 and b^2-4ac >= 0. k <= 1000. > Note : <b> Test data to this problem was modified on Feb 7. > Note 2: <b> There were some mistakes in the test data discovered on March 11, 2008. New tricky cases provided by Blue Mary are also put up now and some "Accepted" solutions have received wrong answer. My apologies to one and all for the mistakes.
Added by: Ajay Somani Date: 2008-02-05 Time limit: 2s Source 50000B limit: Languages: All CodeCraft 08 Anshuman Resource: Singh
Input<h3> First line of input contains an integer T which is equal to the number of test cases. You are required to process all test cases.Each test case starts with 2 space separated integers N,L. N denotes the number of towns and L is the length of path connecting first and last town in the set. Next N-1 lines follow each contains two space separated integers a and b denoting a road between A and B. A and B are 0 based. Output Output consists of T lines. I th line in the output corresponds to the minimum sum total of the distances of all the towns with the nearest hospital for the I th test case. Example
Input: 2 3 1 0 1
1 4 0 1 2
2 1 1 2 3
Output: 1 2
Constraints and Limits T <= 30, n <= 10000, 0 < L <= 100
Added by: Ajay Somani Date: 2008-02-05 Time limit: 5s Source 50000B limit: Languages: All CodeCraft 08 Aryan-Gaurav,Ajay Resource: Somani
Input<h3> The first line contains an integer t which is the number of test cases. Each test case begins with a line containing three integers : number of Initial eactants(S), Final Products(D) and the total number of elements (N). Then S+D lines follow, first S lines contain IDs of Initial reactant ( 0 based ) and next D lines contain IDs of Final products ( 0 based). Then follows a line containing an integer R which is number of reactions possible. Then follow R lines, each containing three integers,
the Substance(S), the converted substance(C) and the activation energy(A) units required for the reaction. 0 <= S,C < n. Output For each test case , output in a different line ,2 integers (a,b) separated by spaces where a is the minimum upper value and b is the minimum number of conversions required for corresponding a. In case that all final products are not obtainable for any value of upper bound, Print a single line with message "Excessive Energy.". Example
Input: 1 2 2 6 1 3 0 3 6 1 2 2 2 4 3 4 5 1 4 2 2 3 0 4 5 0 1
Output: 3 4
Constraints and Limits N <= 10000, S <= N,D <= N,R < 100000 0 < A < 1000000000
Added by: Ajay Somani Date: 2008-02-05 Time limit: 4s Source 50000B limit: Languages: All CodeCraft 08 Resource: Aryan-Gaurav
Input
The first line contains an integer 1<=t<=200 denoting the number of test cases. Then t graphs are given (not necessarily connected). Each graph is described by two lines. The first line contains a string of the form: n=nodes,m=edges: The second line gives the edges of the graph separated by commas. Each edge is given as a pair of vertices: {u,v}. Vertices of the graph are denoted with integers 0...,n-1.
Output
For each test case print YES if the graph is chordal, or NO if it isnt.
Example
Input: 2 n=6,m=4 {0,1} {2,3} {3,4} {3,5} n=6,m=7 {0,3} {1,2} {1,3} {2,4} {2,5} {3,4} {3,5} Output: YES NO
Added by: Tomasz Goluch Date: 2008-02-05 Time limit: 60s Source limit:50000B Languages: All
2426. Palindromes
Problem code: PLD
A palindrome is a word, phrase, number or other sequence of units that has the property of reading the same in either direction, e.g. racecar, solos.
Task
You are given a number k (2<=k<=30000) and a non-empty string S whose length does not exceed 30000 lowercase letters. We say two palindromes are different when they start from different positions. How many different palindromes of the length k does S contains?
Input
The first line contains K. The second line contains S. K does not exceed the length of S.
Output
The first and only line should consist of a single number - the number of palindromes found.
Example
Input: 5 ababab Output: 2
Added by: Chinh Nguyen Date: 2008-02-07 Time limit: 0.5s Source limit:50000B Languages: All
Input
Line 1: C (1 <= C <= 100), the number of calculations your program will be requested to do Lines 2-C+1: two integers N and M (in that order)
Output
Lines 1-C: on each lines print S, which is the number of rabbits FL will not be able to box for calculation # i
Example
Input: 1 5 2 Output: 0
Output explanation: After growing couples of rabbits during 5 months, FL has 5 adult couples and 3 young couples (8 couples in total). FL has boxes where can put 2^2 = 4 couples of rabbits, so he can use 2 boxes to box all the 8 couples. If FL had instead grown couples of rabbits for 4 months, he would have 5 couples in total; thus 1 couple would have remained un-boxed (the answer would have been 1).
Added by: Abel Nieto Rodriguez Date: 2008-02-14 Time limit: 1s Source limit:50000B Languages: All Resource: Mindbend 2002 Programming Contest
48 50 38 -1
0 3 1 -1 -1
Sample Output:
5
Added by: Prasanna Date: 2008-02-25 Time limit: 2s Source limit:50000B Languages: All Resource: ByteCode 2008
2523. Mispelling
Problem code: GNY07A
Misspelling is an art form that students seem to excel at. Write a program that removes the nth character from an input string.
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of a single line of input containing M, a space, and a single word made up of uppercase letters only. M will be less than or equal to the length of the word. The length of the word is guaranteed to be less than or equal to 80.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and the misspelled word. The misspelled word is the input word with the indicated character deleted.
Example
Input: 4 4 MISSPELL 1 PROGRAMMING 7 CONTEST 3 BALLOON Output: 1 MISPELL 2 ROGRAMMING 3 CONTES 4 BALOON
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
2524. Conversions
Problem code: GNY07B
Conversion between the metric and English measurement systems is relatively simple. Often, it involves either multiplying or dividing by a constant. You must write a program that converts between the following units: Type Weight Metric 1.000 kilograms 0.4536 kilograms Volume 1.0000 liter 3.7854 liters English equivalent 2.2046 pounds 1.0000 pound 0.2642 gallons 1.0000 gallon
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of a single line of input containing a floating point (double precision) number, a space and the unit specification for the measurement to be converted. The unit specification is one of kg, lb, l, or g referring to kilograms, pounds, liters and gallons respectively.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and the appropriately converted value rounded to 4 decimal places, a space and the unit specification for the converted value.
Example
Input: 5 1 kg 2 l 7 lb 3.5 g 0 l Output: 1 2.2046 lb 2 0.5284 g 3 3.1752 kg 4 13.2489 l 5 0.0000 g
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
2525. Encoding
Problem code: GNY07C
Chip and Dale have devised an encryption method to hide their (written) text messages. They first agree secretly on two numbers that will be used as the number of rows (R) and columns (C) in a matrix. The sender encodes an intermediate format using the following rules: 1. The text is formed with uppercase letters [A-Z] and <space>. 2. Each text character will be represented by decimal values as follows: <space> = 0, A = 1, B = 2, C = 3, ..., Y = 25, Z = 26 The sender enters the 5 digit binary representation of the characters values in a spiral pattern along the matrix as shown below. The matrix is padded out with zeroes (0) to fill the matrix completely. For example, if the text to encode is: "ACM" and R=4 and C=4, the matrix would be filled in as follows: [IMAGE]
A = 00001, C = 00011, M = 01101 (one extra 0)
The bits in the matrix are then concatenated together in row major order and sent to the receiver. The example above would be encoded as: 0000110100101100
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of a single line of input containing R (1<=R<=20), a space, C (1<=C<=20), a space, and a text string consisting of uppercase letters [A-Z] and <space>. The length of the text string is guaranteed to be <= (R*C)/5.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and a string of binary digits (R*C) long describing the encoded text. The binary string represents the values used to fill in the matrix in row- major order. You may have to fill out the matrix with zeroes (0) to complete the matrix.
Example
Input: 4 4 4 ACM 5 2 HI 2 6 HI 5 5 HI HO
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
2526. Decoding
Problem code: GNY07D
Chip and Dale have devised an encryption method to hide their (written) text messages. They first agree secretly on two numbers that will be used as the number of rows (R) and columns (C) in a matrix. The sender encodes an intermediate format using the following rules: 1. The text is formed with uppercase letters [A-Z] and <space>. 2. Each text character will be represented by decimal values as follows: <space> = 0, A = 1, B = 2, C = 3, ..., Y = 25, Z = 26 The sender enters the 5 digit binary representation of the characters values in a spiral pattern along the matrix as shown below. The matrix is padded out with zeroes (0) to fill the matrix completely. For example, if the text to encode is: "ACM" and R=4 and C=4, the matrix would be filled in as follows: [IMAGE]
A = 00001, C = 00011, M = 01101 (one extra 0)
The bits in the matrix are then concatenated together in row major order and sent to the receiver. The example above would be encoded as: 0000110100101100
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of a single line of input containing R (1<=R<=20), a space, C (1<=C<=20), a space, and a string of binary digits that represents the contents of the matrix (R * C binary digits). The binary digits are in row major order.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and the decoded text message. You should throw away any trailing spaces and/or partial characters found while decoding.
Example
Input: 4 4 4 0000110100101100 5 2 0110000010 2 6 010000001001 5 5 0100001000011010110000010
Output: 1 ACM 2 HI 3 HI 4 HI HO
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
You must write a program which finds a sequence of at most (3n - 2) flips, which converts a given stack of pancakes to a sorted stack with burned sides down.
Input
The first line of the input contains a single decimal integer, N, the number of problem instances to follow. Each of the following N lines gives a separate dataset as a sequence of numbers separated by spaces. The first number on each line gives the number, M, of pancakes in the data set. The remainder of the data set is the numbers 1 through M in some order, each with a plus or minus sign, giving the initial pancake stack. The numbers indicate the relative sizes of the pancakes and the signs indicate whether the burned side is up (-) or down (+). M will be, at most, 30.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, the number of flips (K, where K >= 0) required to sort the pancakes and a sequence of K numbers, each of which gives the number of pancakes to flip on the corresponding sorting step. There may be several correct solutions for some datasets. For instance 3 2 3 is also a solution to the first problem below.
Example
Input: 3 3 +1 -3 -2 4 -3 +1 -2 -4 5 +1 +2 +3 +4 -5
Output: 1 6 2 1 3 1 2 1 2 6 4 1 4 3 1 2 3 3 5 1 5
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of a single line of input containing a vine configuration consisting of a string of [ and ] characters as described above. The length of the string of [ and ] will be greater than or equal to zero, and less than or equal to 150.
Output
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and the minimum number of monkeys required to reach the canopy successfully. Assume that all the hanging vines are reachable from the jungle floor, and that all monkeys jump on the vines at the same time.
Example
Input: 3 [] [[][[]]]
Output: 1 2 2 1 3 8
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. The second line contains the parameters D, L, HA, HB and ERRDIST in that order as (floating point) decimal values. These values would be measured once at the beginning of the day and remain fixed through all rocket shots. Each succeeding line of input represents a single dataset. Each dataset will contain the angles a, b, g and d in that order (measured in degrees) as (floating point) decimal values for a rocket shot.
Output
For each dataset of four angles, the output consists of a single line . If angles a, b and g are not strictly between 0 and 90 degrees or d is not strictly between 90 degrees and 180 degrees, the line should contain the dataset number, a space and the word "DISQUALIFIED" (without the quotes). Otherwise, if the distance between the intersection points of a sight line with the vertical line is more that ERRDIST feet, the line should contain the dataset number, a space and the word "ERROR" (without the quotes). Otherwise, the line should contain the dataset number, a space and the height above the launch platform in feet to the nearest foot.
Example
Input: 4 100.0 300.0 5.25 2.92 5.00 40.1 36.2 35.3 151.6 64.9 71.1 15.7 160.1 44.9 41.2 33.1 152.5 44.9 41.2 33.1 52.5 Output: 1 50 2 ERROR 3 58 4 DISQUALIFIED
Added by: Marco Gallotta Date: 2008-03-11 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset contains a single decimal integer, the width, W, of the grid for this problem instance.
Output
For each problem instance, there is one line of output: The problem instance number as a decimal integer (start counting at one), a single space and the number of tilings of a 4-by-W grid. The values of W will be chosen so the count will fit in a 32-bit integer.
Example
Input: 3 2 3 7 Output: 1 5 2 11 3 781
Added by: Marco Gallotta Date: 2008-03-12 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
Input
The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of datasets that follow. Each dataset consists of six lines of input. The first line of input is the specification for the folded out cube as described above. This line is followed by five lines, each of which gives the specification of one answer image as described above.
Output
For each dataset, output on a single line the dataset number, (1 through N), a blank, the number of answers which are solutions of the problem (corners of the cube specified in the folded out line), a blank and five Y or N characters separated by a blank indicating which of the answer images was a solution (Y for a solution, N for not a solution).
Example
Input: 2 F3E4E2D3C2F3 C2D2F2 E3F3C4 F2C2D2 D1E1F3 E1C1E1 A2F4F1A3A3C4 C3A4A2 F3F4A1 F3C4A1 A2C3A2 A4A4F1 Output: 1 2 Y N Y N N 2 0 N N N N N
Added by: Marco Gallotta Date: 2008-03-12 Time limit: 60s Source limit:50000B Languages: All Resource: ACM Greater New York Regionals 2007
Input
Multiple test cases. For each test case: The first line contains an integer n(1<= n <=100).The second line contains n integers representing the permutation, all of which are separated by single spaces. Input terminates by a single zero.
Output
For each test case: The output contains a single line with a single integer - the number of the permutations having the same value for P(A) when given the permutation A.
Example
Input: 2 1 2 4 1 3 2 4 0 Output: 1 5
Added by: Blue Mary Date: 2008-03-21 Time limit: 6s Source limit:512B Languages: All except: C99 strict Resource: ACM Southeastern European Regional Contest 2001
2648. Archiver
Problem code: KPARCH
One of your friends wants to write his own archiver. He is going to replace neighboring equal substrings with only one copy. For example, he is going to change substring "AA" with something like "2(A)" and if "A" is long enough it will reduce the file size. But, before performing any coding stuff he wants to know how many such double substrings are there in the input file. He asks you to help him, because this task is very difficult for him.
Input
Input file contains the text to be archived. It will only contain Latin letters (big and small). Its size will not exceed 200000 symbols. Letters are case sensitive, i.e. "X" is not equal to "x".
Output
Write a number of substrings of input text which can be written as "AA", i.e. consist of two equal concatenated parts.
Example
Input: abcdefg Output: 0 Input: blabla Output: 1 Input: aCacaacaa Output: 4
Added by: Pavel Kuznetsov Date: 2008-04-11 Time limit: 1s Source limit:50000B Languages: All Resource: IT Festival Arkhangelsk 2007
In this problem you are to figure out whether the given sequence can be sorted or not, applying allowed action zero or more times.
Input
Input will contain multiple test cases (not more than 100). Each case will start with the number of elements in the sequence N (1 <= N <= 100), followed by the N integers not exceeding 1000 by the absolute value. Input ends with the value N = 0.
Output
For each test case write "1" if corresponding sequence can be sorted and "0" otherwise. Output must not contain spaces or line breaks.
Example
Input: 5 7 1 3 9 8 2 2 1 0 Output: 10
Added by: Pavel Kuznetsov Date: 2008-04-12 Time limit: 1s Source limit:50000B Languages: All Resource: IT Festival Arkhangelsk 2007
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1<= n <=600 of states, and the number 1<= m <= 4000 of border segments. The next n lines describe the coordinates of capitals, there are two integers in each line. The next m lines after that describe the m border segments. Each line contains four integers x 1 , y 1 , x 2 and y 2 meaning that there is a border segment from (x 1 , y 1 ) to (x 2 , y 2 ).(It is not given in the input what the two states on the two sides of the border are, but it can be deduced from the way the borders go.) Each state is enclosed by a continuous borderline. The states are surrounded by an infinite wasteland, thus a border segment either separates two states, or a state from the wasteland. It is not possible that the same state is on both sides of a border segment, or the wasteland is on both sides of a border segment. There is exactly one capital in each state, and there is no capital in the wasteland. The border segments do not cross each other, they can meet only at the end points. The input is terminated by a block with n = m = 0.
Output
For each test case, you have to output n lines that describe the enemies of the n states (recall that if two states share a border, then they are enemies). Each line begins with an integer, the number x of enemies the given state has. This number is followed by x numbers identifying the enemies of the state. These numbers are between 1 and n and number 1 refers to the first capital appearing in the input, number n refers to the last.
Example
Input: 4 12 3 2 11 8 12 17 1 19 0 0 10 0 10 0 20 0 20 0 20 10 20 10 20 20 20 20 10 20 10 20 0 20 0 20 0 10 0 10 0 0 10 0 10 10 0 10 10 10 20 10 10 10 10 20 10 10 4 16 170 13 24 88 152 49 110 130 60 60 140 60 140 60 140 140 140 140 60 140 60 140 60 60 0 0 200 0 200 0 200 200 200 200 0 200 0 200 0 0 40 40 160 40 160 40 160 160 160 160 40 160 40 160 40 40 20 20 180 20 180 20 180 180 180 180 20 180 20 180 20 20 0 0 Output: 2 2 4 2 1 3 2 2 4 2 1 3 1 2 2 1 3 2 2 4 1 3
Added by: Blue Mary Date: 2008-04-19 Time limit: 25s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest 2004(unofficial test data)
2661. Illumination
Problem code: ILLUM
Two cubes and a light bulb are placed in a three-dimensional euclidean space. You are expected to find out if one of them casts shadow on the other one and if so, calculate the area of this shadow.
Input
Multiple test cases. For each test case: The first line of the input contains the coordinates of the bulb. It is followed by two groups of four lines each that describe the cubes. Each line of the cube description contains the coordinates of a vertex (see the figure where the vertices are marked and labeled in the same order as they are given in the input). [IMAGE] All the coordinates are given with 5 digits after decimal point. It is guaranteed that the cubes do not intersect, the light bulb is outside both of them, and doesnt lie on any of the planes that contain their faces. A light bulb should be regarded as a point light source. Input terminates by EOF.
Output
For each test case: The output should contain a single line with two numbers separated with a space character. The first one is the number of the cube that has a shadow on it (1 or 2). The second is the area of the shadow. If none of the given cubes casts shadow on the other the output should contain a single number -1. Note: if your output has an error with absolute value less than 10 -2 , it will be judged as Accepted. i.e. You may output any number of digits after decimal point.
Example
Input: -1.00000 1.00000 1.00000 0.00000 0.00000 0.00000 2.00000 0.00000 0.00000 0.00000 2.00000 0.00000 0.00000 0.00000 2.00000 5.00000 0.00000 0.00000 7.00000 0.00000 0.00000 5.00000 2.00000 0.00000 5.00000 0.00000 2.00000 0.00000 0.00000 0.00000 1.00000 1.00000 1.00000
2.00000 1.00000 1.00000 1.00000 2.00000 1.00000 1.00000 1.00000 2.00000 -1.00000 -1.00000 -1.00000 -1.00000 -2.00000 -1.00000 -2.00000 -1.00000 -1.00000 -1.00000 -1.00000 -2.00000 Output: 2 4.000 -1
Added by: Blue Mary Date: 2008-04-19 Time limit: 2s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC NEERC Moscow Subregional Contest 2007
Output
For each test case: Output a single integer which shows the number of the points B(b 1 , b 2 , ... b k ) in the hyperspace satiesfied the following constraints: B is not on any (coordinate) axis. For each 1<= i <= M, there exist j, 1<=j<=k, such that b j < a ij . For each 1<=j<=k, b j is a non-negative integer. The sum of b j doesnt exceed S.
Example
Input: 1 2 4 2 1 3 2 1 Output: 2 Hint The two points are (1,1) and (1,2).
Added by: Blue Mary Date: 2008-04-19 Time limit: 90s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC NEERC Northern Subregion Contest 2003; description by Blue Mary
Input
In the first line there is an integer N (N <= 100000) In the next N-1 lines, the i-th line describes the i-th edge: a line with three integers a b c denotes an edge between a, b of value c (-1000 <= c <= 1000) In the next line, there is an integer Q denotes the number of instructions (Q <= 100000) In the next Q lines, each line contains an instruction "C a" or "A"
Output
For each "A" operation, write one integer representing its result. If there is no white node in the tree, you should write "They have disappeared.".
Example
Input: 3 1 2 1 1 3 1 7 A C 1 A C 2 A C 3 A Output: 2 2 0 They have disappeared.
Some new test data cases were added on Apr.29.2008, all the solutions have been rejudged. Added by: Qu Jun Date: 2008-04-25 Time limit: 1s-6s Source limit:50000B Languages: All except: C99 strict Resource: william
2668. Polygon
Problem code: POLYSSQ
You are given N different points in the plane. No any 3 of them are collinear. Write a program that finds out the smallest area of a convex polygon with K vertices which are taken from the given points.
Input
Two integers, N and K, are written on the first line in the standard input. It follows N lines, each containing a pair of coordinates for the corresponding given point. Every two numbers on a line in the input are separated by a space. Constraints: 0 < N < 50, 0 < K < 11. The coordinates of the given points are nonnegative integers, less than 9999.
Output
Your program has to output an integer that is equal to the integer part of minimal area. If there does not exist any convex polygon as is described above, your program has to output 0.
Example
Input: 4 3 0 0 1 1 0 10 10 0 Output: 5
Added by: Chinh Nguyen Date: 2008-04-26 Time limit: 1s Source limit:50000B Languages: All Resource: Bulgarian OI
Input
On the first row there is the number C of test cases (equal to about 50). Each test contains four lines: k - number of elements of (c) and (b) (1 <= k <= 15) b 1 ,...,b k - k natural numbers where 0 <= b j <= 10 9 separated by spaces c 1 ,...,c k - k natural numbers where 0 <= c j <= 10 9 separated by spaces m, n, p - natural numbers separated by spaces (1 <= m <= n <= 10 18 , 1<= p <= 10 8 )
Output
Exactly C lines, one for each test case: (a m + a m+1 + a m+2 + ... + a n ) modulo p.
Example
Input: 1 2 1 1 1 1 2 10 1000003 Output: 142
Added by: Blue Mary Date: 2008-05-15 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: Problem SEQ
Input
Multiple test cases, the number of them(no more than 3) is given in the very first line. For each test case: The first line contains an integer M (M > 1) which denote the number of sequences. i.e. M = N + 1. M * 2 lines follow, each two lines describe one sequence.For each two lines, the first line contains an integer L which denote the length of this sequence. The second line contains L integers(all the integers dont exceed 2 31 -1) that represent this sequence. The first sequence described is S, the next N sequences represent T 1 ... T N . You can assume that there are no same integer in any one sequence. The length of S is no more than 400000, and the total length of T is no more than 100000.
Output
For each test case: Print the positions which is OK in increasing order.
Example
Input: 2 2 1 1 1 2 3 3 3 1 2 2
4 5 2 10 1 Output: 1 2 3
Added by: Qu Jun Date: 2008-05-19 Time limit: 8s Source limit:50000B Languages: All except: C99 strict Resource: Based on a problem from USACO 2005 Dec Gold Division
Input
The first line contains the four integers N, M, D, and L. For the next N lines, line i+1 contains the integer S i .
Output
Print a single integer denoting the maximum number of cows that can take the highway.
Example
Input: 3 1 1 5 5 7 5 Output: 2
We can obtain two cows by putting either cow with speed 5 first and the cow with speed 7 second.
Added by: Neal Wu Date: 2008-05-22 Time limit: 1s Source limit:50000B Languages: All Resource: USACO Open 2008
2715. Glasnici
Problem code: GLASNICI
A long straight road connects two villages. Along the road, N messengers are stationed and, when needed, they exchange messages using mostly their legs, but also their vocal cords and ears. The first messenger (the closest to the first village) has a radio-receiver which he uses to keep track of current ongoings in the country. When he finds out who has been evicted from whichever reality show is currently popular, he starts running as fast as he can to share the unfortunate (or fortunate) news with everyone else. While running, he shouts the name of the evicted person so that any fellow messengers that are close enough can hear him. Meanwhile, the remaining messengers do not merely sit and wait, but also run themselves, all with the selfless goal of sharing the news with everyone as fast as possible. The running and shouting proceeds as follows: Each of the messengers may run whenever, in either direction, at a speed of at most 1 unit per second, or may decide not to run at all and stand still. All messengers that know the news shout it at all times. One messenger can hear another messenger shouting (and learn the news) if the distance between them is at most K units. Write a program that, given the initial locations of the messengers, determines the least amount of time (in seconds) needed for all messengers to learn the news. The location of every messenger is given with a positive real number - the distance from the first village. As mentioned above, initially only the first messenger knows the news.
Input
The first line contains the integer T (1 <= T <= 25), the number of test cases. Then for each test case, the first line contains the real number K (0 <= K <= 1,000,000), the largest distance at which two messengers can hear each other, and the integer N (1 <= N <= 100,000), the number of messengers. Each of the following N lines contains one real number D (0 <= D <= 1,000,000,000), the distance of one messenger from the first village. The distances will be sorted in ascending order. It is possible for multiple messengers to be at the same location.
Output
For each test case, output a real number, the least time for all messengers to learn the news. Your output needs to be within 0.01 of the official output.
Example
Input: 2 3.000 2 0.000 6.000 2.000 4 0.000 4.000
Warning: large input/output data. Added by: Neal Wu Date: 2008-05-23 Time limit: 20s Source limit:50000B Languages: All Resource: Croatian Olympiad in Informatics 2008
Input
The first line contains the integer T (1 <= T <= 2,000), the number of tests. Each test contains a single line with four real numbers: a, b, c, and d (0 < a, b, c, d < 1,000). Note that it will always be possible to form a valid quadrilateral with these lengths; that is, the sum of any three side lengths will be strictly larger than the other one.
Output
For each test case, print a single line containing the largest possible area. Your output will be accepted if it is within 0.01 of the official answer.
Example
Input: 2 1 2 1 2 0.5 0.5 0.5 0.5 Output: 2.00 0.25
For the first test case, it is optimal to construct a rectangle, and for the second, a square is optimal. Added by: Neal Wu Date: 2008-05-24 Time limit: 1s Source limit:50000B Languages: All
Problem specification
Each army consists of many different monsters. Each monster has a strength that can be described by a positive integer. (The larger the value, the stronger the monster.) The war will consist of a series of battles. In each battle, the weakest of all the monsters that are still alive is killed. If there are several weakest monsters, but all of them in the same army, one of them is killed at random. If both armies have at least one of the weakest monsters, a random weakest monster of MechaGodzillas army is killed. The war is over if in one of the armies all monsters are dead. The dead army lost, the other one won. You are given the strengths of all the monsters. Find out who wins the war.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case starts with line containing two positive integers NG and NM - the number of monsters in Godzillas and in MechaGodzillas army. Two lines follow. The first one contains NG positive integers - the strengths of the monsters in Godzillas army. Similarly, the second one contains NM positive integers - the strengths of the monsters in MechaGodzillas army.
Output specification
For each test case, output a single line with a string that describes the outcome of the battle. If it is sure that Godzillas army wins, output the string "Godzilla". If it is sure that MechaGodzillas army wins, output the string "MechaGodzilla".
Example
input: 2 1 1 1 1 3 2 1 3 2 5 5 output: Godzilla MechaGodzilla
Hint
In the first test case, there are only two monsters, and they are equally strong. In this situation, MechaGodzillas monster is killed and the war ends. In the second test case, the war will consist of three battles, and in each of them one of Godzillas monsters dies. For all the test cases, int in C/C++/Java or longint in Pascal is enough. Added by: Blue Mary Date: 2008-05-24 Time limit: 1s-2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2008
2728. Breaking in
Problem code: BREAK
Mayco has recently been hired as a security consultant for a well-known software company. At the moment, hes working on his first assignment - trying to determine which of the companys servers would be the best targets for potential attackers. It is a bit difficult, though, because some of the servers "trust" some of the others. If an attacker compromises a server, he or she can also freely access all servers that trust it (and servers that trust them, and so on). By definition, the importance of a server S is the number of servers the attacker would be able to access if he compromised S. The most important servers are those with the highest importance. (Note that there can be more than one most important server. This is also illustrated in the example below.)
Problem specification
The network consists of N computers, numbered 1 to N, inclusive. The trust between computers is described by M ordered pairs (A,B) of numbers, denoting that computer A trusts computer B. The trust is not assumed to be mutual - i.e., if a computer A trusts computer B, it does not necessarily imply that computer B trusts computer A.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case starts with a line containing the numbers N and M(1<= N <=9000, 1<= M <= 52000). Each of the following M lines contains two integers, A and B, denoting that computer A trusts computer B.
Output specification
For each test case, the output shall contain one line with the numbers of all of the most important servers. The numbers must be listed in increasing order and separated by single spaces.
Example
input: 2 5 3 3 4 5 4 1 2 3 3
6 5 1 2
2 3 1 5
3 1 4 6
output: 1 2 4
Note
Blue Mary has found a pruning which will make the program very efficient. So the time limit of the hard test case is changed from 60 seconds to 15 seconds. If you have some even harder test case, please send it to me, and Ill add it to the standard input file. Added by: Blue Mary Date: 2008-05-24 Time limit: 1s-15s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2008
Definitions
A graph is a set of nodes, and a set of links. Each link connects two nodes. Each pair of nodes is connected by at most one link. Each link is assigned a positive integer (its weight). The sum of the weights of all links in a graph is the weight of that graph. If every two nodes are connected by a link we say that the graph is complete. A sequence of nodes v 0 , ..., v n such that for each i the nodes v i and v i+1 are connected by a link, is called a path. If every two nodes in a graph are connected by a path, we say that the graph is connected. If there is exactly one path between any two nodes we say that graph is a tree. A spanning subgraph of a connected graph G is a connected graph that contains all nodes of G and some (not necessarily all) of its links. A spanning subgraph T of a graph G is called the minimum spanning tree of G if and only if no other spanning subgraph has a smaller weight.
Note that a given graph can have more than one spanning tree. Also note that a spanning tree is always a tree.
Problem specification
Given a weighted tree T, you are to find the minimum possible weight of a complete graph G such that T is the only minimum spanning tree of G.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. First line of each test case contains an integer N(N <= 15000) - number of nodes in the tree. The nodes are numbered from 1 to N, inclusive. The following N - 1 lines contain a description of the tree. Each of these lines contains three integers a i , b i , w i (1<= a i , b i <=N, 1<= w i <=10000) meaning that node a i is connected with node b i by a link with weight w i .
Output specification
For each test case, the output shall contain one line containing one integer - the minimum possible weight of a complete graph such that the given tree is its unique minimal spanning tree.
Example
Input: 2 3 1 2 4 2 3 7 4 1 2 1 1 3 1 1 4 2 output: 19 12
Hint
In the first test case, we have to add a link between nodes 1 and 3 with weight at least 8. In the second test case, the optimal graph contains the link 2 - 3 with weight 2, and links 2 - 4 and 3 - 4 with weigths 3 each.
Added by: Blue Mary Date: 2008-05-24 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2008
A concrete example of such a problem statement would be: Find the largest repetitive number with at most 47 digits, which is divisible by 42 or 47! Mishka is currently playing around with a few such problem statements and hed like to know all the answers, so that he can choose the nicest one.
Problem specification
A puzzle is described by a number K, the maximal number of digits allowed in the repetitive number, and a set of numbers d 1 , d 2 , ..., d R . Your task is to find the greatest repetitive number X that has at most K digits when written in decimal notation, and it is divisible by at least one of the d i .
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case starts with a line containing the numbers K(1<= K <=10 9 ) and R(1<= R <=7). The next R lines contain the numbers d i (1<= d i <=10 14 ).
Output specification
We can describe a repetitive number by specifying its number of digits N and the digit D it contains. For each test case, the output shall contain one line containing two integers N and D that describe the largest repetitive number that satisfies the conditions from the problem statement.
Example
input: 3 47 2 42 47 99 4 123
Note that in the third test case "3 0" would not be a correct answer, as "000" is not a valid integer. Blue Marys Note: This problem can be solved in a very short time but a naive solution may not terminate within 5 hours. Thanks to Robert Gerbiczs help. Another note: some new test case are added on Jun.6, 2010. Added by: [Trichromatic] XilinX Date: 2008-05-24 Time limit: 17s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: IPSC 2008
Problem specification
There will be N people sitting at the round table. Some of them will be men and the rest will be women. Your task is to count in how many ways it is possible to assign the places to men and women in such a way that there will not be more than K women sitting next to each other. If one assignment can be made from another one by rotating all the people around the table, we consider them equal (and thus count this assignment only once).
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. The input for each test case consists of a single line that contains the two integers N(1<= N <1000) and K.
Output specification
For each test case output a single line with one integer - the number of ways how to distribute people around the table, modulo 100000007.
Example
input: 3 3 1 3 3 4 1
output: 2 4 3
Hint: In the first test case there are two possibilities: MMM or MMW (M is a man, W is a woman). In the second test case there are two more possibilities: MWW and WWW. In the third test case the three possibilities are: MMMM, MMMW, and MWMW. A Note: There are almost 1000 test cases, most of which are randomly generated (huge) ones. Added by: [Trichromatic] XilinX Date: 2008-05-24 Time limit: 8s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: IPSC 2008
Problem specification
You will be given the complete map of Slovak railroads. It consists of railway stations numbered from 1 to N, and railroad segments between some pairs of these stations. For each railroad segment we are given its length. Your task is to remove all such stations that are directly connected with exactly two other stations, and output the new map. The new map must contain correct distances between the remaining stations.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case begins with a line with two integers N(1<= N <=2000) and M(1<= M <=3000). The number N denotes the number of stations and M is the number of railroad segments. M lines follow, each with 3 integers a, b, and c (1 <= a,b <= N) specifying that there is a railroad segment of length c connecting stations a and b. You can assume that in each test case there is a path between every two stations, and there is at most one railroad between any pair of cities directly. Also, there will always be at least 2 stations that are not directly connected to exactly two other stations.
Output specification
For each test case, the output shall consist of multiple lines. The first line shall contain a positive integer K - the number of railroads on the simplified map. Each of the next K lines shall contain three integers a, b (a must be no more than b), and c stating that there is a railroad of length c between stations a and b on the simplified map. The railroads should be listed in lexicographic order, i.e. the railroad with less a should be listed first,if two railroads have the same a, then the one with less b should be listed first. If two railroad have the same a and b, the one with less c should be listed first. Print a blank line between outputs for different test cases.
Example
input: 2 3 2 1 2 1 2 3 1 4 1 2 3 4 4 2 3 4 2
1 2 3 1
output: 1 1 3 2 2 1 2 1 2 2 6
Hint
In the first case we removed station 2 beacuse it had exactly 2 direct connections. In the second case we removed stations 3 and 4. We see that there is now a railroad from station 2 back to itself. For all the test cases, int in C/C++/Java or longint in Pascal is enough. Added by: Blue Mary Date: 2008-05-24 Time limit: 1s-2s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2008
Everyone tried it, but only few chosen ones succeeded. It is a hard task with an unclear path, but a famous end - should you reach it. Many compare it to finding the Holy Grail, or even to finding Waldo. The task is to find a perfect rhyme.
Problem specification
Given is a wordlist L, and a word w. Your task is to find a word in L that forms a perfect rhyme with w. This word u is uniquely determined by these properties: It is in L. It is different from w. Their common suffix is as long as possible. Out of all words that satisfy the previous points, u is the lexicographically smallest one.
Notes
A prefix of a word is any string that can be obtained by repeatedly deleting the last letter of the word. Similarly, a suffix of a word is any string that can be obtained by repeatedly deleting the first letter of the word. For example, consider the word different. This word is both its own prefix and suffix. Its longest other prefix is differen, and its longest other suffix is ifferent. The string rent is its yet another, even shorter suffix. The strings eent and iffe are neither prefixes nor suffixes of the word different. Let u and v be two different words. We say that u is lexicographically smaller than v if either u is a prefix of v, or if i is the first position where they differ, and the i-th letter of u is earlier in the alphabet than the i-th letter of v. For example, dog is smaller than dogs, which is smaller than dragon (because o is less than r).
Input specification
The input file consists of two parts. The first part contains the wordlist L, one word per line. Each word consists of lowercase English letters only, and no two words are equal.
The first part is terminated by an empty line. The second part follows, with one query word w per line. You may assume that in either part of the input, the length of a word will be no more than 30. And the number of words in each part of the input will be no more than 250000. The input file will be less than 5MB.
Output specification
For each query in the input file output a single line with its perfect rhyme. The output must be in lowercase.
Example
input: perfect rhyme crime time crime rhyme output: time crime
In the second test case, there were two candidates that had an equally long common suffix (crime and time), the lexicographically smaller one was chosen. Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-05-26 Time limit: 20s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2008
Input
Line 1: Two space-separated integers: N and T. Lines 2..N+1: Line i+1 contains a single integer: C i .
Output
Lines 1..N: Line i contains a single integer representing the number of cow i (modulo 98,765,431) at the end of the encryption.
Example
Input: 3 4 1 0 4 Output: 26 25 29
Warning: large input/output data. Added by: Neal Wu Date: 2008-05-28 Time limit: 1s Source limit:50000B Languages: All Resource: USACO Chn 2007
Input
The first line contains the integer T (1 <= T <= 10), the number of tests. For each test, there is a single line containing the string S.
Output
For each test case, print a single line containing one integer: the value of match (1) + match (2) + ... + match (N).
Example
Input: 2 ABCAB ZZZZZZ Output: 17 36
For the first test case, match (1) + match (2) + match (3) + match (4) + match (5) = 1 + 2 + 5 + 4 + 5 = 17. For the second, the sum is equal to 6 * 6 = 36. Warning: large input/output data. Added by: Neal Wu Date: 2008-05-28 Time limit: 1s-2s Source limit:50000B Languages: All
Input
The first line contains the two integers N and K. The following N lines contain the integers of the sequence in order.
Output
Print a single integer representing the number of increasing subsequences of S of length K, modulo 5,000,000.
Example
Input: 4 3 1 2 2 10 Output: 2
The two 3-tuples are (1, 2, 4) and (1, 3, 4), both corresponding to the subsequence 1, 2, 10. Added by: Neal Wu Date: 2008-06-20 Time limit: 1s-2s Source limit:50000B Languages: All Resource:
Input
The first line of the input contains the integer N, and the next N lines contain the integers T 1 through TN.
Output
Output N lines, the i-th of which contains an integer representing the time elapsed when task i has been processed.
Example
Input: 5 8 1 3 3 8 Output: 22 2 11 12 23
The second task is completed during the first iteration, finishing 2 seconds in. On the third iteration, the third and fourth tasks complete at 11 seconds and 12 seconds, respectively. Finally, on the eighth iteration, the first and last tasks complete at 22 seconds and 23 seconds, respectively. Warning: large input/output data.
Note: This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2006, TopCoder, Inc. All rights reserved. (See this post for more information.)
Added by: Neal Wu Date: 2008-07-02 Time limit: 1s-2s Source limit:50000B Languages: All Resource: TopCoder High School SRM 52 (with raised constraints)
Input
The first line contains R, N, and M each separated by a space. R lines follow. Each line will contain d v a b separated by a space. d indicates the label of the dice rolled. v indicates the value shown on the dice. a and b indicate the range of dice used to determine the move distance.
Output
R lines containing the position of the player that just rolled after their roll.
Example
Input: 6 4 20 1 5 1 1 3 10 2 3 2 3 0 3 1 2 0 3 1 5 1 2 0 7 0 1 Output: 5 10 15 10 10 0
Output Explanation: For your assistance, here is the state of the dice after each turn: [1, 5, 1, 1] [1, 5, 1, 10] [1, 5, 3, 10] [1, 2, 3, 10] [10, 50, 30, 100] [7, 50, 30, 100]
Warning: large Input/Output data, be careful with certain languages Added by: Mark Gordon Date: 2008-07-05 Time limit: 2s-10s Source limit:50000B Languages: All Resource: own problem
Input
T (<= 15) test cases. Each starts with an integer n (2<= n <=100000). Then n lines follow. Each contains two space-seperated integers, the X and Y coordinate of the corresponding point, respectively. No two points in one test case will coincide.
Output
For each test case, output n lines. The i-th of them should contain the squared distance between the i-th point from the input and its nearest neighbour.
Example
Input: 2 10 17 41 0 34 24 19 8 28 14 12 45 5 27 31 41 11 42 45 36 27 15 0 0 1 2 2 3 3 2 4 0 8 4 7 4 6 3 6 1 8 0 11 0 12 2 13 1 14 2 15 0 Output: 200
Warning: enormous input/output data, be careful with certain languages Note: In Sphere Online Judge system, "Memory Limit Exceeded" will be shown as "Runtime Error(other)", with the 0.00 second run-time & 92-200k memory used, or "Runtime Error(SIGSEGV)" with 250M memory used. Added by: Blue Mary Date: 2008-07-08 Time limit: 23s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Wrocaw 2008
Input
The input contains several test cases, each test case consisting of two lines. The first line of each test case contains the number m (1 <= m <= 128), which specifies how many keys on the keyboard are still working. The second line of each test case contains the text which Bruce wants to type. You may assume that the length of this text does not exceed 1 million characters. Note that the input may contain space characters, which should be handled like any other character. The last test case is followed by a line containing one zero.
Output
For each test case, print one line with the length of the largest substring of the text which consists of at most m different characters.
Example
Input: 5 This cant be solved by brute force. 1 Mississippi 0 Output: 7 2
Added by: Adrian Kuegel Date: 2008-07-12 Time limit: 10s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2008
Input
The input contains several test cases. Each test case starts with a line containing two numbers n and m (1 <= n <= 80, 1 <= m <= 10 9 ). The following line consists of n pairwise different numbers p 1 ,...,p n (1 <= p i <= n). The third line of each test case consists of exactly n characters, and represent the encoded string. The last test case is followed by a line containing two zeros.
Output
For each test case, print one line with the decoded string.
Example
Input: 5 3 2 3 1 5 4 helol 16 804289384 13 10 2 7 8 1 16 12 15 6 5 14 3 4 11 9 scssoet tcaede n 8 12 5 3 4 2 1 8 6 7 encoded? 0 0
Added by: Adrian Kuegel Date: 2008-07-12 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2008
2855. Forest
Problem code: FOREST2
Bruce Force is standing in the forest. He wonders what is the tree trunk the farthest away which is not blocked from his view by other tree trunks. Bruce has made a map of the trees in the forest. The map shows his current position as the origin of a cartesian coordinate system. Tree i is shown on the map as a circle with the center (x i , y i ) and radius r i . You may assume that a tree trunk is visible if and only if there exists a line segment on the map from the origin (0,0) to a point on the border of the circle representing the tree trunk, where the line segment does not intersect or touch another circle.
Input
The input contains several test cases. The first line of each test case contains one number n (1 <= n <= 1000), where n specifies how many trees are on the map. The following n lines contain 3 integers x i , y i , r i each, (-10000 <= x i , y i <= 10000 , 1 <= r i <= 1000 ) where (x i , y i ) is the center of the circle representing tree trunk i, and r i is the radius of the circle. You may assume that no two circles in the input intersect, i.e., for any two circles, the distance between their centers is more than the sum of their radii. Moreover, you may assume that no circle contains the origin. The last test case is followed by a line containing one zero.
Output
For each test case, print one line with the maximum euclidean distance from the origin to a visible tree. The distance to a tree should be measured using the point of the tree closest to the origin, no matter if this point is in fact visible or not. Round the answer to 3 digits after the decimal point.
Example
Input: 3 10 10 11 1 1 1 -20 -10 20 5 1 2 2 -2 1 1 2 -1 1 -1 -2 2 10000 -10000 1000 0 Output: 3.142 1.236
Added by: Adrian Kuegel Date: 2008-07-12 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2008
Input
The input file contains several test cases. Each test case starts with a number m, the number of pizzas Alfredo offers. Input is terminated by m=0. Otherwise, 1 <= m <= 15. Then follow m lines describing the pizzas. Each of those following lines describes pizza i (1 <= i <= m) and starts with 3 integer numbers p i , a i and n i specifying the price of the pizza, its area and the number of discount coupons you get when buying it, 1 <= p i <= 10000, 1 <= a i <= 10000 and 0 <= n i < m. Then follow n i pairs of integer numbers x i,j and y i,j specifying the index x i,j (1 <= x i,j <= m, x i,j != i) of the pizza you get a discount coupon for and the discount in percentage terms y i,j (1 <= y i,j <= 50) you get when buying pizza x i,j . You may assume that for each i the values x i,j are pairwise distinct.
Output
For each test case print one line containing the lowest price per area that can be achieved by buying any of the pizzas at most once. Round this number to 4 places after the decimal point. Note that you can combine an arbitrary number of discount coupons: for a pizza with price 10 and two rabatt coupons for that pizza with a 50 and a 20 on it, you would only have to pay 10 * 0.8 * 0.5 = 4 monetary units.
Example
Input: 1 80 30 0 2 200 100 200 100 5 100 100 100 100 100 100
1 2 50 0 2 3 50 2 50 1 4 50 1 2 40
Added by: Adrian Kuegel Date: 2008-07-12 Time limit: 5s Source limit:50000B Languages: All Resource: University of Ulm Local Contest 2008
Input
The first line contains R, N, and M each separated by a space. R lines follow. Each line will contain d v a b separated by a space. d indicates the label of the dice rolled. v indicates the value shown on the dice. a and b indicate the range of dice used to determine the move distance.
Output
R lines containing the position of the player that just rolled after their roll.
Example
Input: 6 4 4 0 1000000000 1 1 1 999999998 1 1 2 500000000 3 3 0 1 2 2 3 1 0 3 0 6 0 3
Output: 1 2 2 2 0 0 Output Explanation: For your assistance, here is the state of the dice after each turn:(* means unavailable) Before all rolls: [1,1,1,1](0,0) After first roll: [1000000000,1,1,1](1,0) After second roll: [1000000000,999999998,1,1](1,2) After third roll: [1000000000,999999998,500000000,1](2,2) All dices multiply 2: [*,*,1000000000,2](2,2) After forth roll: [1,*,1000000000,2](2,2) All dices multiply 2: [2,*,*,4](2,2) After fifth roll: [2,*,*,1](0,2) After sixth roll: [6,*,*,1](0,0) All dices multiply 0: [0,0,0,0](0,0)
Test data has been updated, all submissions have been rejudged
Added by: Zhang Taizhi Date: 2008-07-24 Time limit: 2s-4s Source limit:50000B Languages: All except: C99 strict Resource: Based on 2833. Super Dice Game
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers 1 <= n <= 1000 and 1 <= m <= 1000000. The number n is the number of knights. The next m lines describe which knight hates which knight. Each of these m lines contains two integers k 1 and k 2 , which means that knight number k 1 and knight number k 2 hate each other (the numbers k 1 and k 2 are between 1 and n). The input is terminated by a block with n = m = 0.
Output
For each test case you have to output a single integer on a separate line: the number of knights that have to be expelled.
Example
Input: 5 5 1 4 1 5 2 5 3 4 4 5 0 0 Output: 2
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-24 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1 <= n <= 300 of diseases, and the number 1 <= m <= 200 of test materials. The next m lines correspond to the m test materials. Each line begins with an integer, the number 1 <= k <= 300 of diseases that the material can detect. This is followed by k integers describing the k diseases. These integers are between 1 and n . The input is terminated by a block with n = m = 0 .
Output
For each test case, you have to output a line containing a single integer: the maximum number of test materials that can be eliminated.
Example
Input: 10 5 2 1 2 2 2 3 3 1 2 3 4 1 2 3 4 1 4 3 7 1 1 1 2 1 3 2 1 2 2 1 3 2 3 2 3 1 2 3 0 0 Output: 2 4
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-24 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1 <= n <= 20000 people, and the length 1 <= m <= 20 of the DNA sequences. The next n lines contain the DNA sequences: each line contains a sequence of m characters, where each character is either A, C, G or T. The input is terminated by a block with n = m = 0 .
Output
For each test case, you have to output n lines, each line containing a single integer. The first line contains the number of different people that were not copied. The second line contains the number of people that were copied only once (i.e., there are two identical copies for each such person.) The third line contains the number of people that are present in three identical copies, and so on: the i -th line contains the number of persons that are present in i identical copies. For example, if there are 11 samples, one of them is from John Smith, and all the others are from copies of Joe Foobar, then you have to print 1 in the first andthe tenth lines, and 0 in all the other lines.
Example
Input: 9 6 AAAAAA ACACAC GTTTTG ACACAC GTTTTG ACACAC ACACAC TCCCCC TCCCCC 0 0 Output:
1 2 0 1 0 0 0 0 0
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-24 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
The input contains several blocks of test cases. The first line of each block contains three integers: the size 1 <= n <= 8 of the warehouse, and two integers i , j that describe the starting position of the secret agent. These numbers are between 1 and n ; the row number is given by i , the column number is given by j . The next n lines describe the warehouse. Each line contains a string of n characters. Each character corresponds to a cell of the warehouse. If the character is ., then the cell is unoccupied. The characters 2, 3 and 4 correspond to boxes of height 2, 3 and 4, respectively. Finally, the character E shows the location of the exit. The input is terminated by a block with n = i = j = 0.
Output
For each test case, you have to output a single line containing an integer: the minimum number of steps required to reach the exit. If it is not possible to reach the exit, then output the text Impossible.(without quotes).
Example
Input: 5 5 3 .2..E ...2. 4.... ....4 ..2.. 0 0 0 Output: 18
Added by: Blue Mary Date: 2008-07-24 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1 <= n <= 300 of the different types, and the number 1 <= m <= 300 of the records. This line is followed by a description of the m records. Each record is described by two lines. The first line contains the total number 1 <= k <= 10000 of widgets built by this widgeteer, followed by the day of week when he/she started working and the day of the week he/she was fired. The days of the week are given bythe strings MON, TUE, WED, THU, FRI, SAT and SUN. The second line contains k integers separated by spaces. These numbers are between 1 and n , and they describe the diofferent types of widgets that the widgeteer built. For example, the following two lines mean that the widgeteer started working on a Wednesday, built a Type 13 widget, a Type 18 widget, a Type 1 widget, again a Type 13 widget,and was fired on a Sunday.
4 WED SUN 13 18 1 13
Note that the widgeteers work 7 days a week, and they were working on every day between their first and last day at the factory (if you like weekends and holidays, then do not become a widgeteer!). The input is terminated by a test case with n = m = 0 .
Output
For each test case, you have to output a single line containing n integers separated by spaces: the number of days required to build the different types of widgets. There should be no space before the first number or after the last number, and there should be exactly one space between two numbers. If there is more than one possible solution for the problem, then write Multiple solutions. (without the quotes). If you are sure that there is no solution consistent with the input, then write Inconsistent data.(without the quotes).
Example
Input: 2 3 2 MON THU 1 2 3 MON FRI 1 1 2 3 MON SUN 1 2 2 10 2 1 MON TUE 3 1 MON WED 3 0 0 Output: 8 3 Inconsistent data.
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-24 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1 <= n <= 500 of rows, and the number 1 <= m <= 500 of columns. The next n lines describe the amount of yeyenum that can be found in the cells. Each of these n lines contains m integers. The first line corresponds to the northernmost row; the first integer of each line corresponds to the westernmost cell of the row. The integers are between 0 and 1000. The next n lines describe in a similar fashion theamount of bloggium found in the cells.
Output
For each test case, you have to output a single integer on a separate line: the maximum amount of mineralsthat can be mined.
Example
Input: 4 4 0 0 10 9 1 3 10 0 4 2 1 3 1 1 20 0 10 0 0 0 1 1 1 30 0 0 5 5 5 10 10 10 0 0 Output 98
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-24 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Your task is to write a program that, given a list of words, finds a word ring. You have to make the word ring as impressive as possible: the average length of the words in the ring has to be as large as possible. In the above example, the average length is (20 + 21 + 24)/3 = 21.6666 , which makes it somewhat impressive. Note that each word can be used at most once in the ring, and the ring can consist of a single word.
Input
The input contains several blocks of test cases. Each case begins with a line containing a single integer 1 <= n <= 100000 , the number of possible words that can be used. The next n lines contain these words. The words contain only the characters a-z and the length of each word is at most 1000. The input is terminated by a block with n = 0.
Output
For each test case in the input, you have to output a single number on a separate line: the maximum average length of a ring composed from (a subset of) the words given in the input. The average length should be presented as a real number with two digits of precision. If it is not possible to compose a ring from these words, then output No solution. (without quotes). To avoid rounding problems, we accept solutions with a maximum of 0.01(positive or negative) error.
Example
Input: 3 intercommunicational alkylbenzenesulfonate tetraiodophenolphthalein 0 Output: 21.66
Added by: Blue Mary Date: 2008-07-24 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Budapest 2005
Input
Ten test cases(given one after another, you have to process all!). For each test case: The first line contains two integers N and E(1<= E<= 180000). E lines follow, each line contains two space-seperated integers A and B - killer No. A can see killer No.B even if he is cloaked.
Output
For each test case, output one line: If the information given is contradictory, output one line "-1 -1". Otherwise output the largest and the smallest possible value of M, seperated by a single space.
Example
Input: 6 5 1 2 2 3 3 4 4 1 3 5 3 3 1 2 2 1 2 3 [and 8 test cases more]
Warning: large input/output data, be careful with certain languages Added by: Blue Mary Date: 2008-07-30 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2008, Day 1; Translate by Blue Mary
2899. Volunteers
Problem code: VOL
ACM ICPC World Finals 2009, sponsored by IBM and hosted by KTH, Royal Institute of Technology will be held in Stockholm, Sweden. This contest will last for N(1<= N <= 1000) days. We need at least A i volunteers in the i-th day. Now there are M(1<= M <=10000) kind of volunteers. The i-th type of volunteers will work from S i -th day to T i -th day, we will pay them $C i . Now your task is to minimize the money KTH pay for all the volunteers.
Input
Ten test cases(given one after another, you have to process all!). For each test case: The first line contains two space-seperated integers N and M. The second line contains N nonnegative integers A i . M lines follow, each contains three integers S i , T i and C i . You may assume you can hire almost unlimited number of every type of volunteers. Tip: During your calculation, int in C/C++/Java or longint in Pascal is enough.
Output
For each test case: Output one line with an integer - the minimum cost.
Example
Input: 3 3 2 3 4 1 2 2 2 3 5 3 3 2 [and 9 test cases more] Output: 14 [and 9 test cases more]
Added by: Blue Mary Date: 2008-07-30 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: Chinese National Olympiad in Informatics 2008, Day 1
Input
The input begins with the number t of test cases in a single line (t<=300). In each of the next t lines there are three integers b, c and d (0 <= b, c and d <= 10 200 ; b,d < c) separated by a space.
Output
For every test case print the length of the segment a, one number per line.
Example
Input: 2 3 8 5 10 18 12 Output: 8 14
Added by: Frank Rafael Arteaga Date: 2008-07-30 Time limit: 0.5s-1s Source limit:4000B Languages: All Resource: My own Resource
2903. Transportation
Problem code: TRANSP1
Blue Mary, the queen of Protoss, is planning a war against Zerg. Before the war she plans to make her base as safe as possible. Now there are N (1<= N <= 60) nexuses available in the region controlled by Protoss, numbered 1, 2, ..., N. (Those who dont know what nexus is, please visit Blizzard Entertainment.) All the mineral and vespene gas stored in nexus i can be transported directly to nexus S i .(i and S i wont be the same.) Blue Marys base is nexus 1, So all the mineral and vespene gas can be transported to base 1 directly or indirectly. Blue Mary defines the safety of nexus i, R(i), as the following: C i and k are numeral constants which will be given in the input file. Suppose for a fixed i, set T={P 1 , P 2 , P 3 , ..., P w }, then x is a member of T if and only if S x is i. Any two P j s must be different. Now Blue Mary wants to modify at most M (0<= M <= N) S i s, so that the safety of her base R(1) is maximized. To be a terran captive, also a great programmer, you must help her to solve this problem. Price is your life. Be careful! Blue Mary tells you that S 1 cant be modified. Dont ask your queen about the reason please.
Input
Ten test cases(given one after another, you have to process all!). For each test case: The first line contains N, M and a real number k (0.3<= k <1). The second line contains N space seperated integers S i . The third line contains N positive real numbers C i . There is a single blank line between consecutive test cases.
Output
For each test case: A single line - the maximized safety of nexus 1, rounded to two decimal places.
Example
Input: 4 1 0.5 2 3 1 3 10.0 10.0 10.0 10.0
[and 9 test cases more] Output: 30.00 [and 9 test cases more]
Hint
Before modifying, the safety of the 4 bases are 22.8571, 21.4286,25.7143,10, respectively. After modifying S 2 to 1, the safety of the 4 bases are 30, 25, 15, 10, respectively. Added by: [Trichromatic] XilinX Date: 2008-08-01 Time limit: 13s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: Chinese National Olympiad in Informatics 2008, Day 2
Input
The input file consists of multiple test cases. Each test case starts with the single integer N, followed by a line with the integers L 1 , ..., L N . The input is terminated with N = 0, which should not be processed.
Output
For each test case, output a single line containing the number of triples.
Example
Input: 3 4 2 10 3 1 2 3 4 5 2 9 6 0 Output: 1 0 2
For the first test case, 4 + 2 < 10, so you will win with the one available triple. For the second case, 1 + 2 is equal to 3; since degenerate triangles are allowed, the answer is 0. Added by: Neal Wu Date: 2008-08-03 Time limit: 2s Source limit:50000B Languages: All
2906. GCD2
Problem code: GCD2
Frank explained its friend Felman the algorithm of Euclides to calculate the GCD of two numbers. Then Felman implements it algorithm
int gcd(int a, int b) { if (b==0) return a; else return gcd(b,a%b); }
and it proposes to Frank that makes it but with a little integer and another integer that has up to 250 digits. Your task is to help Frank programming an efficient code for the challenge of Felman.
Input
The first line of the input file contains a number representing the number of lines to follow. Each line consists of two number A and B (0 <= A <= 40000 and A <= B < 10^250).
Output
Print for each pair (A,B) in the input one integer representing the GCD of A and B.
Example
Input: 2 2 6 10 11
Output: 2 1
Added by: Frank Rafael Arteaga Date: 2008-08-04 Time limit: 0.5s Source limit:1000B Languages: All except: C99 strict JAVA PERL PYTH RUBY PHP LISP sbcl LISP clisp Resource: My own Resource
Input
The first line of the input consist of the number of tests cases <= 5. Each case consist of the integer N and the sequence A. Then the integer M. M lines follow, contains 4 numbers x1, y1, x2 y2.
Output
Your program should output the results of the M queries for each test case, one query per line.
Example
Input: 2 6 3 -2 1 -4 5 2 2 1 1 2 3 1 3 2 5 1 1 1 1 1 1 1 Output: 2 3 1
Frank Rafael Arteaga 2008-08-06 1s 50000B All except: C99 strict K.-Y. Chen and K.-M. Chao, On the Range Maximum-Sum Segment Query Problem, 2007.
Input
In the first line there is an integer N (N <= 100000) In the next N-1 lines, the i-th line describes the i-th edge: a line with two integers a b denotes an edge between a and b. In the next line, there is an integer Q denotes the number of instructions (Q <= 100000) In the next Q lines, each line contains an instruction "0 i" or "1 v"
Output
For each "1 v" operation, print one integer representing its result. If there is no white node in the tree, you should write "-1".
Example
Input: 10 1 2 1 3 2 4 1 5 1 6 4 7 7 8 5 9 1 10 10 0 6 0 6 0 6 1 3 0 1 0 1 1 3 1 10
1 4 1 6 Output: 2 2 2 3 0
Added by: Qu Jun Date: 2008-08-13 Time limit: 6s Source limit:50000B Languages: All Resource: XunYunbo, modified from ZJOI07
Input
In the first line there is an integer N. The following line contains N integers that represent the sequence. The third line contains an integer M denotes the number of operations. In the next M lines, each line contains an operation "0 x y k" or "1 x y".
Output
For each "1 x y" operation, print one integer representing its result.
Example
Input: 5 238 -9622 5181 202 -6943 5 1 3 4 0 5 5 4846 1 3 5 0 3 5 -7471 1 3 3 Output: -4001 -4001 -11674
Added by: Qu Jun Date: 2008-08-14 Time limit: 4s Source 50000B limit: Languages: All Not an own Resource: problem
2944. Emmons
Problem code: SHOOTING
After the end of all the shooting competitions in XXIX Olympic Games in Beijing, Matthew Emmons will be known to more and more people because of his last - which is also his worst - shooting in the 50m Rifle 3*40 Men competitions. Four years before in Athens, he shot a wrong target and lost the gold metal which is almost at hands in the 50m Rifle 3*40 Men competition. The following is Blue Marys imagination :P Emmons decides to practise shooting more assiduously. Because he is an excellent shooter, only 1 year later, he can even shoot precisely without collimation! To him, getting the gold metal of 50m Rifle 3*40 Men in XXX Olympic Games doesnt have any difficulty now. His wife - Katerina Emmons, also a well-known excellent shooter - make a game to keep his interests with shot. The player has n (1<= n <=2000) bullets, each one has a value (a integer whose absolute value is less than 10000). There are m (1<= m <= n) targets, each with a point counter next to it. In the beginning of the game, all the counter are set to integer 1. During the game, the player must choose a bullet and shoot any target. He must use all the bullet, each with at least(of course, at most) 1 time. And each target must be shot at least one time. If the player shoot a target with a bullet valued X, the counter of the target will multiplied by X. The final score of the game is sum of all the m counters. Now Matthew needs your help to make his final score as high as possible. After that, he will show you his excellent shooting skills to get this score. P.S. Even the things above is my imagination, I hope Matthew Emmons has good luck and wins the gold metal of 50m Rifle 3*40 Men in XXX Olympics in London.
Input
Multiple test cases, the number of them (<=50) is given in the very first line. For each test case: The first line contains two integers n and m. The second line contains n integers, the value for each bullet.
Output
For each test case:
The first and the only line contains a single integer - the highest possible final score.
Example
Input: 3 10 2 0 -1 -2 0 1 2 3 2 10 1 10 3 0 -1 -2 0 1 2 3 2 10 1 5 3 10 0 0 -1 -1 Output: 240 241 11 Hint: For the first example, a possible solution is (0,0)(-1,-2,1,2,3,2,10,1). For the second example, a possible solution is (0,0)(1,1)(-1,-2,2,3,2,10).
Added by: Blue Mary Date: 2008-08-21 Time limit: 60s Source limit:50000B Languages: All except: C99 strict Resource: Chinese Team Selection Contest for IOI 2006, with description modified
2946. Eclipse
Problem code: ECLIPSE
Every so often we hear on the news that there is going to be either a solar or lunar eclipse. Eclipses have a long history dating back well into the BCs. Astronomers study total solar eclipses very closely as they provide the rare opportunity to observe the corona. An eclipse occurs when two celestial bodies and a star are (nearly) linearly aligned and the shadow cast by the one body intersects the other body, creating darkness on the latter body. We are interested in determining when a solar eclipse will next occur. In Figure 1 you can see two labelled regions. The umbra is the area of total darkness -- a body in this region will experience a total solar eclipse. The penumbra is the area of partial darkness -- a body in this region will experience a partial solar eclipse. You will be given the size and location of a star and two celestial bodies. Your task is to determine if the first celestial body creates a solar eclipse on the second celestial body. If it does then you are to determine whether it is a total or partial eclipse and whether the entire body is in eclipse. If part of the body is experiencing total eclipse while the entire body is experiencing at least a partial eclipse, we are only interested in the part that is in total eclipse. Consider a scaled model of our solar system with the sun at the origin (0, 0, 0) with radius 700, the moon at position (49900, 1000, 149700) with radius 2 and Earth at position (50000, 1000, 150000) with radius 7. In Figure 1, the sun would be the star on the left and the moon would be the smaller body on the right. Part of Earth would then fall in the black umbra region and hence partly experience a total solar eclipse. For any body: 1 <= r <= 10 6 0 <= x, y, z <= 10 9 It is guaranteed that any two bodies will be at least 1 unit apart, and that moving any one of the bodies by 1 unit (in any direction) will not change the answer. [IMAGE]
Input
A test case is described by three lines, each describing the size and location of a single body. The first line contains four space-separated integers xs , ys , zs and rs , describing the center (xs , ys , zs ) and radius rs of the star. The following two lines define the two celestial bodies in the same manner. Test cases follow directly after one another with a -1 representing the end of the test cases.
Output
Each test case has a single line of output describing the type of eclipse for that case. If the second celestial body listed in the test case is experiencing an eclipse, then one of the following lines must be output: Entire total solar eclipse Part total solar eclipse Entire partial solar eclipse Part partial solar eclipse If there is no solar eclipse, the line "No solar eclipse" must be output.
Example
Input: 0 0 0 700 49900 1000 149700 2 50000 1000 150000 7 0 0 0 10 50 0 100 40 60 0 200 1 -1 Output: Part total solar eclipse Entire total solar eclipse
Added by: Marco Gallotta Date: 2008-08-27 Time limit: 30s Source limit:50000B Languages: All Resource: ACM Southern African Regionals 2007
Input
Ten test cases(given one after another, you have to process all!). For each test case, the first line contains an integer k, the second line contains k integers, c 1 , c 2 , ...c k .
Output
Ten lines, each contains an integer, the number of ways modulo 1000000007.
Example
Input: 3 1 2 3 5 2 2 2 2 2 10 1 1 2 2 3 3 4 4 5 5 [and 7 test cases more] Output: 10 39480 85937576 [and 7 test cases more]
Added by: Blue Mary Date: 2008-09-01 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: :P
Input
Input consists of multiple test cases, the number of them (<=2000) is given in the very first line. For each test case, the first line contains an integer k, the second line contains k integers, c 1 , c 2 , ...c k .
Output
For each test case, output one line with an integer, the number of ways modulo 1000000007.
Example
Input: 3 3 1 2 3 5 2 2 2 2 2 10 1 1 2 2 3 3 4 4 5 5 Output: 10 39480 85937576
Added by: Blue Mary Date: 2008-09-01 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: g201513
3002. Electrophoretic
Problem code: ELECTRO
Scientist Frank, majoring in electrochemistry, has developed line-shaped strange electrodes called F-electrodes. During being activated, each F-electrode causes a special potential on and between the two lines touching the F-electrodes endpoints at a right angle. Then electrically-charged particles located inside the potential area get to move in the direction parallel to the potential boundary (i.e. perpendicular to the F-electrode), either toward or against F-electrode. The moving direction can be easily controlled between the two possibles; it is also possible to get particles to pass through F-electrodes. In addition, unlike ordinary electrodes, F-electrodes can affect particles even infinitely far away, as long as those particles are located inside the potential area. On the other hand, two different F-electrodes cannot be activated at a time, since their potentials conflict strongly. We can move particles on our will by controlling F-electrodes. However, in some cases, we cannot lead them to the desired positions due to the potential areas being limited. To evaluate usefulness of F-electrodes from some aspect, Frank has asked you the following task: to write a program that finds the shortest distances from the particles initial positions to their destinations with the given sets of F-electrodes. [IMAGE]
Input
The input consists of multiple test cases. The first line of each case contains N(1 <= N <= 100) which represents the number of F-electrodes. The second line contains four integers xs, ys, xt and yt, where (xs, ys) and (xt , yt) indicate the particles initial position and destination. Then the description of N F-electrodes follow. Each line contains four integers F xs , F ys , F xt and F yt , where (F xs , F ys ) and (F xt , F yt ) indicate the two endpoints of an F-electrode. All coordinate values range from 0 to 100 inclusive. The input is terminated by a case with N = 0.
Output
Your program must output the case number followed by the shortest distance between the initial position to the destination. Output "Impossible" (without quotes) as the distance if it is impossible to lead the elementary particle to the destination. Your answers must be printed with five digits after the decimal point.
Example
Input: 2 2 1 2 2 0 0 1 0 0 1 0 2
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input contains a series of test cases. The first line of each test case contains two integers W and H (1 <= W, H <= 8), which indicates the width and height of the image respectively. Then H lines follow to describe the filtered image. The i-th line represents the i-th scan line and contains exactly W characters, each of which is either # (representing black) or . (representing white). The input is terminated by a line with two zeros.
Output
For each test case, print a line that contains the case number followed by the difference of black pixels. If there are no original images possible for the given filtered image, print "Impossible" instead.
Example
Input: 5 5 ##### ##### ##### ##### ##### 4 4 #### #### #### #### 4 4 #... .... .... ...# 4 4 .#.# #.#. .#.# #.#. 0 0 Output: Case 1: Case 2: Case 3: Case 4:
10 6 2 Impossible
Added by: Jin Bin Date: 2008-09-08 Time limit: 20s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input consists of multiple test cases. Each case begins with a line containing three integers N (1 <= N <= 6), M (2 <= M <= 10 9 ), and L (1 <= L <= 10 9 ). The following 2N - 1 lines are the description of the initial state. Each non-negative integer (smaller than M) indicates the initial number of viruses in the colony. The first line contains the number of viruses in the N colonies on the topmost row from left to right, and the second line contains those of N + 1 colonies in the next row, and so on. The end of the input is indicated by a line "0 0 0".
Output
For each test case, output the test case number followed by the total number of viruses in all colonies after L periods.
Example
Input: 3 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 1 0 0 0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0 0 1 0
Added by: Jin Bin Date: 2008-09-08 Time limit: 20s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input consists of multiple test cases. Each test case comes in a line, which contains an integer n. You may assume 1 <= n <= 10000. The end of input is indicated by a line containing a single zero. This line is not a part of the input and should not be processed.
Output
For each test case, output the case number starting from 1 and the pair of minimum a and b as in the sample output. You may assume both a and b fit into 64-bit signed integers.
Example
Input: 1 2 0 Output: Case 1: 3 2 Case 2: 2 1
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input consists of multiple test cases. Each test case begins with a line containing a single integer n (2 <= n <= 14), which is the number of the initial line segments. The following n lines are the description of the line segments. The i-th line consists of four real numbers: x i,1 , y i,1 , x i,2 , and y i,2 (-100 <= x i,1 , y i,1 , x i,2 , y i,2 <= 100). (x i,1 , y i,1 ) and (x i,2 , y i,2 ) are the coordinates of the end points of the i-th line segment. The end of the input is indicated by a line with single "0".
Output
For each test case, output the case number followed by the minimum length in a line. The output value should be printed with five digits after the decimal point.
Example
Input: 4 0 1 0 9 10 1 10 9 1 0 9 0 1 10 9 10 2 1.2 3.4 5.6 7.8 5.6 3.4 1.2 7.8 0
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The first line of the input specifies N, the number of test cases. Then N test cases follow, each of which looks like the following:
W H r 1,1 r 2,1 ... r W,1 ... r 1,H r 2,H ... r W,H
The first line of a test case contains two integers W and H (1 <= W, H <= 20). They specifies the dimension of the area. The next H lines, each of which contains W integers, represent the map of the area. Each integer rx,y (0 <= rx,y < 10000) indicates the oil reserve at the grid block (x, y).
Output
For each test case, output the case number (starting from 1) and the maximum possible amount of mining in a line. Refer to the sample output section about the format.
Example
Input: 2 2 2 2 3 3 5 3 2 4 1 1 2 1 4 Output: Case 1: 7 Case 2: 8
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input consists of multiple test cases. Each test case consists of two integers N (2 <= N <= 20) and M (1 <= M < N) in one line. The input is terminated by the line containing two zeroes.
Output
For each test case, your program must output the case number followed by one integer which indicates the minimum number of turns required to find a person with M consecutive wins.
Example
Input: 2 1 10 5 15 10 0 0 Output: Case 1: 1 Case 2: 11 Case 3: 210
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input consists of multiple test cases. Each test case begins with a line containing two integers W (1 <= W <= 32) and H (1 <= H <= 32), which denote the width and height of the discrete Voronoi diagram. The following H lines, each of which consists of W letters, give one discrete Voronoi diagram. Each letter represents one pixel. The end of input is indicated by a line with two zeros. This is not a part of any test cases.
Output
For each test case, print the case number and the coordinates of generatrices as shown in the sample output. Each generatrix line should consist of its identifier, x-coordinate, and y-coordinate. Generatrices should be printed in alphabetical order of the identifiers. Each coordinate is zero-based where (0, 0) indicates the center of the top-left corner pixel of the diagram. You may assume that every test case has at least one solution. If there are multiple solutions, any one is acceptable. Print a blank line after every test case including the last one.
Example
Input: 4 3 ooxx ooxx ooxx
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
The input file contains several test cases. Each case begins with a line containing two positive integers n and r. n is the number of vertices of the concave polygon that describes the present castle wall, satisfying 5 <= n <= 64. r is the maximum total length of new castle walls feasible within the budget, satisfying 0 <= r <= 400. The subsequent n lines are the x- and y-coordinates of the n vertices. The line segments (x i , y i )-(x i+1 , y i+1 ) (1 <= i <= n - 1) and (x n , y n )-(x 1 , y 1 ) form the present castle wall of the concave polygon. Those coordinates are given in meters and in the counterclockwise order of the vertices. All coordinate values are integers between 0 and 100, inclusive. You can assume that the concave polygon is simple, that is, the present castle wall never crosses or touches itself. The last test case is followed by a line containing two zeros.
Output
For each test case in the input, print the case number (beginning with 1) and the maximum possible area enclosed with the present and new castle walls. The area should be printed with exactly one fractional digit.
Example
Input: 5 4 0 0 4 0 4 4 2 2 0 4 8 80 45 41 70 31 86 61 72 64 80 79 40 80 8 94 28 22 0 0 Output: Case 1: 16.0 Case 2: 3375.0
Added by: Jin Bin Date: 2008-09-08 Time limit: 10s Source limit:50000B Languages: All except: C99 strict Resource: JAG wintercamp 08, day2
Input
On the first line there are two integers N and T. On the lines 2 ... N+1 there are 3 integers, type[i] (from 1 to 6) p[i] and q[i]. ( 0 < p[ i ], q[ i ] < T )
Output
Output the total quality.
Example
Input: 7 53 5 8 2 2 4 8 6 8 13 1 13 12 4 5 1 3 2 7 3 13 5 Output: 1 Note: If there is no answer, output 0. There can be less than 6 types of items.
Added by: Pripoae Toni Date: 2008-09-14 Time limit: 0.5s Source limit:2048B Languages: All Resource: Original
Input
The first line of input file contains positive N, L, U. following N lines will contain a positive integer, each representing an element of the series.
Output
The first line of the output will display the number of sequences containing between L and U distinct elements.
Example
Input: 4 1 2 231 19 7 19
Output: 8 Notes: 1<= L <= U <= N <= 2^20 The value of an item number is a positive integers [1,2^32-1]; A subsequence is a lot of items that appear on consecutive positions in the initial row. Be carefull with certain languages.Large imput data. Tom thanks you for solving this problem and he awards you with points.
Added by: Pripoae Toni Date: 2008-09-29 Time limit: 0.200s-2.5s Source limit:50000B Languages: All Resource: Mircea Pasoi
Input
About 600 test cases. Each test case contains one line with 3 integers x, z and k.(1<= x, z, k <=10 9 ) Input terminates by three zeroes.
Output
For each test case, output one line with the answer, or "No Solution"(without quotes) if such an integer doesnt exist.
Example
Input: 5 58 33 2 4 3 0 0 0 Output: 9 No Solution
Added by: Blue Mary Date: 2008-10-04 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: Folklore, description, standard program and test data by Blue Mary
Input
The first line of the input contains a positive integer C (0<C<10), the number of test cases to follow. Each case begins with a line containing a positive integer D (0<D<10000) representing the number of dictionary words and a string T with length between 1 and 10000. D lines follow, with each line containing a string with length between 1 and 200 in RLE format, which represents a dictionary word with uncompressed length between 1 and 10000. All uncompressed strings (T and dictionary words) will consist only of uppercase letters (A-Z).
Output
Output for each case consists of several lines. There should be one line per dictionary word W (in the order of appearance in input) that will say either "YES" if W is a subsequence of T, or "NO" otherwise. Print a blank line after each test case.
Example
Input: 1 5 EFFERVESCENCE 2E 1E1F1V1C1E 1E2F1C1R 1S2E 1P1E2F
Added by: John Rizzo Date: 2008-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008 - Set by eleusive
Input
The first line of the input contains a positive integer C (0<C<100,000), the number of test cases to follow. Each case consists of a line containing three integers: K, low, and high (1<K<10000, 0<low<= high<10^10). K will always be an odd integer.
Output
Output for each case consists of one line: the number of integers between low and high, inclusive, that contain exactly K divisors.
Example
Input: 3 3 2 49 9 1 100 5 55 235 Output: 4 2 1
Added by: John Rizzo Date: 2008-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008 - Set by eleusive
Input
The first line of the input contains a positive integer C (0<C<100), the number of test cases to follow. Each case begins with a line containing a two positive integers M and K (1<M<100, 0<K<100), representing the number of circles on the game board and the number of seconds between times that Charlesbert moves the ChasePiece. Each of the following M lines is a string of Y and N characters, with M characters per line. If the jth character of the ith line is Y, then circles i and j are connected, otherwise circles i and j are not connected. The jth character of line i will always be the same as the ith character of the jth line, and the kth character of the kth line will always be N. In other words, these M lines form an adjacency matrix for the circles. The ChasePiece always starts on the first circle.
Output
For each case, if Merangelou can win then print the shortest amount of time required for her to win. Otherwise, print "INFINITE GAME". The output for each case should appear on its own line.
Example
Input: 3 5 1 NNNNY NNNNY NNNNY NNNNY YYYYN
Added by: John Rizzo Date: 2008-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008 - Set by eleusive
Input
The first line will be number of test cases T. The first line of each test case is a string S with length L (1 <= L <= 100000). The second line contains an integer Q(1 <= Q <= 150000), representing the number of operations. Each of the following Q lines represents an operation: Q i j: print LCP(S[i..L], S[j..L]) R i char: replace the i-th character of S with char I i char: insert character char after the i-th character of S
Output
For each "Q i j" operation, print the answer.
Example
Input: 1 madamimadam 7 Q 1 7 Q 4 8 Q 10 11 R 3 a Q 1 7 I 10 a Q 2 11 Output: 5 1 0 2 1
Added by: John Rizzo Date: 2008-10-04 Time limit: 3s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008
Input
The first Line contains the number of test cases T <= 10. Each test case contains a number A.
Output
Output the number of ways.
Example
Input: 1 391 Output: 6
Added by: John Rizzo Date: 2008-10-04 Time limit: 3s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008
3111. Stabards
Problem code: STABARDS
In a galaxy far far away, there exists a silicon based form of life, who call themselves stabards. Unlike humans, the stabards are multi-gendered. Therefore, when two stabards form a partnership (known as mating in earth parlance), one stabard would be the donor of genetic material and the other would be the combinator of the genetic material. Of course, the combinator had the tougher task, to combine the genetic material and create a new stabard. Early on, the wise stabards realized that due to the increased number of genders, every stabard was likely to waste his time trying to find a suitable partner. After that, due to the tremendous opportunity, every stabard would waste some more time trying to cheat on his partner by forming more partnerships (especially the donors since they had nothing much to do). Therefore, the wise ones made the following rules about partnerships: 1. Each stabard can form at most two partnerships. 2. In order to maintain a sense of balance, a stabard cannot play the same role (donor/combinator) in both partnerships. 3. The partnerships shall be formed such that the total number of them is maximized. To ensure all rules are being followed, the wise ones send the stabard data every year to earth and wish to know the maximum number of partnerships that can be formed.
Input
For each test case, two integers M (the number of stabard genders) and N (the total number of stabards) are given on the first line. M lines follow, each consisting of M characters. The j-th character on the i-th line denotes what would happen if a stabard of gender i formed a partnership with a stabard of gender j. It will be either X - such a partnership is forbidden. D - stabard of gender i would be the donor. C - stabard of gender i would be the combinator. After the M lines, N space separated integers are given on a single line. The i-th integer gives the gender of the i-th stabard. The end of the test cases is given by a line with M and N both being 0. This test case should not be processed. The total number of test cases will be <= 100.
Constraints
0 < M <= 100 0 < N <= 100 The gender data for stabards will be symmetric and consistent. (i.e. character i on line j will not conflict with character j on line i). Two stabards of the same gender can never partner each other. (The wise ones fear this will pollute the gene pool. Moreover, big fights would break out as who would be the donor.) The gender given for each stabard will be between 0 and M-1 inclusive.
Output
For each test case, a single integer giving the total number of partnerships. Each integer must be on its own line.
Example
Input: 2 4 XD CX 0 0 1 1 3 3 XDC CXD DCX 0 1 2 0 0 Output: 2 3
Added by: John Rizzo Date: 2008-10-04 Time limit: 1s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008 - Set by humblefool
3112. Strings
Problem code: STSTRING
Given two strings A and B, we define the operator cx on {A,B} for string C as C cx {A,B}.
if length(A) < length(C) < length(B), then C satisfies the above operator. else if length(A)=length(C), then C must be lexicographically greater than A. if length(B)=length(C), then C must be lexicographically smaller than B.
Input
Given two strings A,B with length(A) < = length(B) <= 6. A,B can contain any characters between A and J (capital letters).
Output
Print the number of strings satisfying the above criteria. C must also satisfy criteria of A and B. Any two adjacent characters in string C may neither be the same nor consecutve (i.e. the absoulte difference between the ASCII values of adjacent characters is greater than 1).
Example
Input: A J AA BCD ABC DEFG Output: 8 129 1770
Added by: John Rizzo Date: 2008-10-04 Time limit: 2s Source limit:50000B Languages: All Resource: Al-Khawarizm 2008 - Set by FameofLight and Challenger
Input
The input consists of a set of cities for which you must find a fastest route if one exists. The first line of an input case contains two integers, which are the vertical and horizontal number of city blocks, respectively. The smallest city is a single block, or 1 by 1, and the largest city is 20 by 20 blocks. The remainder of the input specifies speed limits and traffic directions for streets between intersections, one row of street segments at a time. The first line of the input (after the dimensions line) contains the data for the northernmost east-west street segments. The next line contains the data for the northernmost row of north-south street segments. Then the next row of east-west streets, then
north-south streets, and so on, until the southernmost row of east-west streets. Speed limits and directions of travel are specified in order from west to east, and each consists of an integer from 0 to 9 indicating speed limit, and a symbol indicating which direction traffic may flow. A zero speed limit means the road is closed. All digits and symbols are delimited by a single space. For east-west streets, the symbol will be an asterisk * which indicates travel is allowed in both directions, a less-than symbol < which indicates travel is allowed only in an east-to-west direction, or a greater-than symbol > which indicates travel is allowed only in a west-to-east direction. For north-south streets, an asterisk again indicates travel is allowed in either direction, a lowercase "vee" character v indicates travel is allowed only in a north-to-south directions, and a caret symbol ^ indicates travel is allowed only in a south-to-north direction. A zero speed, indicating a closed road, is always followed by an asterisk. Input cities continue in this manner until a value of zero is specified for both the vertical and horizontal dimensions.
Output
For each input scenario, output a line specifying the integer number of blips of the shortest route, a space, and then the word "blips". For scenarios which have no route, output a line with the word "Holiday".
Example
Input: 2 2 9 * 9 * 6 v 0 * 3 * 7 * 3 * 6 v 4 * 8 * 2 2 9 * 9 * 6 v 9 * 3 * 7 * 3 * 6 v 4 * 8 * 2 2 9 * 9 * 6 ^ 0 * 3 * 7 * 3 * 6 ^ 4 * 8 * 0 0
8 v 3 *
8 v 3 *
8 ^ 3 *
Added by: Nikola P Borisov Date: 2008-10-11 Time limit: 5s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2007
Input
The first line of input contains N (1 <= N <= 100000), the number of elements in the permutation. The next line contains a permutation of the integers 0 through N-1 each separated by a space. The following line will contain the result of applying the permutation k times with the exception that elements that are not known will be -1 instead.
Output
Print P^k as a space separated list on its own line with as many elements as possible determined. If an element cant be determined leave it as -1. If there is no k such that P^k has the values given in the input print "Inconsistent" (quotes for clarity) on its own line instead.
Example
Input: 4 1 2 3 0 3 -1 -1 -1 Output: 3 0 1 2
Example 2
Input: 4 1 2 3 0 3 -1 2 -1 Output: Inconsistent
Added by: Mark Gordon Date: 2008-10-17 Time limit: 3s Source limit:50000B Languages: All Resource: Own problem
Input
There will be multiple test cases. For each case, the first line contains the integer N, and each of the next N lines gives a pair of integers, X i and Y i . The file ends with the case N = 0, which should not be processed.
Output
For each test case, print a single integer representing the maximum number of lines Bessie can draw, no two of which are parallel.
Example
Input: 4 -1 1 -2 0 0 0 1 1 0 Output: 4
Bessie can draw lines of the following four slopes: -1, 0, 1/3, and 1. Added by: Neal Wu Date: 2008-10-19 Time limit: 1s Source limit:50000B Languages: All Resource: USACO Feb 2008
Input
The input consists of a number of cases. Each case starts with 2 integers on a line separated by a single space: D and P, the number of vendors supporting the Doors and Penguins operating system, respectively (1 <= D, P <= 500). The next D lines specify the locations of the vendors supporting Doors. This is followed by P lines specifying the locations of the vendors supporting Penguins. The location of each vendor is specified by four positive integers: x1, y1, x2, y2. (x1, y1) specifies the coordinates of the southwest corner of the booth while (x2, y2) specifies the coordinates of the northeast corner. The coordinates satisfy x1 < x2 and y1 < y2. All booths are rectangular and have sides parallel to one of the compass directions. The coordinates of the southwest corner of the exhibition hall is (0, 0) and the coordinates of the northeast corner is (15000, 15000). You may assume that all vendor booths are completely inside the exhibition hall and do not touch the walls of the hall. The booths do not overlap or touch each other. The end of input is indicated by D = P = 0.
Output
For each case, print the case number (starting from 1), followed by a colon and a space. Next, print the sentence: It is possible to separate the two groups of vendors. if it is possible to do so. Otherwise, print the sentence: It is not possible to separate the two groups of vendors. Print a blank line between consecutive cases.
Example
Input: 3 3 10 40 20 50 50 80 60 90 30 60 40 70
30 30 50 50 10 10 2 1 10 10 40 10 25 12 0 0
40 40 60 60 20 20 20 20 50 20 35 40
Output: Case 1: It is possible to separate the two groups of vendors. Case 2: It is not possible to separate the two groups of vendors.
Added by: Daniel Gmez Didier Date: 2008-10-21 Time limit: 1s-2s Source limit:50000B Languages: All Resource: 2007 PUJ - Circuito de Maratones ACIS / REDIS
Input
Line 1: a string consists of at most 100000 characters. The ASCII code of all characters are between 32 and 127, inclusive. Line 2: a magical key(for security purpose).
Output
Line 1: the length of the longest palindrome. Line 2: the magical key.
Example
Input: abaabbabaaba MAGICAL KEY Output: 6 MAGICAL KEY
Restriction
Only C++ is allowed in this problem now. In addition, you will receive "wrong answer" if your program dont start with this. You cant use macro "#undef" in your solution as well. If you want to solve this problem in another language, send me the header file in your language please. warning: Dont try to access the memory of tester, or I will reject your solution manually, and you will lose the chance to enjoy this problem as well.
Hint
hint of using tester library: you cant read anything from stdin, and you cant print anything as well, your program will be terminated if you called answer().
hint of viewing feedback: You can click on "wrong answer" link to view the feedback of judge: whether your solution didnt include the testlib, or failed on sample. (if neither, your solution failed on a further test case)
Notice
update on Oct.24: I had updated the header file for C++, now you will receive "Runtime Error(NZEC)" if your solution called isSame() illegally. The submissions with old version of header file are still acceptable. rejudge on Oct.24: some test cases were added, three submissions were rejudged as TLE instead of AC. Added by: Bin Jin Date: 2008-10-23 Time limit: 1s Source limit:10240B Languages: C++ 4.0.0-8 C++ 4.3.2 Resource: the (second??) "interactive" problem on SPOJ
3249. Typesettin
Problem code: TYPESET
Modern fonts are generally of two varieties: outline fonts, whose glyphs (the individual character shapes) are specified mathematically as a set of curves, and bitmap fonts, whose glyphs are specified as patterns of pixels. Fonts may also include embedded information such as kerning pairs (adjusting the spacing between certain pairs of glyphs, such as "AW", so that they appear spaced correctly), tracking hints (for managing inter-glyph spacing), antialiasing hints (smoothing of pixellated edges), and much more. To be sure, modern fonts are more than a simple collection of shapes, and displaying them properly is a common programming challenge. For this problem we will concern ourselves with bitmapped fonts and a simple form of typesetting called glyph packing. Essentially, the idea is to pack the glyphs as tightly as possible while maintaining at least one horizontal pixel of separation between glyphs. For example, consider the glyphs shown to the left below for the Roman characters "P" and "J". The figure to the right shows them after glyph packing. Note that they are as close as possible without touching horizontally. PJ Heres another example. In this case, notice that the final glyph cannot be packed at all. Fiji After packing, pixels from distinct glyphs may be adjacent diagonally or vertically, but not horizontally. The following example shows that pixels may be adjacent diagonally. The "Love" test case in the example input section shows that they may be adjacent vertically. two slashes Glyph packing has the nice property that its easy to build "fancy" glyphs into the font so that glyph packing creates special effects with no extra work. Look at the "Toy" example below. The same simple packing process has been applied to these glyphs as to the ones above, but the result is more dramatic: Toy Glyph packing has a few caveats, however, one of which we must concern ourselves with for this problem. Consider the example on the left below where a glyph for a hyphen is followed by a glyph for an underscore. Based on our one horizontal pixel of separation rule, how would this pack? Clearly something more is needed, and that something more is hinting within the glyphs themselves. Recall that in actual practice, fonts contain kerning pairs, tracking hints, etc. For our purposes, our hinting will be limited to "invisible" pixels that count as a pixel for the purpose of packing, but not for display. The center image below represents invisible pixels as open dots instead of closed dots. Now the two glyphs can be properly packed, resulting in the output shown on the right.
hidden pixels Now for the formal definition of a proper packing: (1) Glyphs are packed as close as possible without allowing any pixels from different glyphs to be immediately horizontally adjacent; (2) Given two glyphs, they may not be packed in such a way that any pixel of the leftmost glyph at a given height ends up positioned to the right of any pixel at the same height in the rightmost glyph. Condition (2) above is easily understood by visualizing two glyphs sitting side by side, separated by a small space. If you "squeeze" them together, condition (2) says that their pixels are not allowed to "pass through" one another. Consider the example to the left below. The center image is not the proper packing, because it violates condition (2) of the formal definition. The image on the right is the proper packing of these glyphs. hooks
Input
The input for this problem is sets of glyphs to be packed. In a given test case, all glyphs are the same height, and an integer, N, on the first line of the test case specifies this height. The next N lines contain the glyphs to be packed. Empty pixels in a glyph are represented by a dot . character. Non-empty pixels are represented by a hash mark # for visible pixels, and a zero 0 for invisible pixels. Glyphs are separated by a single column of space characters. The input will always consist of more than one glyph, at least one of which will always contain at least one visible pixel. A glyph will always have at least one non-empty pixel in its leftmost and rightmost column, and every glyph will have at least one non-empty pixel at the same height as at least one other glyph in the input. The minimum dimension of a glyph is 1 x 1, the maximum dimension is 20 x 20, and the maximum number of glyphs that will appear in any test case is 20. Test cases continue until a value of zero is specified for N.
Output
For each test case, first output the number of that test case (starting with 1) on a line by itself. Then output the proper packing of the input glyphs, using the dot . character for empty pixels and for invisible pixels, and the hash mark # character for visible pixels. Omit leading and trailing empty columns (columns with no visible pixels) so that both the leftmost and rightmost output columns contain at least one visible pixel.
Example
Input: 8 ###. ...# #..# ...# #..# ...# ###. ...# #... ...# #... ...# #... #..# #... #### 8 ############# ..#.......... ..#.......... ..#.......... ..#..........
..#.......... .##. ..........### ............. .... ............# ............. .... ############. 8 ############# ............. ..#.......... ............. ..#.......... .........#..# ..#.......... .........#..# ..#.......... .........#..# ..#.......... ..........### ............. ............# ............. ############. 5 0..0 0..0 0..0 0..0 #### 0..0 0..0 0..0 0..0 #### 5 #.... .###. #.... #...# #...# #...# #...# ....# .###. ....# 3 ### 0.0 ### #.# 0.0 #.# ### 0.0 ### 3 0.0 ### 0.0 0.0 #.# 0.0 0.0 ### 0.0 8 #.... .... ..... .... #.... .... ..... .... #.... .##. #...# .##. #.... #..# .#.#. #..# #.... #..# .#.#. #..# #.... #..# .#.#. ###. #.... .##. ..#.. #... ##### .... ..#.. .### 0 Output: 1 ###..# #..#.# #..#.# ###..# #....# #....# #.#..# #.#### 2 ############# ..#.......... ..#..##..#..# ..#.#..#.#..# ..#.#..#.#..# ..#..##...### ............# ############.
3 .....############# .......#.......... .......#.#..#..... .......#.#..#..... .......#.#..#..... .......#..###..... ............#..... ############...... 4 ......... ......... ####..... ......... .....#### 5 #......###. #.....#...# #...#.#...# #...#.....# .###......# 6 ###.....### #.#.....#.# ###.....### 7 ### #.# ### 8 #.............. #.............. #..##.#...#.##. #.#..#.#.#.#..# #.#..#.#.#.#..# #.#..#.#.#.###. #..##...#..#... #####...#...###
Added by: Nikola P Borisov Date: 2008-10-25 Time limit: 10s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2007
3251. Slink
Problem code: SLINK
Slitherlink is a puzzle published by Nikoli, the Japanese company that popularized Sudoku. Slitherlink puzzles are gaining momentum, and books of Slitherlink puzzles have started showing up around the world. The puzzles are simple to understand, but can be challenging to solve. The puzzle is simply a rectangular grid of dots that forms a collection of cells, every cell being either blank or containing an integer from zero to three. The challenge is to connect the dots with line segments to form a cycle (a connected path such that every vertex has precisely two incident edges), in such a way that every cell with a value has exactly the number of incident edges as the digit it contains. Cells with no value may have any number of incident edges. A valid Slitherlink puzzle always contains sufficient non-empty cells to guarantee a unique solution. Below is an example from the Nikoli web site of a Slitherlink puzzle and its solution. slitherlink example It was shown by Takayuki Yato at the University of Tokyo that the general Slitherlink problem is NP-complete. (If you are not familiar with this concept, informally it means there is no "efficient" algorithm to solve the problem.) With a slight modification and some simple heuristics, however, programmatic solutions are possible. Our new puzzle, which we will term Slink, differs from Slitherlink only in that the puzzle may not have empty cells. That is, every cell must specify the number of incident edges. Below is the Slitherlink puzzle above converted to Slink (the added numbers are shown in gray). Note that the solution does not change, only the information given in the puzzle itself. slink example The heuristics for solving Slink arise from the nature of the puzzle itself. For example, consider a cell containing a zero. There must be no incident edges, therefore all edges incident to all zeros can be immediately removed from consideration as part of the solution path. Consider a three next to a zero. Because all the edges incident to the zero will be eliminated, the common edge shared with the three is also eliminated. But that leaves only three edges around the three, and therefore those three edges must be part of the solution path. The following table specifies the heuristic rules that must be properly applied to solve a Slink puzzle. The "x" characters between vertices mark edges that are not part of the solution path, while line segments between vertices mark edges that form part of the solution. Grey elements are the pattern the rule is based on, black elements indicate the additional edges that should be included or excluded if the rule is matched. Note that the pictured examples are for demonstration purposes only and do not illustrate every possible arrangement of the stated rule! Look here for more pictures Examples Rule Specification Examples Rule Specification
case 1
The easiest and most obvious of all the rules. Cells containing a zero have no incident edges, so all the edges around a zero should be removed from consideration as part of the solution path.8 8 1 0 1 1 2 2 1 3 3 333233222011220231 101222123110212222 321321311321002323 266001100022220120 021120021022220001 100222222353332312 1323322200
case 2 case 3
If a cell contains the value n and only n incident edges remain (i.e. have not been eliminated), then the n remaining edges must be part of the solution path. Two examples of this occurring are shown here.
case 4 case 5
If a cell contains the value n and n incident edges have already been included in the path, the remaining edges can be eliminated. Two examples of this occurring are shown here.
case 6 8 8 1 0 1 1 2 2 13333323322 20112202311 01222123110 21222232132 13113210023 23266001100 02222012002 11200210222 20001100222 22235333231 21323322200
If two 3s are adjacent to one another, the common edge between the cells as well as the outer edges of both cells are part of the solution path. One example of this arrangement occurring is shown here.
case 7
If two 3s occur diagonally adjacent, the opposing corners as shown here must be part of the solution path. One example of such an arrangement is shown here. If a vertex has two incident edges, the other edges can be eliminated from consideration as part of the solution path. One such example is shown here.
case 8
If an edge enters a vertex for which only a single exit remains, that exit must be part of the solution path. One such example is shown here. If any vertex has three incident edges excluded, the fourth incident edge can be excluded as well. One possible arrangement of this occurring is shown here. If the exits at one corner of a 2 are blocked, and one exit at an adjacent vertex around the 2 is also blocked, then the unblocked exit at that adjacent vertex must be part of the solution path. One example of this arrangement is shown here.
case 9
case 10
case 11
A 3 for which two of the exits are blocked as shown, such as in a corner of the puzzle, must include the two edges incident to the blocked vertex.
case 12
case 13
A 1 for which the exit paths at one of its incident vertices are both blocked as shown, such as might occur in the corner of the puzzle, must also eliminate the other two edges incident to that vertex as shown.
case 14
If the solution path enters the corner of a 3, and the exit that goes away from the 3 at that same corner is blocked, then the two edges around the three incident to the opposite corner must be part of the solution path. If the solution path enters the corner of 2 and the path leading away from the 2 at the same corner is blocked, then if one of the paths leading away from the 2 at the diagonally opposite corner is also blocked, the other edge leading away from the 2 at that same corner must be part of the solution path. One example of this arrangement occurring is shown here.
case 15
If a 3 and 1 are diagonally adjacent, and the corner of the 3 furthest from the 1 has the exit segments blocked as shown, then the edges incident to the far corner of the 1 becomes blocked. The opposite is also true; if the far corner of the 1 had been blocked, then the exit segments at the far corner of the 3 would become blocked in the same manner. If the solution path enters the corner of a 1, and the exit that goes away from the 1 at that same corner is blocked, then the two edges around the three incident to the opposite corner must be eliminated from the solution path.
case 16
case 17
Input
The input for this problem is a set of Slink puzzles to be solved. The first line of a Slink problems input contains two integers, r and c, separated by a space, the number of rows and the number of columns in the puzzle. The next r rows of the input contain c integers, space delimited, valued from 0 to 3, which specify the content of the puzzle. The minimum dimension of a puzzle is 2 by 2 cells, and the maximum dimension is 20 by 20 cells. It is guaranteed that a unique solution to every input puzzle exists and can be determined with the above rules if a rule is always applied when it can be applied. A line with values of zero for r and c marks the end of the input.
Output
The output for this problem is a graphical representation of the Slink puzzle solution. The first data set is 1, the second data set is 2, etc. On a line by itself display the data set number, followed by the solution in exactly the format demonstrated below. Vertical edges are output as the vertical bar | character, horizontal edges are output as dash - characters, vertices where the path changes direction are output as plus signs +, and cell numbers are always displayed with a blank to the left and to the right. Further, surround the entire output with a border made up of hash marks # such that the
number in the upper left cell of the puzzle always occurs four positions to the right of the border and three position below the border, and the number in the lower right cell always occurs four positions to the left of the border and three positions above the border.
Example
Input: 8 8 1 0 1 1 3 3 3 3 2 2 0 1 2 3 1 1 2 1 2 3 1 2 2 2 3 2 1 3 1 0 0 2 6 6 0 0 1 1 0 2 2 2 1 2 0 0 1 2 0 0 0 2 2 2 0 0 1 1 2 2 2 2 2 2 3 5 3 3 3 2 1 2 1 3 3 3 2 2 0 0 2 2 1 0 1 2 1 3 0 2 2 2 2 0 2 3 2 1 1 3 1 2 0 0 1 1 0 0 1 3 2 2 0 2 3 3 3 2 0 2 2 1 2 2
3 2 2
Output: 1 ##################################### # # # +---------------+ # # 1 0 1 1 | 2 2 1 3 | # # +---+ +---+ | +---+ +---+ # # | 3 | 3 | 3 | 3 | 2 | 3 | 3 | 2 # # | +---+ +---+ | +---+ # # | 2 2 0 1 1 | 2 2 0 # # +-------+ +-------+ # # 2 3 | 1 1 0 1 2 | 2 # # +-------+ +---+ +---+ # # | 2 1 2 | 3 | 1 1 0 2 | # # | +---+ | +---+ | # # | 1 2 | 2 2 | 2 | 3 | 2 1 | # # | +---+ +---+ | +---+ | # # | 3 | 2 1 | 3 1 | 1 3 | 2 | # # +---+ +---+ | +---+ | # # 1 0 0 2 | 3 | 2 | 3 2 | # # +---+ +-------+ # # # ##################################### 2 ############################# # # # # # 0 0 1 1 0 0 #
# +-------+ # # 0 2 | 2 2 | 2 0 # # +---+ +---+ # # 1 | 2 0 0 2 | 1 # # | | # # 1 | 2 0 0 2 | 1 # # +---+ +---+ # # 0 2 | 2 2 | 2 0 # # +-------+ # # 0 0 1 1 0 0 # # # # # ############################# 3 ############# # # # +-------+ # # | 2 2 | # # | | # # | 2 2 | # # +-------+ # # # ############# 4 ######################### # # # +---+ +---+ +---+ # # | 3 | 3 | 3 | 2 | 3 | # # | +---+ | | | # # | 1 2 1 | 3 | 2 | # # | +---+ +---+ | # # | 3 | 3 | 2 2 2 | # # +---+ +-----------+ # # # #########################
Added by: Nikola P Borisov Date: 2008-10-25 Time limit: 5s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2007
Input
The input consists of one or more ACL logs, each 3-79 characters long and on a line by itself, followed by a line containing only "#" that signals the end of the input. Logs will be in the format defined above and will not contain any whitespace.
Output
For each log, output a single line containing the log number (logs are numbered sequentially starting with one), then a colon, then the current ACL in the format shown below. Note that (1) spaces do not appear in the output; (2) entities are listed in alphabetical order; (3) the rights for an entity are listed in alphabetical order; (4) entities with no current rights are not listed (even if they appeared in a log entry), so its possible that an ACL will be empty; and (5) if two or more consecutive entities have exactly the same rights, those rights are only output once, after the list of entities.
Example
Input: MC-p,SC+c YB=rde,B-dq,AYM+e GQ+tju,GH-ju,AQ-z,Q=t,QG-t JBL=fwa,H+wf,LD-fz,BJ-a,P=aw # Output: 1:CSc 2:AeBerMeYder 3: 4:BHJfwLPaw
Added by: Nikola P Borisov Date: 2008-10-25 Time limit: 1s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2007
3254. Guard
Problem code: GUARD
Guard Placement The Bluewater Security Company provides guards for clients with valuable possessions. Bluewater has found that clients are interested in having guards posted where they can see everything that is valuable merely by turning their heads, and also like guards to be posted particularly close to particularly valuable items. A sample site layout is shown above. Ignore the three black dots for now. Various locations are labeled and assigned values. For instance location A at coordinates (0,8) is the position of an item with value 4. Locations showing a value 0, like G, do not have a valuable item. The straight lines indicate corridors. For simplicity, corridors are modeled as line segments with 0 width. A guard at an intersection point of several corridors can see and therefore guard the items on each of the corridors. If Bluewater were contracted to supply 3 guards, they might choose to post them at the positions indicated with the small black dots. The guard not at an already labeled position is at (15.5, 6). To model the desire for guards to be closer to items of higher value, Bluewater calculates the risk to a valuable item to be the value of the item times the minimum distance to a guard that can see the item. Even if a guard is close to an item that is around a corner, that guard does not affect the risk to the item, since the guard cannot see around a corner. In the diagram shown, the risks to the items are A: 4x5=20, C: 4x2.5=10, D: 2x0=0, .... The largest risks are for H: 50x7.5=375 and I: 50x7.5=375, so the maximum risk to any one item is 375. With this site layout, no arrangement of 3 guards would provide a lower maximum risk, so this arrangement of 3 guards minimizes the maximum risk. Bluewater would like to be able to tell any client who requests a particular number of guards for a particular site layout, what the minimized maximum risk will be.
Input
The input will consist of one to sixteen data sets, followed by a line containing only 0. On each line the data will consist of blank separated tokens. The first line of a dataset contains integers p c g, where p is the number of points specified, c is the number of corridors, and g is the number of guards to be placed. Constraints are 1< p < 12; 0 < c < 12; 0 < g < 5. Next in the dataset are a total of p groups of four tokens, each consisting of a capital letter and three nonnegative integers L x y v indicating the point (x, y) with label L contains an item with value v. If p is no greater than 6, these groups will all be on one line. If p is greater than 6, then the seventh and further groups will be on the next line. Labels will be consecutive letters starting from A. All the numbers are less than 1000. Each of the points is unique. A value of 0 for v means there is no item of value there. The number of locations with items of value will be at least as large as the number of guards. The last line of a dataset contains c strings of letters, one for each corridor. For each corridor the letters are labels for points along the corridor, in order along the line segment from one end to the other, including both endpoints, all intersection points with other corridors, and all locations on the corridor with a valuable item. Each of the points given in the dataset will lie on at least one of the corridors.
Output
There is one line of output for each data set. If there are not enough guards supplied to be able to see all the valuables, the line is "too few guards". Otherwise the line is an unsigned number r rounded to two places beyond the decimal point, where r is the minimum value over all placements of g guards of the maximum "risk" to the valuables. The first example dataset matches the illustration above, and the next three examples only vary the number of guards.
Example
Input: 11 5 3 A 0 8 4 B 5 8 0 C 14 8 4 D G 5 20 0 H 11 12 50 I 20 0 ABCDE AG FGB GHCI JDK 11 5 2 A 0 8 4 B 5 8 0 C 14 8 4 D G 5 20 0 H 11 12 50 I 20 0 ABCDE AG FGB GHCI JDK 11 5 1 A 0 8 4 B 5 8 0 C 14 8 4 D G 5 20 0 H 11 12 50 I 20 0 ABCDE AG FGB GHCI JDK 11 5 4 A 0 8 4 B 5 8 0 C 14 8 4 D G 5 20 0 H 11 12 50 I 20 0 ABCDE AG FGB GHCI JDK 3 3 1 A 0 0 50 B 0 3 60 C 4 0 20 AB CB CA 0 Output: 375.00 1250.00 too few guards 21.21 150.00 21 8 2 E 25 8 1 F 5 22 1 50 J 19 10 5 K 25 4 5
21 8 2 E 25 8 1 F 5 22 1 50 J 19 10 5 K 25 4 5
21 8 2 E 25 8 1 F 5 22 1 50 J 19 10 5 K 25 4 5
21 8 2 E 25 8 1 F 5 22 1 50 J 19 10 5 K 25 4 5
Added by: Nikola P Borisov Date: 2008-10-25 Time limit: 5s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2007
Input
The first line gives the integers N and Q, and the next N lines give the initial values of A i . Finally, the next Q lines each contain a query of the form "M i X" or "C P Q X".
Output
Print the answer to each C query, one per line.
Example
Input: 4 6 3 4 1 7 C 2 4 4 M 4 1 C 2 4 4 C 1 4 5 M 2 10 C 1 3 9 Output: 2 3 4 2
FJ has 4 cows, whose initial numbers are 3, 4, 1, and 7. The cows then give him 6 operations; the first asks him to count the how many of the last three cows have a number at most 4, the second asks him to change the fourth cows number to 1, etc. Warning: large input/output data. Added by: Neal Wu Date: 2008-10-25 Time limit: 1s-8s Source limit:50000B Languages: All
IEI = 4 EI = 9 Therefore, for such a scenario, after 3 simulation cycles the empire idleness is 9.
Input
The input consists of several test cases. The first line of a test case contains four integers C,R,N, and S, indicating respectively the quantity of cities in the empire (2 . C . 1000), the number of roads (1 . R . C(C - 1)/2), the number of cycles to be simulated (1 . N . 1000) and the identifier of the starting city of the patroller (1 . S . C). Each city is identified by a distinct integer from 1 to C. Each of the following R lines contains three integers X, Y and D describing a road; X and Y represent cities (1 . X 6= Y . C) and D represents the distance (1 . D . 1000), in kilometers, of the road that connects X and Y directly, without passing through any other city. Each pair of cities X and Y will appear at most once in a road description. You can assume that it is always possible to travel from any city to any other city in the empire using the roads available. The end of input is indicated by C = R = N = S = 0.
Output
For each test case in the input, your program must produce one line containing the empire idleness after the N-cycle simulation.
Example
Input: 2 1 1 1 1 2 2 2 1 2 1 1 2 2 2 1 3 1 1 2 2 2 1 4 1 1 2 2 3 2 3 1 1 2 1 2 3 1 0 0 0 0 Output: 2 4 8 10 9
Added by: Daniel Gmez Didier Date: 2008-11-07 Time limit: 1s-3s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest 2004 - Brazil Sub-Regional
Input
The input consists of several test cases. The first line of a test case contains two integers N and M, indicating respectively the number of boxes the client needs to buy (1 <= N <= 1500) and the number of boxes in the stock list (1 <= M <= 1500). The second line contains three integers X, Y and Z, representing the dimensions of the item the client wants to wrap (0 < X, Y, Z <= 50). Each of the next M lines contains three integers A, B and C representing the dimensions of a box in the stock list (0 < A, B, C <= 50). A test case with N = 0 indicates the end of the input. The input must be read from standard input.
Output
For each test case in the input your program must produce one line, containing either: -> The single word impossible, in case it is not possible to fulfill the clients order (because there are not at least N boxes of the same size in stock that can contain the item); or -> one integer V , which specifies the volume of empty space left when one of the N items packed in one of the boxes chosen.
Example
Input: 1 1 2 4 3 2 3 4 2 6 3 1 3 7 4 7 10 8 2
2 6 7 6 1 3 1 0
8 2 7 2 1 3 1 0
10 9 4 9 3 1
Output: 0 99 impossible
Added by: Daniel Gmez Didier Date: 2008-11-07 Time limit: 1s-3s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest 2004 - Brazil Sub-Regional
With the assumptions above, an acceptable expression will never involve an intermediate or final arithmetic result with magnitude over three million.
Input
The input will consist of one to fifteen data sets, followed by a line containing only 0. The first line of a dataset contains blank separated integers rc, where r is the number of rows in the hex pattern and c is the number of entries in the odd numbered rows. The next r lines contain the characters on the hex tiles, one row per line. All hex tile characters for a row are blank separated. The lines for odd numbered rows also start with a blank, to better simulate the way the hexagons fit together. Properties 1-5 apply.
Output
There is one line of output for each data set. It is the unique acceptable equation according to rules 6-10 above. The line includes no spaces.
Example
Input: 5 1 6 / 3 = 9 7 3 3 1 + 1 * 2 0 = 3 3 7 5 2 9 * 2 = 3 4 + 8 3 4 / 0 Output: 6/3=9-7 3*21+10=73 8/4+3*9-2=43
Added by: Nikola P Borisov Date: 2008-11-07 Time limit: 20s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2008
Input
The input consists of one or more bridge configurations, followed by a line containing two zeros that signals the end of the input. Each bridge configuration begins with a line containing a negative integer -B and a positive integer P, where B is the number of bridges and P is the total number of people that must cross the bridges. Both B and P will be at most 20. (The reason for putting -B in the input file is to make the first line of a configuration stand out from the remaining lines.) Following are B lines, one for each bridge, listed in order from the first bridge that must be crossed to the last. Each bridge is defined by two positive integers C and T, where C is the capacity of the bridge (the maximum number of people the bridge can hold), and T is the time it takes to cross the bridge (in seconds). C will be at most 5, and T will be at most 100. Only one unit, of size at most C, can cross a bridge at a time; the
time required is always T, regardless of the size of the unit (since they all move as one). The end of one bridge is always close to the beginning of the next, so the travel time between bridges is zero.
Output
For each bridge configuration, output one line containing the minimum amount of time it will take (in seconds) for all of the people to cross all of the bridges while meeting both tactical requirements.
Example
Input: -1 2 5 17 -1 8 3 25 -2 9 3 10 4 60 -3 10 2 10 3 30 2 15 -4 8 1 8 4 30 2 10 1 12 0 0 Output: 17 75 190 145 162
Added by: Nikola P Borisov Date: 2008-11-07 Time limit: 10s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2008
Input
The input will consist of one to twenty data sets, followed by a line containing only 0. On each line the data will consist of blank separated nonnegative integers. The first line of a dataset contains integers n w h, where n is the number of posters on the bulletin board, w and h are the width and height of the bulletin board. Constraints are 0 < n <= 100;0 < w<= 50000; 0 < h <= 40000. The dataset ends with n lines, each describing the location of one poster. Each poster is rectangular and has horizontal and vertical sides. The x and y coordinates are measured from one corner of the bulletin board. Each line contains four numbers xl yl xh and yh, where xl and yl, are the lowest values of the x and y coordinates in one corner of the poster and xh and yh are the highest values in the diagonally opposite corner. Each poster fits on the bulletin board, so 0 <= xl < xh <= w, and 0 <= yl < yh <= h.
Output
There is one line of output for each data set containing three integers, the total area of the bulletin board that is not covered by any poster, the maximum depth of posters on top of each other, and the total area covered this maximum number of times. Caution: An approach examining every pair of integer coordinates might need to deal with 2 billion coordinate pairs.
Example
Input: 3 45 40 10 10 35 20 20 25 40 35 25 5 30 30 1 20 30 5 5 15 25 2 2000 1000 0 0 1000 1000 1000 0 2000 1000 3 10 10 0 0 10 10 0 0 10 10 0 0 10 10 0 Output: 1300 2 75 400 1 200 0 1 2000000 0 3 100
Added by: Nikola P Borisov Date: 2008-11-07 Time limit: 10s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2008
This is obviously far more efficient than storing 100,000 individual rows all with the same status and transfer codes. The challenge arises when serial numbers within already defined ranges need to be given different status or transfer codes. For example, if serial number 12345 needs to change to status B, the above table would need to become three separate entries:
1 12344 A 1 12345 12345 B 1 12346 100000 A 1
Now lets change the transfer code of all serial numbers in the range 12000 to 12999 to 2. This gets us:
1 11999 A 1 12000 12344 A 2 12345 12345 B 2 12346 12999 A 2 13000 100000 A 1
Now change all existing serial numbers from 10000 to 100000 to status C and transfer code 2:
1 9999 A 1 10000 100000 C 2
Once created a serial number will never be deleted, but it is possible to have ranges of undefined serial numbers between ranges of defined ones. To demonstrate, lets now set all serial numbers from 1000000 to 1999999 to status Z and transfer code 99:
1 9999 A 1 10000 100000 C 2 1000000 1999999 Z 99
Finally, the table is always maintained with a minimal number of rows, meaning specifically that there will never be two adjacent rows in the table where one would suffice. For example, consider the following serial number table:
1 10 A 1 11 20 A 1 21 30 B 1
The first two rows could actually be represented by a single row, meaning that the table above does not have a minimal number of rows. The same data represented by a minimal number of rows would look like this:
1 20 A 1 21 30 B 1
The following table, however, because the first two rows have non-matching transfer codes, already contains the minimal number of rows:
1 10 A 1 11 20 A 2 21 30 B 1
Similarly, the following table cannot be reduced further because the first two rows do not represent a continuous series of serial numbers:
1 10 A 1 12 20 A 1 21 30 B 1
Input
Each input case begins with a single line that is a character string naming the test case. This string contains at most 80 characters. The name "END" marks the end of the input. Following this will be 1 to 100 lines of the form "A B S T", where A, B, and T are integers in the range 1 to 2 31 -1, S is an uppercase letter, and A<=B. These lines are, in the order they are to be applied, the serial number transactions to be recorded, where A is the start of the serial number range, B is the end of the serial number range, S is the status code, and T is the transfer code. The list of serial number transactions is terminated by a line containing only a 0 (zero) character.
Output
For each input case, echo the test case name to the output on a line by itself, followed by the resulting minimal-rows serial number table that results after all serial number transactions have been applied.
Example
Input: First Example 1 100000 A 1 12345 12345 B 1 0 And Another 1 100000 A 1 12345 12345 B 1 12000 12999 A 2
12345 12345 B 2 0 Test Case Three 1 100000 A 1 12345 12345 B 1 12000 12999 A 2 12345 12345 B 2 10000 100000 C 2 0 Example Four 1 100000 A 1 12345 12345 B 1 12000 12999 A 2 12345 12345 B 2 10000 100000 C 2 1000000 1999999 Z 99 0 Example 5 1 10 A 1 21 30 B 1 11 20 A 1 0 Example 6 21 30 B 1 1 10 A 1 11 20 A 2 0 Example 7 12 20 A 1 21 30 B 1 1 10 A 1 0 END
Output: First Example 1 12344 A 1 12345 12345 B 1 12346 100000 A 1 And Another 1 11999 A 1 12000 12344 A 2 12345 12345 B 2 12346 12999 A 2 13000 100000 A 1 Test Case Three 1 9999 A 1 10000 100000 C 2 Example Four 1 9999 A 1 10000 100000 C 2 1000000 1999999 Z 99 Example 5 1 20 A 1 21 30 B 1 Example 6 1 10 A 1 11 20 A 2 21 30 B 1
Example 7 1 10 A 1 12 20 A 1 21 30 B 1
Added by: Nikola P Borisov Date: 2008-11-07 Time limit: 10s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2008
3314. Umnozak
Problem code: UMNOZAK
The digit-product of a positive integer is the product of the numbers decimal digits. For example, the digit-product of 2612 is 2 . 6 . 1 . 2 = 24. The self-product of a number is the product of the number and its digit-product. For example, the self-product of 2612 is 2612 . 24 = 62688. Write a program that, given two positive integers A and B (1 <= A <= B < 10 18 ), calculates the number of positive integers whose self-product is between A and B, inclusive.
Input
The first line of input contains the integer T (1 <= T <= 20). The next T lines each contain a pair of integers A and B.
Output
For each test case, print a line with the number of positive integers whose self-product is between A and B.
Example
Input: 3 20 30 145 192 2224222 2224222 Output: 2 4 1
For the second example, the self-products of the numbers 19, 24, 32, and 41 are 171, 192, 192 and 164, respectively. Added by: Neal Wu Date: 2008-11-08 Time limit: 10s Source limit:50000B Languages: All Resource: Croatian Olympiad in Informatics 2008
Input
The input consists of several test cases. The first line contains an integer T (T <= 20), the number of test cases. The following T lines contain one number B, each.
Output
For each number B, output one or more numbers separated by a blank space that represent the digits in base B (written as decimal numbers) of the smallest number which has this property.
Example
Input: 3 2 10 35 Output: 0 1 0 5 2 6 3 1 5 7 8 9 4 7 3 6 8 4 2 1 11 23
Output explanation
In example #1 The initial number (when converted to decimal system): 0 * 2^1 + 1 * 2^0 = 1 After applying the rotation: 1 * 2^1 + 0 * 2^0 = 2. In example #3
The initial number (when converted to decimal system): 11 * 35^1 + 23 * 35^0 = 408 After applying the rotation: 23 * 35^1 + 11 * 35^0 = 816.
Added by: Reinier Csar Mujica Hdez Date: 2008-11-10 Time limit: 2s Source limit:3072B Languages: All Resource: OCI Olimpiads Cuban in Informatics 2008 day 1
3347. Cestarine
Problem code: HIGHWAY
In a single day, N of Lukas trucks travel a specific highway. The highway has a number of exits and entrances. An exit with a particular number is in the same location as the entrance with that number. Upon entering the highway, a truck driver receives a ticket which indicates the entrance he used. When exiting, the driver pays a toll equal to the absolute difference of the entrance and exit numbers. For example, if a ticket says he used entrance 30, then exiting at exit 12 will cost him 18. Luka has figured out a way to save toll money that his company daily spends. Any two drivers can meet on the highway and exchange tickets, even if their routes dont overlap. Tickets can be exchanged an arbitrary number of times. However, a driver cannot use an exit if his ticket says he used the same entrance, since that would be suspicious. Write a program that calculates the least total amount of tolls that the drivers can achieve by exchanging tickets.
Input
On the first line of the input is the integer T (1 <= T <= 5), the number of test cases. T cases follow, each beginning with the single integer N (2 <= N <= 100,000). Each of the next N lines contains two integers between 1 and 1,000,000,000 inclusive, representing the entrance and exit numbers of a truck. Note that no two trucks will have the same entrance or exit numbers.
Output
For each test case, output the least total amount of tolls Lukas company must pay.
Example
Input: 2 3 3 65 45 10 60 25 3 5 5 6 7 8 8 Output: 32 5
In the first example, the first and third drivers will exchange tickets. After this, the second and third drivers exchange tickets. After this, the drivers will have the tickets 60, 3, 45, respectively. The total amount in tolls is |65 - 60| + |10 - 3| + |25 - 45| = 32. Warning: large input/output data. Added by: Neal Wu Date: 2008-11-13 Time limit: 1s-8s Source limit:50000B Languages: All Resource: Croatian Open 07/08 - Contest 6
3359. Stack
Problem code: STACK
Alan loves to construct a stack of building bricks. His stack consists of many cuboids with square base. All cuboids have the same height 1. Alan puts the consecutive cuboids one over another. Recently in math class, the concept of volume was introduced to Alan. Consequently, he wants to compute the volume of his stack now. The lengths of cuboids bases (from top to bottom) are constructed by Alan in the following way: Length of edge of the first square is one. i.e. a 1 = 1. Next, Alan fixes the length of the edge of the second square a 2 . Next, Alan calculates the length a n (n > 2) by 2*a 2 *a n-1 - a n-2 . Do not ask why he chose such a formula; let us just say that he is a really peculiar young fellow. For example, if Alan fixes a 2 = 2, then a 3 = 7. If Alan fixes a 2 = 1, then a n = 1 holds for all n. Now Alan wonders if he can calculate the volume of stack of N consecutive building bricks. Help Alan and write the program that computes this volume. Since it can be quite large, it is enough to compute the answer modulo given natural number m.
Input
The input contains several test cases. The first line contains the number t (t <= 100000) denoting the number of test cases. Then t test cases follow. Each of them is given in a separate line containing three integers a 2 , N, m (1 <= a 2 , m <= 10 9 , 2 <= N <= 10 9 ) separated by a single space.
Output
For each test case compute the volume of stack of N consecutive bricks constructed by Alan according to steps 1 to 3 and output its remainder modulo m.
Example
Input: 3 2 3 100 1 4 1000 3 3 1000000000 Output: 54 4 299
Warning: large input/output data, be careful with certain languages Warning: A naive algorithm wont terminate in even 2 minutes. Added by: Blue Mary Date: 2008-11-15 Time limit: 43s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Wrocaw 2008
Refer to the figure below if you are unclear about how the digits are drawn. 2) Although the width of strokes used to draw a digit might be different, the outer shapes of digits will strictly follow those specified in the figure below. 3) In order for a digit to be recognizable, all parts (strokes and joints) presented in the graph below must also be clearly distinguishable in the image. (Refer to the last sample test case if you are unsure about this requirement; in that test case, when the middle stroke of 2 is omitted, the number should not be considered as recognizable.) 4) You may assume that the image is not rotated, and there is no noise in the input. [IMAGE] Please output the sum of digits recognizable in the graph. In the case that no characters is recognizable, please output 0 instead.
Input
There are multiple test cases in the input file.
Each test case starts with two integers, R and C (1 <= R,C <= 500), specifying the number of rows / columns of the graph. Each of the following R lines contains consecutive C characters ("0" or "1"), describing the image to be processed. Two successive test cases are separated by a blank line. A case with R = 0, C = 0 indicates the end of the input file, and should not be processed by your program.
Output
For each test case, please print a single integer, the sum of recognizable numbers. See the sample output for format details.
Example
Input: 5 12 001101011111 000101000011 000101001111 001101000011 000000000111 5 3 111 010 110 010 110 6 14 11111000011111 11001000000011 11111001000000 11111001001110 11001011001010 11111000001110 5 2 11 01 11 01 11 6 9 111100111 000100001 000100011 011100010 010000011 011110000 0 0 Output: Case #1: 4
0 15 3 2
Added by: Blue Mary Date: 2008-11-15 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: ACM/ICPC Asian Regional Contest, Hangzhou 2008
3363. Svada
Problem code: SVADA
The local zoo has acquired a large open garden in which animals may freely move as in their natural habitats and entertain visitors with their usual shenanigans. The most popular animals are monkeys. With their climbing and jumping and other skills, they delight old and young visitors alike. One species of monkey has specialized in climbing tall trees and picking off coconuts. Another species has specialized in breaking them open. There are N monkeys of the first type (numbered 1 through N) and M monkeys of the second type (numbered 1 through M). Monkey k of the first type takes Ak seconds to find a good spot on the tree, after which it picks off its first coconut. After that the monkey produces a new coconut every Bk seconds. Monkey k of the second type takes Ck seconds to find a good tool for opening the coconuts, after which it opens its first coconut. After that the monkey opens another coconut every Dk seconds. Unfortunately, the second type of monkey is extremely aggressive so the two types may not be in the garden at the same time. Therefore, zoo keepers will chase away the first type of monkeys as soon as they have picked off all the coconuts. Similarly, if monkeys of the same type stay too long after opening all the coconuts, fights will ensue. Because of that, zoo keepers will send them away as soon as they have opened all the coconuts. The zoo keepers first arrive immediately after all coconuts have been picked, and again immediately after the monkeys open them all. The time needed for monkeys to enter or leave the garden is also negligibly small. Tomislav especially likes the second type of monkey, but can never guess when to arrive in order to see them. Help him calculate the time when the second type arrives if he knows the total time that monkeys spent in the garden, but does not know the number of coconuts in the garden.
Input
The first line contains the integer T (1 <= T <= 1 000 000 000), the total time that monkeys spent in the garden, in seconds. The next line contains the integer N (1 <= N <= 100), the number of monkeys of the first type. Each of the following N lines contains two integers Ak and Bk (1 <= Ak, Bk <= 1 000 000 000), how fast monkey k of the first type is.
The next line contains the integer M (1 <= M <= 100), the number of monkeys of the second type. Each of the following M lines contains two integers Ck and Dk (1 <= Ck, Dk <= 1 000 000 000), how fast monkey k of the second type is.
Output
Output the number of seconds between the arrival of the first type of monkeys and the arrival of the second type.
Example
Input: 20 2 3 2 1 3 3 3 1 4 1 5 1 Output: 13
Added by: Race with time Date: 2008-11-16 Time limit: 1s Source limit:50000B Languages: All Resource: COCI 2008-2009
Input
On the first line there will one integer - N. Two more lines of input follow each with N integers in the range [1, 2N] - the guests waiting in front of door 1 and door 2 respectively. The first people in the list is the first to enter the room.
Output
Single integer the total min number of stand-ups that will happen if we choose the best sequence of letting guest in.
Example
Input: 3 4 5 3 6 2 1 Output: 3
Added by: Nikola P Borisov Date: 2008-11-17 Time limit: 1s-10s Source limit:50000B Languages: All
I, Albert Charles Montgomery, have just discovered the most amazing cypher for encrypting messages. Let me tell you about it. To begin, you will need to decide on a set of symbols, call it S, perhaps with the letters RATE. The size of this set must be a power of 2 and the order of the symbols in S is important. You must note that R is at position 0, A at 1, T at 2, and E at 3. You will also need one permutation P of all those symbols, say TEAR. Finally you will need an integer, call it x. Together, these make up the key. Given a key, you are now ready to convert a plaintext message M of length n (M[0], M[1]... M[n-1]), that has some but not necessarily all of the symbols in S, into a cyphertext string C, also of length n (C[0], C[1],...C[n-1]), that has some but not necessarily all of the symbols in S. The encrypting algorithm computes C as follows: 1. Calculate an integer d as the remainder after dividing the integer part of (n 1.5 + x) by n. This can be expressed more succinctly as d = (int)(n 1.5 + x) % n, where "%" is the remainder operator. 2. Set C[d] to be the symbol in S whose position is the same as the position of M[d] in P. 3. For each j != d in 0..n-1, set C[j] to be the symbol in S whose position is the value obtained by xor-ing the position of M[j] in P with the position of M[(j+1) % n] in S. Note that the bitwise xor operator is "^" in C, C++, and Java. For example, consider this scenario where S=RATE, P=TEAR, x=102, M=TEETER, and n=6. To compute d, first calculate 6 1.5 + 102 = 116.696938, then take the remainder after dividing by 6. So d = 116 % 6 = 2. The following table shows the steps in filling in the cyphertext C. Note that the order of the steps is not important. 0 1 2 3 4 5 S= R A T E P= T E A R M= T E E T E R C= E E T E T A E T A E E T A E A M[0] is T, T is at P[0]. M[1] is E, E is at S[3]. C[0] = S[0 xor 3] = S[3] M[1] is E, E is at P[1]. M[2] is E, E is at S[3]. C[1] = S[1 xor 3] = S[2] 2 is d. M[2] is E, E is at P[1], so C[2] = S[1] M[3] is T, T is at P[0]. M[4] is E, E is at S[3]. C[3] = S[0 xor 3] = S[3] M[4] is E, E is at P[1]. M[5] is R, R is at S[0]. C[4] = S[1 xor 0] = S[1]
E T A E A A M[5] is R, R is at P[3]. M[0] is T, T is at S[2]. C[5] = S[3 xor 2] = S[1] I have included additional examples of encrypted messages at the end of this note for you to experiment with. However, first, I need to tell you about the decryption algorithm. Unfortunately, the next page of the note, with the decrypting algorithm, is completely unreadable because it is covered with huge, overlapping, messy ink blots. Given your considerable skill in unravelling puzzles, your task is to write the decoder based on your knowledge of the encoding algorithm.
Input
The input for the decoder consists of one or more sets of {key, encrypted message} pairs. The key is on 3 separate lines. The first line contains the single integer x, 0 < x < 10,000; the second line contains the string S; and the third line contains the string P, which will be a permutation of S. The length of S (and therefore P) will always be one of the following powers of two: 2, 4, 8, 16, or 32. Following the key is a line containing the encrypted message string C, which will contain at least one and at most sixty characters. The strings S, P, and C will not contain whitespace, but may contain printable characters other than letters and digits. The end of the input is a line which contains the single integer 0.
Output
For each input set print the decrypted string on a single line, as shown in the sample output.
Example
Input: 102 RATE TEAR ETAEAA 32 ABCDEFGHIJKLMNOPQRSTUVWXYZ._!?,; ;ABCDEFGHIJKLMNOPQRSTUVWXYZ._!?, MOMCUKZ,ZPD 1956 ACEHINT_ ACTN_IHE CIANCTNAAIECIA_TAI 0 Output: TEETER HELLO_WORLD THE_CAT_IN_THE_HAT
Added by: Nikola P Borisov Date: 2008-11-17 Time limit: 1s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2004
Input
The first line contains the number of scenarios. Each scenario describes one route and its first line tells you how many steps (3 <= S <= 333) the route has. The next S - 1 lines each contain one consecutive pair of the steps on the route separated by a single space. The name of each step is always a single string of letters.
Output
The output for every scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Then print S lines containing the steps of the route in correct order. Terminate the output for the scenario with a blank line.
Example
Input: 2 4 SwimmingPool OldTree BirdsNest Garage Garage SwimmingPool 3 Toilet Hospital VideoGame Toilet
Added by: Daniel Gmez Didier Date: 2008-11-17 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 - Circuito de Maratones ACIS / REDIS
3375. Stamps
Problem code: STAMPS
Everybody hates Raymond. Hes the largest stamp collector on planet earth and because of that he always makes fun of all the others at the stamp collector parties. Fortunately everybody loves Lucy, and she has a plan. She secretly asks her friends whether they could lend her some stamps, so that she can embarrass Raymond by showing an even larger collection than his. Raymond is so sure about his superiority that he always tells how many stamps hell show.And since Lucy knows how many she owns, she knows how many more she needs. She also knows how many friends would lend her some stamps and how many each would lend. But shes like to borrow from as few friends as possible and if she needs too many then shed rather not do it at all. Can you tell her the minimum number of friends she needs to borrow from?
Input
The first line contains the number of scenarios. Each scenario describes one collectors party and its first line tells you how many stamps (from 1 to 1000000) Lucy needs to borrow and how many friends (from 1 to 1000) offer her some stamps. In a second line youll get the number of stamps (from 1 to 10000) each of her friends id offering.
Output
The output for every scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Then print a single line with the minimum number of friends Lucy needs to borrow stamps from. If its impossible even if she borrows everything from everybody, write impossible. Terminate the output for the scenario with a blank line.
Example
Input: 3 100 6 13 17 42 9 23 57 99 6 13 17 42 9 23 57 1000 3 314 159 265
Added by: Daniel Gmez Didier Date: 2008-11-17 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 - Circuito de Maratones ACIS / REDIS
Input
Write a program that reads data from standard input. Input consist of a line indicating the number of datasets, a blank line, and the datasets separated by a blank line. Each dataset is in two parts. The first part consists of integers, one per line beginning in column 1, representing initial positions of waiting autos. An integer 99 signals the end of this part of the data. The second part consists of integers, in the same format, representing positions vacated. Positions are vacated in the order in which their numbers appear in the second part of the data.
Output
The output of each dataset should consist a series of lines giving, for each initial (waiting) car position, the initial position and the final position of that car based on the description and assumptions stated above. The output lines must appear in the same order as the order of the initial positions given in the input. Print a blank line between datasets.
Example
Input: 1 6 19 17 13
Added by: Daniel Gmez Didier Date: 2008-11-17 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 PUJ - Circuito de Maratones ACIS / REDIS
Input
The first line of the input contains the number of scenarios. Each scenario starts with one line giving the number of bugs (at least one, and up to 2000) and the number of interactions (up to 1000000) separated by a single space. In the following lines, each interaction is given in the form of two distinct bug numbers separated by a single space. Bugs are numbered consecutively starting from one.
Output
The output for every scenario is a line containing "Scenario #i:", where i is the number of the scenario starting at 1, followed by one line saying either "No suspicious bugs found!" if the experiment is consistent with his assumption about the bugs sexual behavior, or "Suspicious bugs found!" if Professor Hoppers assumption is definitely wrong.
Example
Input: 2 3 3 1 2 2 3 1 3 4 2 1 2 3 4
Output: Scenario #1: Suspicious bugs found! Scenario #2: No suspicious bugs found!
Added by: Daniel Gmez Didier Date: 2008-11-17 Time limit: 1s-2s Source limit:50000B Languages: All Resource: 2007 PUJ - Circuito de Maratones ACIS / REDIS
Input
Input is a list of lines with two characters on each line. Your program should end immediately when it encounters a line with two spaces.
Output
The first line of output should contain only Ready. For each pair of characters (prior to a pair of spaces), print the line Mirrored pair if the characters are mirrors, otherwise print the line Ordinary pair.
Example
Input: Fr qp HH db pq Output: Ready Ordinary Mirrored Ordinary Mirrored
Added by: Daniel Gmez Didier Date: 2008-11-17 Time limit: 1s Source limit:50000B Languages: All Resource: 2007 PUJ - Circuito de Maratones ACIS / REDIS
Input
The first line of the input contains a single integer t that indicates the number of test cases. Each test case contains 3 strings, each containing only lowercase characters. The length of each string is between 1 and 60, inclusive.
Output
For each test case, output a line with a single integer that denotes the number of ways that one can construct the third string from the first two strings as described above.
Example
Input: 3 abc abc abc aa aa aa abbcd bccde abcde
Output: 8 10 18
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2008 PUJ - Circuito de Maratones ACIS / REDIS
3380. Tourist
Problem code: TOURIST
A lazy tourist wants to visit as many interesting locations in a city as possible without going one step further than necessary. Starting from his hotel, located in the north-west corner of city, he intends to take a walk to the south-east corner of the city and then walk back. When walking to the south-east corner, he will only walk east or south, and when walking back to the north-west corner, he will only walk north or west. After studying the city map he realizes that the task is not so simple because some areas are blocked. Therefore he has kindly asked you to write a program to solve his problem. Given the city map (a 2D grid) where the interesting locations and blocked areas are marked, determine the maximum number of interesting locations he can visit. Locations visited twice are only counted once.
Input
The first line in the input contains the number of test cases (at most 20). Then follow the cases. Each case starts with a line containing two integers, W and H (2 <= W , H <= 100), the width and the height of the city map. Then follow H lines, each containing a string with W characters with the following meaning: . Walkable area * Interesting location (also walkable area) # Blocked area You may assume that the upper-left corner (start and end point) and lower-right corner (turning point) are walkable, and that a walkable path of length H + W - 2 exists between them.
Output
For each test case, output a line containing a single integer: the maximum number of interesting locations the lazy tourist can visit.
Example
Input: 2 9 7 *........ .....**#. ..**...#* ..####*#. .*.#*.*#. ...#**... *........ 5 5 .*.*. *###. *.*.* .###* .*.*.
Output: 7 8
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 PUJ - Circuito de Maratones ACIS / REDIS
3381. Highways
Problem code: HIGHWAYS
A number of cities are connected by a network of highways. Each highway is bidirectional and connects two cities, with a given travel time. What is the shortest time to get from a given city to another given city?
Input
The first line of input contains the number of test cases. Each test case starts with a line containing the number of cities n (2 <= n <= 100000), the number of highways m (1 <= m <= 100000), the starting city and the ending city. Cities are numbered from 1 to n. Then m lines follow, each describing one highway. The decription consists of the two distinct city numbers and the time in minutes to travel along the highway. The time will be between 1 and 1000.
Output
For each test case output a single line containing the minimum time it takes to get from the start to the destination. If no connection exists, output NONE.
Example
Input: 2 4 2 1 4 1 2 5 3 4 5 4 4 1 4 1 2 5 2 3 5 3 4 5 4 2 6
Output: NONE 11
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: Circuito de Maratones ACIS / REDIS
Input
The input consists of multiple data sets, each in the following format. [IMAGE] The first line of a data set contains a positive integer n, which is the number of the line segments drawn by the wizard. Each of the following n input lines contains four integers x, y, x , and y , which represent the x- and y-coordinates of two points (x, y) and (x , y ) connected by a line segment. You may assume that all line segments have non-zero lengths. You may also assume that n is less than or equal to 100 and that all coordinates are between -50 and 50, inclusive. For your convenience, the coordinate system is arranged so that the monster is always on the origin (0, 0). The wizard never draws lines crossing (0, 0). You may assume that any two line segments have at most one intersection point and that no three line segments share the same intersection point. You may also assume that the distance between any two intersection points is greater than 10^-5 . An input line containing a zero indicates the end of the input.
Output
For each data set, print "yes" or "no" in a line. If a monster trap is completed, print "yes". Otherwise, i.e., if there is a loophole, print "no".
Example
Input: 8 -7 9 6 9 -5 5 6 5 -10 -5 10 -5 -6 9 -9 -6 6 9 9 -6 -1 -2 -3 10 1 -2 3 10 -2 -3 2 -3 8 -7 9 5 7 -5 5 6 5 -10 -5 10 -5 -6 9 -9 -6 6 9 9 -6 -1 -2 -3 10 1 -2 3 10 -2 -3 2 -3 0 Output: yes no
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2008 PUJ - Circuito de Maratones ACIS / REDIS
Input
The input consists of several test cases, one per line. For each test case, the input consist of a sequence of ASCII characters.
Output
For each test case you should print in a single line, and according to the order of the test cases, the total number of palindromes generated by the input sequence of ASCII characters. For your purpose, you should only consider uppercase or lowercase characters appearing in the input; any other character should be ignored in the calculations. Uppercase and lowercase characters are not considered different; for example, A and a should not be considered different. In any case, the total number of palindromes will not exceed the number e^43 , where e is approximately 2.71828. Remember that the empty sequence is a palindrome itself.
Example
Input: A man, a plan, a canal, Panama! arD,R!A B.a.C1/ 12[;. =1 Output: 15120 2 0 1
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 4s Source limit:50000B Languages: All Resource: 2007 U.Nacional - Circuito de Maratones ACIS / REDIS
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 2s Source limit:50000B Languages: All Resource: 2007 U.Nacional - Circuito de Maratones ACIS / REDIS
Input
The input consists of several test cases. Each case (but the last) will begin with a line containing three decimal integers. The first is the number of rows in the maze; the second is the number of columns in the maze; the third is the number of patterns in the list. The first two numbers will be inclusively between 1 and 20; the third will be inclusively between 1 and 10. The integers will be separated by exactly one space and will be followed by one . Immediately following this line will be a number of patterns, equal to the number specified on the first line. Each pattern will consist of r lineas each containing c characters, where r is the number of rows and c is the number of columns indicated on the first line. Each character will be either 0 (indicating no boundary) or 1 (indicating a boundary). Each line will be terminated by , and an extra will follow each pattern. The northwest corner of the first pattern will always be zero, since Luke and Leia will be starting from there. The last case will be three zeros, separated by exactly one space and followed by exactly one . This case is not to be processed; it indicates the end of input.
Output
The output cases are to appear in the same order in wich they appear in the input. Each output case should be of the form Case c: Luke and Leia can escape in s steps. or of the form Case c: Luke and Leia cannot escape. c and s are decimal integers. c in the number of the case being processed (starting with 1) and s is the minimum number of time steps Luke and Leia require to reach the southeast corner. Each line should be terminated by exactly one .
Example
Input: 5 5 1 00000 00000 00000 00000 00000 5 5 2 00000 00000 00000 00000 00000 01110 01110 11111 01110 01110 0 0 0 Output: Case 1: Luke and Leia can escape in 8 steps. Case 2: Luke and Leia cannot escape.
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 U.Nacional - Circuito de Maratones ACIS / REDIS
Input
The input consists of one or more words. All words (except the last) will be inclusively between 1 and 25 letters long and will consist of entirely of capital letters. The last word will be *END* and is not be processed; it simply indicates the end of the input. There may be any number of spaces and characters before, after, and between words.
Output
The output cases are to appear in the same order in wich they appear in the input. For each input case, you are to print either w is a double near palindrome. or w is not a double near palindrome. wichever is appropriate, where w is the input word. Exactly one should follow each output case (meaning there should be no blank lines in the output).
Example
Input: BATMAN CONSTANTINOPLE *END* Output: BATMAN is a double near palindrome. CONSTANTINOPLE is not a double near palindrome.
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 U.Nacional - Circuito de Maratones ACIS / REDIS
Input
The input consists of several lines. Each line (but the last) will contain one positive decimal integer no larger than 10000. This integer is followed by exactly one . These integers represent the number of Knights in the competition. The last line will contain one zero, followed by . This line is not to be processed; it merely signifies the end of the input.
Output
The output cases are to appear in the same order in wich they appear in the input. For each case, you are to print With c competitors, a Jedi Knight will be replaced approximately t times. c is the number of competitors in this case and should be a decimal integer. t is the average number of times a Jedi Knight leaves the circle and should be a floating point decimal number with exactly two digits following the decimal point. There should always be at least one digit before the decimal point (use 0.50 rather .50, for example) The statement should be followed by two s, wich is to say that a blank line should follow every output case.
Example
Input: 3 1000 0
Output: With 3 competitors, a Jedi Knight will be replaced approximately 0.83 times. With 1000 competitors, a Jedi Knight will be replaced approximately 6.49 times.
Added by: Daniel Gmez Didier Date: 2008-11-18 Time limit: 3s Source limit:50000B Languages: All Resource: 2007 U.Nacional - Circuito de Maratones ACIS / REDIS
Input
The first line of the input file contains an integer N, representing the number of men in the tribe. All men are numbered from 1 to N; the chief is number 1. Each of the following lines describe a father-son relation and contains two integers A B separated by a blank, meaning that person number A is the father of the person number B. The relations described in the file are correct (for instance, there are no "cycles" and each person is a descendent of the chief).
Output
The output file should contain a single line with the maximum number of tables that can be occupied.
Example
Input: 5 1 4 3 2 1 3 3 5 Output: 3
2 goes to the first table4 goes to the first table1 has a son (4) at the first table, so he goes to the second table5 goes to the first table3 has two sons at the first table (2 and 5) and his father (1) is at the second table, so he goes to the third table
Constraints
1 < N <= 100 000 Any table has unlimited capacity. Note: The problem statement and test data was updated on 22-11-2008. Im sorry for the inconvenience. Added by: Ajay Somani Date: 2008-11-19 Time limit: 2s Source limit:50000B Languages: All Resource: BOI 2003
Input
Input consists of N test cases (1 <= N <= 1000). The number N is given in the first line of the input. Each test case contains the description of two loops, each one in a line. A description for a p points loop (3 <= p <= 20) is given in one input line with 3p integer numbers separated by blanks: x1 y1 z1 x2 y2 z2 . . . xp yp zp what represents the loop: (x1 , y1 , z1 ) - (x2 , y2 , z2 ) - . . . - (xp , yp , zp ) - (x1 , y1 , z1 ) where there is a straight segment between adjacent coordinates.
Output
For each analyzed case, one line classifying the case: Notknot or Knot.
Example
Input: 3 10 0 0 0 0 -10 0 10 0 0 0 10 5 0 0 -10 -10 0 0 5 0 10 10 0 10 0 0 0 0 -10 0 10 0 0 0 10 15 0 0 -10 -10 0 0 5 0 10 10 0 1 0 0 0 1 0 0 0 1 10 10 0 0 10 0 0 0 10 10 0 0 25 5 0 3 3 0
Added by: Daniel Gmez Didier Date: 2008-11-19 Time limit: 4s Source limit:50000B Languages: All Resource: 2008 U.Catolica & U.Central - Circuito de maratones ACIS / REDIS
Input
The input is composed of at most 255 lines, each containing a single positive integer less than 2^15 , followed by a line containing a single zero. The last line is not a part of the input data.
Output
The output should be composed of lines, each containing a single integer. No other characters should appear in the output. The output integer corresponding to the input integer n is the number of all representations of n as the sum of at most four positive squares.
Example
Input: 1 25 2003 211 20007 0 Output: 1 3 48 7 738
Added by: Daniel Gmez Didier Date: 2008-11-19 Time limit: 2s Source limit:50000B Languages: All Resource: 2008 U.Catolica & U.Central - Circuito de maratones ACIS / REDIS
Input
The input contains several test cases. The first line of a test case contains two integers N (2 <= N <= 500) and M (1 <= M <= 10 4 ), separated by a single space, indicating respectively the number of points in the map and the number of existing one-way routes connecting two points directly. Each point is identified by an integer between 0 and N -1. The second line contains two integers S and D, separated by a single space, indicating respectively the starting and the destination points (S != D; 0 <= S, D < N). Each one of the following M lines contains three integers U, V and P (U != V; 0 <= U, V < N; 1 <= P <= 10 3 ), separated by single spaces, indicating the existence of a one-way route from U to V with distance P. There is at most one route from a given point U to a given point V, but notice that the existence of a route from U to V does not imply there is a route from V to U, and, if such road exists, it can have a different length. The end of input is indicated by a line containing only two zeros separated by a single space.
Output
For each test case in the input, your program must print a single line, containing -1 if it is not possible to match the requirements, or an integer representing the length of the almost shortest path found.
Example
Input: 7 9 0 6 0 1 1 0 2 1 0 3 2 0 4 3 1 5 2 2 6 4 3 6 2 4 6 4 5 6 1 4 6 0 2 0 1 1 1 2 1 1 3 1 3 2 1 2 0 3 3 0 2 6 8 0 1 0 1 1 0 2 2 0 3 3 2 5 3 3 4 2 4 1 1 5 1 1 3 0 1 0 0
Output: 5 -1 6
Added by: Diego Satoba Date: 2008-11-23 Time limit: 2s Source limit:50000B Languages: C C++ 4.0.0-8 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
3406. Bases
Problem code: SAMER08B
What do you get if you multiply 6 by 9? The answer, of course, is 42, but only if you do the calculations in base 13. Given an integer B >= 2, the base B numbering system is a manner of writing integers using only digits between 0 and B -1, inclusive. In a number written in base B, the rightmost digit has its value multiplied by 1, the second rightmost digit has its value multiplied by B, the third rightmost digit has its value multiplied by B 2 , and so on. Some equations are true or false depending on the base they are considered in. The equation 2+2=4, for instance, is true for any B >= 5 - it does not hold in base 4, for instance, since there is no digit 4 in base 4. On the other hand, an equation like 2+2=5 is never true. Write a program that given an equation determines for which bases it holds.
Input
Each line of the input contains a test case; each test case is an equation of the form "EXPR=EXPR", where both "EXPR" are arithmetic expressions with at most 17 characters. All expressions are valid, and contain only the characters +, * and the digits from 0 to 9. No expressions contain leading plus signs, and no numbers in it have leading zeros. The end of input is indicated by a line containing only "=".
Output
For each test case in the input your program should produce a single line in the output, indicating for which bases the given equation holds. If the expression is true for infinitely many bases, print "B+", where B is the first base for which the equation holds. If the expression is valid only for a finite set of bases, print them in ascending order, separated by single spaces. If the expression is not true in any base, print the character *.
Example
Input: 6*9=42 10000+3*5*334=3*5000+10+0 2+2=3 2+2=4
0*0=0 =
Output: 13 6 10 * 5+ 2+
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
3407. Candy
Problem code: SAMER08C
Little Charlie is a nice boy addicted to candies. He is even a subscriber to All Candies Magazine and was selected to participate in the International Candy Picking Contest. In this contest a random number of boxes containing candies are disposed in M rows with N columns each (so, there are a total of M N boxes). Each box has a number indicating how many candies it contains. The contestant can pick a box (any one) and get all the candies it contains. But there is a catch (there is always a catch): when choosing a box, all the boxes from the rows immediately above and immediately below are emptied, as well as the box to the left and the box to the right of the chosen box. The contestant continues to pick a box until there are no candies left. The figure bellow illustrates this, step by step. Each cell represents one box and the number of candies it contains. At each step, the chosen box is circled and the shaded cells represent the boxes that will be emptied. After eight steps the game is over and Charlie picked 10+9+8+3+7+6+10+1 = 54 candies. subir imagenes For small values of M and N, Charlie can easily find the maximum number of candies he can pick, but when the numbers are really large he gets completely lost. Can you help Charlie maximize the number of candies he can pick?
Input
The input contains several test cases. The first line of a test case contains two positive integers M and N (1 <= M N <= 10 5 ), separated by a single space, indicating the number of rows and columns respectively. Each of the following M lines contains N integers separated by single spaces, each representing the initial number of candies in the corresponding box. Each box will have initially at least 1 and at most 10 3 candies. The end of input is indicated by a line containing two zeroes separated by a single space.
Output
For each test case in the input, your program must print a single line, containing a single value, the integer indicating the maximum number of candies that Charlie can pick.
Example
Input: 5 5 1 8 2 1 9 1 7 3 5 2
1 2 10 3 10 8 4 7 9 1 7 1 3 1 6 4 4 10 1 1 10 1 1 1 1 1 1 1 1 10 1 1 10 2 4 9 10 2 7 5 1 1 5 0 0 Output: 54 40 17
Added by: Diego Satoba Date: 2008-11-23 Time limit: 2s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
Input
The input contains several test cases. The first line of a test case contains an integer K representing the minimum length of common segments, where 1 <= K <= 100. The next two lines contain each a string on lowercase letters from the regular alphabet of 26 letters. The length l of each string satisfies the inequality 1 <= l <= 10 3 . There are no spaces on any line in the input. The end of the input is indicated by a line containing a zero.
Output
For each test case in the input, your program must print a single line, containing the length of the longest subsequence formed by consecutive segments of length at least K from both strings. If no such common subsequence of length greater than zero exists, then 0 must be printed.
Example
Input: 3 lovxxelyxxxxx xxxxxxxlovely 1 lovxxelyxxxxx xxxxxxxlovely 3 lovxxxelxyxxxx xxxlovelyxxxxxxx 4 lovxxxelyxxx xxxxxxlovely 0
Output: 6 7 10 0
Added by: Diego Satoba Date: 2008-11-23 Time limit: 10s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
3409. Electricity
Problem code: SAMER08E
Martin and Isa stopped playing crazy games and finally got married. Its good news! Theyre pursuing a new life of happiness for both and, moreover, theyre moving to a new house in a remote place, bought with most of their savings. Life is different in this new place. In particular, electricity is very expensive, and they want to keep everything under control. Thats why Martin proposed to keep a daily record of how much electricity has been consumed in the house. They have an electricity meter, which displays a number with the amount of KWh (kilowatt-hour) that has been consumed since their arrival. At the beginning of each day they consult the electricity meter, and write down the consumption. Some days Martin does it, and some days Isa does. That way, they will be able to look at the differences of consumption between consecutive days and know how much has been consumed. But some days they simply forget to do it, so, after a long time, their register is now incomplete. They have a list of dates and consumptions, but not all of the dates are consecutive. They want to take into account only the days for which the consumption can be precisely determined, and they need help.
Input
The input contains several test cases. The first line of each test case contains one integer N indicating the number of measures that have been taken (2 <= N <= 10 3 ). Each of the N following lines contains four integers D, M, Y and C, separated by single spaces, indicating respectively the day (1 <= D <= 31), month (1 <= M <= 12), year (1900 <= Y <= 2100), and consumption (0 <= C <= 10 6 ) read at the beginning of that day. These N lines are increasingly ordered by date, and may include leap years. The sequence of consumptions is strictly increasing (this is, no two different readings have the same number). You may assume that D, M and Y represent a valid date. Remember that a year is a leap year if it is divisible by 4 and not by 100, or well, if the year is divisible by 400. The end of input is indicated by a line containing only one zero.
Output
For each test case in the input, your program must print a single line containing two integers separated by a single space: the number of days for which a consumption can be precisely determined, and the sum of the consumptions for those days.
Example
Input: 5 9 9 1979 440 29 10 1979 458 30 10 1979 470 1 11 1979 480 2 11 1979 483 3 5 5 2000 6780 6 5 2001 7795 7 5 2002 8201 8 28 2 1978 112 1 3 1978 113 28 2 1980 220 1 3 1980 221 5 11 1980 500 14 11 2008 600 15 11 2008 790 16 12 2008 810 0
Output: 2 15 0 0 2 191
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
3410. Feynman
Problem code: SAMER08F
Richard Phillips Feynman was a well known American physicist and a recipient of the Nobel Prize in Physics. He worked in theoretical physics and also pioneered the field of quantum computing. He visited South America for ten months, giving lectures and enjoying life in the tropics. He is also known for his books "Surely Youre Joking, Mr. Feynman!" and "What Do You Care What Other People Think?", which include some of his adventures below the equator. His life-long addiction was solving and making puzzles, locks, and cyphers. Recently, an old farmer in South America, who was a host to the young physicist in 1949, found some papers and notes that is believed to have belonged to Feynman. Among notes about mesons and electromagnetism, there was a napkin where he wrote a simple puzzle: "how many different squares are there in a grid of N N squares?". In the same napkin there was a drawing which is reproduced below, showing that, for N=2, the answer is 5. subir imagenes
Input
The input contains several test cases. Each test case is composed of a single line, containing only one integer N, representing the number of squares in each side of the grid (1 <= N <= 100). The end of input is indicated by a line containing only one zero.
Output
For each test case in the input, your program must print a single line, containing the number of different squares for the corresponding input.
Example
Input: 2 1 8 0
Output: 5 1 204
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: South American Regional Contests 2008
Input
The input contains several test cases. The first line of a test case contains one integer N indicating the number of cars in the race (2 <= N <= 10 3 ). Each of the next N lines contains two integers C and P, separated by one space, representing respectively a car number (1 <= C <= 10 4 ) and the number of positions that car has won or lost relative to the starting grid ( -10 6 <= P <= 10 6 ), according to the pole system. All cars in a race have different numbers.
Output
For each test case in the input, your program must print a single line, containing the reconstructed starting grid, with car numbers separated by single spaces. If it is not possible to reconstruct a valid starting grid, the line must contain only the value -1.
Example
Input: 4 1 0 3 1 2 -1 4 0 4 22 1 9 1 13 0 21 -2 3 19 1 9 -345 17 0 7 2 2 8 0 5 -2 7 1 1 1 9 1 3 -3 0
Output: 1 2 3 4 -1 -1 5 8 2 3 7 1 9
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# Resource: South American Regional Contests 2008
in order to determine the trajectory of the particle, in polar coordinates. The radius (r) is represented in distance units and the angle (th) in degrees. The time (t) is given in time units and it is always a rational value which can be represented by an irreducible fraction. Your granddaughter knows that in polar coordinates a point has infinite representations. In general, the point (r, th) can be represented as (r, th +-k 360 o ) or ( -r, th +-(2k + 1) 180 o ), where k is any integer. Besides, the origin (r = 0) can be represented as (0, th) for any th. Using these parameters informed by each particle accelerator, your granddaughter wants to determine whether the particles will eventually collide and, if they do, the time when they will collide. After the first collision it is impossible to predict the particles trajectory, therefore, only the first possible collision should be considered. Although your granddaughter is really intelligent and has a deep knowledge of particle physics, she does not know how to program computers and is looking for some notes in her grandfathers (or grandmothers) ICPC notebook (dont forget, she is your granddaughter!). Fortunately for you, there is a note on your notebook which says that you wrote that code during the 2008 ICPC South America Regional Contest (or, to be more specific, this contest).
Input
The input consists of several test cases, one per line. Each test case contains eight integer numbers separated by single spaces, A 1 , B 1 ,C 1 , D 1 , A 2 , B 2 , C 2 , D 2 ( -10 4 <= A 1 , B 1 , C 1 , D 1 , A 2 ,B 2 , C 2 , D 2 <= 10 4 ). The first four input values (A 1 , B 1 ,C 1 , D 1 ) correspond to the four parameters displayed
by the first portable particle accelerator and the following input values (A 2 ,B 2 , C 2 , D 2 ) correspond to the four parameters displayed by the second portable particle accelerator when both particles are thrown. The end of the input is represented by A 1 = B 1 = C 1 = D 1 = A 2 = B 2 = C 2 = D 2 = 0, which should not be processed as a test case, since these are the values displayed by the particle accelerators when a big black hole would be created if the particles were trown. Although the end of input is represented by a line with eight zeroes, note that the number zero is a possible input value.
Output
For each test case, your program must output a line containing two non-negative integers t a and t b separated by a single space. If there is no possibility of collision, t a = t b = 0, otherwise, t a /t b must be an irreducible fraction representing the earliest collision time. Even if the fraction results in an integer value, you still must output the number 1 as the denominator (see samples below).
Example
Input: 1 1 180 0 2 0 180 360 10 10 360 0 -24 18 180 72 5 5 180 0 -12 9 10 40 -9 5 5 180 2 5 5 180 0 0 0 0 0 0 0 0
Output: 1 1 0 0 4 17 0 1
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc SCALA JAVA C# Resource: South American Regional Contests 2008
Input
The input contains several test cases. The first line of a test case contains two integers N and C, separated by one space, indicating respectively the number of cities (1 <= N <= 500) and confederations (1 <= C <= 100) in the country. Each of the next C lines describes a confederation. It starts with one integer K (0 <= K <= N) and then K integers representing the cities which belong to this confederation. All integers are separated by single spaces and cities are numbered from 0 to N -1. Each city will appear at least once and at most twice and no city will be repeated on the same confederation. The end of input is indicated by a line containing two zeroes separated by a single space.
Output
For each test case in the input, your program must print a single line, containing the integer -1 if its not possible to match the requirements or one integer representing the city where Poly the Shoemaker can start his journey. If there are multiple correct answers, print the smallest one.
Example
Input: 4 4 1 3 3 0 1 3 2 0 2 1 2 3 4 1 0 3 0 1 2 1 1 1 2 3 4 1 1 2 1 0 2 0 2 1 2 0 0
Output: 2 -1 1
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# Resource: South American Regional Contests 2008
The winner is the player who first discards all his cards (the game ends after the winner discards his last card). Given the description of the shuffled deck and the number of players, write a program to determine who will win the game.
Input
The input contains several test cases. The first line of a test case contains three integers P, M and N, separated by single spaces, indicating respectively the number of players (2 <= P <= 10), the number of cards distributed to each of the players at the beginning of the game (1 <= M <= 11) and the total number of cards in the shuffled deck (3 <= N <= 300). Each of the next N lines contains the description of one card. A card is described by one integer X and one character S, separated by one space, representing respectively the card rank and the card suite. Card ranks are mapped to integers from 1 to 13 (Ace is 1, Jack is 11, Queen is 12 and King is 13). Card suits are designated by the suits first letter: C (Clubs), D (Diamonds), H (Hearts) or S (Spades). Players are identified by numbers from 1 to P, and sit on a circle, in clockwise direction, 1, 2 ...P, 1. The first PM cards of the deck are dealt to the players: the first M cards to the first player (player 1), the next M to the second player (player 2), and so on. After dealing the cards to the players, the next card on the deck - the (P M + 1)-th card - is used to start the discard pile, and the remaining cards form the stock. The (P M + 2)-th card to appear on the input is the topmost card on the stock, and the last card to appear on the input (the N-th card) is the bottommost card of the stock (the last card that can be drawn). Player 1 is always the first to play (even when the card used to start the discard pile is a Queen). All test cases have one winner, and in all test cases the number of cards in the deck is sufficient for playing to the end of the game. The end of input is indicated by a line containing only three zeros, separated by single spaces.
Output
For each test case in the input, your program must print a single line, containing the number of the player who wins the game.
Example
Input: 2 2 10 1 D 7 D 1 S 3 C 13 D 1 S 5 H 12 D 7 S 2 C 3 2 11 1 S 7 D 11 D 3 D 7 D
3 S 11 C 8 C 9 H 6 H 9 S 3 3 16 1 H 10 C 13 D 7 C 10 H 2 S 2 C 10 S 8 S 12 H 11 C 1 C 1 C 4 S 5 D 6 S 0 0 0
Output: 1 3 2
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# Resource: South American Regional Contests 2008
Input
The input contains several test cases. The first line of a test case contains one integer N indicating the number of vertices of the inscribed polygon (3 <= N <= 10 4 ). The second line contains N integers X i separated by single spaces (1 <= X i <= 10 3 , for 0 <= i <= N -1). Each X i represents the length of the arc defined in the inscribing circle, clockwise, by vertex i and vertex (i+1) mod N. Remember that an arc is a segment of the circumference of a circle; do not mistake it for a chord, which is a line segment whose endpoints both lie on a circle. The end of input is indicated by a line containing only one zero.
Output
For each test case in the input, your program must print a single line, containing the minimum number of vertices that must be removed from the given polygon to form a regular polygon. If it is not possible to form a regular polygon, the line must contain only the value -1.
Example
Input: 3 1000 1000 1000 6 1 2 3 1 2 3 3 1 1 2 10 10 40 20 30 30 10 10 50 24 26
Output: 0 2 -1 5
Added by: Diego Satoba Date: 2008-11-23 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# Resource: South American Regional Contests 2008
Input
The input consists of one or more data sets, followed by a line containing only 0 that signals the end of the input. Each data set is on a line by itself and contains a sequence of three or more blank-separated positive integers, in the format w, n, d 1 , d 2 , d 3 , ..., d n , where w is the width of the box, n is the number of disks, and the remaining numbers are the diameters of the disks, in the order in which they fall into the box. You can assume that w < 100, that n < 10, and that each diameter is less than w.
Output
For each data set, output a single line containing the height of the pile of disks, rounded to two places beyond the decimal point. The example data matches the illustrations above.
Example
Input: 10 3 5 2 3 8 2 5 5 11 3 10 2 4 9 3 4 4 6 10 6 5 4 6 3 5 2 0 Output: 5.00 9.00 12.99 9.58 14.19
Added by: Nikola P Borisov Date: 2008-11-24 Time limit: 60s Source limit:50000B Languages: All Resource: Mid-Central Regional ACM-ICPC Contest 2006
Input
The input consists of several test cases. For each test case, there will be a line containing two integers n and k (1<=n<=15; 0<=k<2^n). The end of the input file is indicated by a line containing two zeros. Dont process that line.
Output
For each test case, output o(n;k) on a line by itself.
Example
Input: 2 0 2 1 2 2 2 3 0 0 Output: 0 1 3 2
Added by: Daniel Gmez Didier Date: 2008-11-24 Time limit: 3s Source limit:50000B Languages: All Resource: PUJ Internal Contest
3436. Histogram
Problem code: HIST2
In statistics, a histogram is a graphical display of tabulated frequencies, shown as bars. It shows what proportion of cases fall into each of several categories. It is a polygon composed of a sequence of rectangles aligned at a common base line. In this problem all rectangles have a width of unit length. But their heights are distinct. Some permutation of the heights will give the maximum perimeter. Your task is to find the maximum perimeter of the histogram and the number of permutations that give the maximum perimeter. [IMAGE] In the image Figure (a) shows a histogram with heights {1,2,3,4} (1st sample testcase) and has a perimeter of 16 units. Figure (b) shows one of the permutations {3,1,2,4} having the maximum perimeter of 20 units.
Input
Input consists of multiple test cases. Each test case describes a histogram and starts with an integer N, 2 <= N <= 15, denoting the number of rectangles it is composed of. Next line consists of N space separated positive integers representing the heights of the rectangles. All heights are distinct and less than or equal to 100. N=0 indicates the end of tests. There are atmost 50 test cases.
Output
For each test case output the maximum possible perimeter of the histogram and the number of permutations that give maximum perimeter in a single line, separated by a single space.
Example
Input: 4 1 2 3 4 3 2 6 5 0 Output: 20 8 24 2
Added by: u.swarnaprakash Date: 2008-11-29 Time limit: 4s Source limit:50000B Languages: All Resource: Kurukshetra 09 OPC
3459. SkyScrapers
Problem code: CEPC08B
In a seaside village, there is an avenue of skyscrapers. Each skyscrapers is 100m wide and has certain height. Due to very high price of parcels, any two consecutive skyscrapers are adjacent. The avenue lies close to the beach so the street is exactly at the sea level. Unfortunately, this year, due to the global warming, the sea level started to increase by one meter each day. If the skyscraper height is no greater than the current sea level, it is considered flooded. A region is a maximal set of non-flooded, adjacent skyscrapers. This term is of particular importance, as it is sufficient to deliver goods (like current, carrots or cabbages) to any single skyscraper in each region. Hence, the city major wants to know how many regions there will be in the hard days that come. An example of an avenue with 5 skyscrapers after 2 days is given below. [IMAGE]
Input
The input contains several test cases. The first line contains an integer t (t <= 15) denoting the number of test cases. Then t test cases follow. Each of them begins with a line containing two numbers n and d (1 <= n, d <= 10 6 ), n is the number of skyscrapers and d is the number of days which the major wants to query. Skyscrapers are numbered from left to right. The next line contains n integers h 1 , h 2 , . . . , hn where 1 <= h i <= 10 9 is the height of skyscraper i. The third line of a single test case contains d numbers t j such that 0 <= t 1 < t 2 < . . . < t d-1 < t d <= 10 9 .
Output
For each test case output d numbers r 1 , r 2 , . . . , r d , where r j is the number of regions on day t j .
Example
Input: 2 3 3 1 2 3 1 2 3 5 3 1 3 5 1 3 0 2 4
Output: 1 1 0 1 2 1
Added by: Robert Rychcicki Date: 2008-12-06 Time limit: 10s Source limit:50000B Languages: All Resource: Central European Regional Contest 2008
Only the fact that a certain amount of parts is dedicated to a certain nation will influence voting behaviour: the exact part dedication sequence in the total act is not of interest here. Dustin wants to use this knowledge (which no other Cacophonean producer has) to produce a smashing act, yielding as much points in the overall results as possible. You are asked to determine what the largest possible overall point score is he can obtain for an act, when he optimally exploits the described act-changing practices.
Input
The first line of input consists of the integer number n, the number of test cases; Then, for each test case: A line with an integer number s (1 < s <= 100), indicating the number of participating nations in the song contest; Then, for each nation: (1) A line containing: (1.1) A string c (not containing any spaces) with the nations name, followed by a space. Within a test case, there will not be multiple nations sharing the same name; (1.2) A character indicating the nations voting behaviour: q if the voting behaviour is quality-motivated and p if the behaviour is politically motivated. (2) A line containing: (2.1) The location of the nations capital, expressed in an (x, y) integer coordinate (-10000 <= x <= 10000, -10000 <= y <= 10000). x and y are separated by a space. Furthermore, y is followed by a space; (2.2) The actual artistic quality rank q of the nations act. This is a unique number in the range 1...s. After description of each nation: A line with an integer number r (0 < r <= s - 1), indicating to how many nations each nation will attribute points; A line with the name of the nation for which Dustin should produce a song, achieving as much points as possible.
Output
For each test case, the output contains a single line with a single integer number: the maximal amount of points an act can obtain in the overall final score, if act-changing practices were performed in an optimal way.
Example
Input: 2 3 Aulatrias q 0 0 1 Binen q 5 0 2 Cahin q 0 -4 3 2 Cahin 3 Aulatrias p 0 0 1 Binen p 5 0 2 Cahin p 0 -4 3 2 Binen Output: 2 4
Added by: Blue Mary Date: 2008-12-07 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Benelux Algorithm Programming Contest 2008
Input
The first line of input consists of the integer number n, the number of test cases. For each test case: A line with the integer number r (2 <= r <= 10000), the number of ramps the park will place; A line with the integer number m (0 <= m <= 200000000), the number of cubic meters of concrete the park has money for; r lines with two numbers, l and t (0.00 <= l <= t <= 100.00), separated by one space, the minimum and maximum height in meters of the r-th ramp. You may assume all ramps are made entirely of concrete, and shaped as 1 meter wide prisms, with a triangle with two equal sides as base. A series of ramps within the given constraints and using all concrete is guaranteed to exist.
Output
For each test case, the output contains one line with two numbers, separated by one space: the minimum difference between the highest and lowest ramp and the maximum difference between the highest and the lowest ramp. These numbers are rounded to two decimals.
Example
Input: 1 3 36 1.00 4.00 1.00 4.00 1.00 4.00 Output: 0.00 3.00
Added by: Blue Mary Date: 2008-12-07 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Benelux Algorithm Programming Contest 2008
3463. Robintron
Problem code: ROBIN
It is during the great war in the year 2240 that the Robinson family decides to leave the human empire, in search for more peaceful and quiet places. The Robinsons already have a planet in mind to which they wish to travel and want to get there as soon as possible. However, because all vehicles capable of spaceflight are being used for the war, the Robinson family has no way to escape to other planets by means of ordinary spaceflight. It is therefore that Joe Robinson, the father of the family, created the Robintron. The Robintron is a vehicle that is capable of travelling from one planets surface to another by only using the forces of gravity. It is the gravitational pull of a planet that keeps the Robintron on a planets surface. This pull extends as far as the planets gravity well, a circular area around the center of the planet, which is generated by the planets mass. However, these gravity wells can also be used to assist the Robintron in leaving a planet by the way of planet hopping. Planet hopping can be performed when the Robintron is on the surface of a planet and comes within the area of another planets gravity well. The Robintron uses the other planets gravity well to gain enough momentum to escape into space, and to land on the other planets surface. Leaving a planet and subsequently landing on another one takes no significant amount of time. Planet hopping has some disadvantages. The Robintron must be within the gravity well of a planet other than the one it resides on, to be able to effectively use it for planet hopping. However, as the planets rotate around a star (which they all do in perfectly circular orbits), their position continuously changes according to their rotational speed. Thus, it can take up some time for the Robintron to enter the gravity well of a particular planet. Also, as soon as the Robintron chooses to enter the gravity well of a planet, it will move along with that planet around the star. Therefore, this could mean that another planets gravity well may never come in reach of the Robintron. Given a list of planets in a star system, a starting position and destination, write a program that determines how many days it will take (using the ceiling function, i.e. ceiling(2.3) = 3) for the Robintron to travel to its destination, given that it travels via the fastest route possible. Because in most star systems all planets are positioned around the star in a disc, only two dimensions have to be taken into account. Also, a planet is assumed to be a single point in space, and the Robintrons coordinates are equal to those of the planet it resides on.
Input
The first line of input consists of the integer number n, the number of test cases; Then, for each test case: A line containing the positive integer number m (0 < m < 1000), the number of planets in the star system (excluding the star which always resides at position [0, 0]);
Per planet a line containing 4 floating-point numbers x (-1e10 <= x <= 1e10) and y (-1e10 <= y <= 1e10), the x-coordinate and y-coordinate of the planet relative to the star at the start of the Robintrons journey respectively; r (0 < r <= 1e5) the radius of the planets gravity well and s (0 <= s <= 2 * Pi) the speed, in radians per day, at which the planet rotates (counterclockwise) around the central star. The numbers are separated by a space. The Robintrons journey always starts at the first listed planet and its destination is always the last listed planet, which is always reachable from the Robintrons starting position. The star (at position [0, 0]) is too hot for the Robintron and cannot be used for planet hopping.
Output
For each test case, the output consists of a line with one integer number: the number of days (rounded up, or 0 if the Robintron can reach its destination immediately) that the Robintron must travel to reach its destination.
Example
Input: 2 3 10.0 0.0 1.0 1.570796325 -13.0 0.0 3.1 3.14159265 17.0 0.0 4.1 0.0 5 10.0 0.0 1.1 1.0 12.0 0.0 1.1 2.0 13.0 0.0 1.1 1.0 0.0 11.0 1.1 3.14159265 14.0 0.0 1.1 1.0 Output: 3 7
Added by: Blue Mary Date: 2008-12-07 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Benelux Algorithm Programming Contest 2008
Input
Multiple test cases. The number of them is given in the very first line. For each test case: The first line contains four integer numbers x a , y a , x b and y b , coordinates of the start and finish intersections. The second line contains a single integer number n (0 <= n <= 1000) which specifies the number of traffic jams. The following n lines describe traffic jams. Each traffic jam is described by five integer numbers x 1,i , y 1,i , x 2,i , y 2,i and t i , where first four numbers are coordinates of the bottom-left and top-right corners of the jammed area (x 1,i < x 2,i , y 1,i < y 2,i ), and t i (10 < t i <= 10 8 ) is the time it takes to travel one block inside this traffic jam. All coordinates are from 0 to 10 8 inclusive. Areas of traffic jams neither intersect nor touch each other. Start and finish points are different and do not lie inside nor on the border of any traffic jam.
Output
For each test case: A single integer - the minimal driving time from intersection a to intersection b.
Example
Input: 1 1 6 15 3 4 2 1 3 7 44 5 2 10 4 33
8 5 11 9 22 12 1 14 8 11 Output: 192
Warning: A naive algorithm may not run in time! Note: In Sphere Online Judge system, "Memory Limit Exceeded" will be shown as "Runtime Error(other)", with the 0.00 second run-time & 92-200k memory used, or "Runtime Error(SIGSEGV)" with 250M memory used. Added by: Blue Mary Date: 2008-12-07 Time limit: 60s Source limit:50000B Languages: All except: C99 strict Resource: ACM Northeastern European Regional Contest 2008
3476. Deposit
Problem code: DEPOSIT
Banks offer deposit schemes of various kinds to attract customers. In an r -year progressively reducing recurring deposit scheme (PRRDS) of a bank, a customer is required to deposit progressively reducing amounts every year for r years. Depending on the duration r of the scheme and the total amount T deposited in r years, the bank offers to return on maturity, i.e., after the expiry of r years, an amount R , which is equal to k times the amount deposited in the first year. The bank ensures that the return R looks attractive by making a suitable choice of k ; k being a natural number. In a PRRDS, the amount to be deposited in each but the last two years is exactly equal to the sum of amounts to be deposited in the next two years. The amounts to be deposited in the last two years, say x in the last year and y in the last but one year, are progressively reducing (x, y > 0;y > x) and are determined so that the total amount deposited in r years is exactly equal to the specified amount T . Assume that all deposits are in whole number of Rupees. Write a program for the bank, so that given r , k and T , the program computes x and y for which the return R is maximum. For example in a 4-year scheme with r = 4 , k = 3 and T = 500 , the progressively reducing recurring deposits 248, 126, 122 and 4, ensures the maximum return R = 744 with x = 4 and y = 122 .
Input
The input may contain multiple test cases. For each test case there is only one input line. The line gives values of r , k and T . Assume that r is not greater than 20. A line containing a zero 0 as the first character follows the last case.
Output
For each test case there is only one output line. The line gives the computed values of x , y and R .
Example
Input 4 3 500 5 3 10000 6 4 8000 8 5 12000 0 Output 4 122 744 5 1425 12855 1 666 13332 1 363 23635
Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2007
3477. Baby
Problem code: BABY
A baby tries to solve the well-known eight-queen puzzle: the problem of placing eight chess queens on an 88 chessboard so that no two queens share the same row, column, or diagonal. The baby understands the concept of row and column quite well but diagonal is not very clear to her. As a result she succeeds placing eight queens on the board so that no two queens share the same row or column but there remains the possibility that some queens share the same diagonal. Given babys queens (a solution by the baby) and a valid eight-queen solution, it is possible to move babys queens to positions of queens in the valid solution. Assume that in a single move, a queen can be moved one unit row-wise or column-wise into an unoccupied position. Write a program to find the minimum number of moves required to move babys queens to positions of queens in the valid solution. The program should be usable for a more general n -queen puzzle where n queens are placed on an nn chessboard, 4 <= n <= 16 . Assume that rows and columns of the chessboard are numbered 1, 2,..., n .
Input
The input consists of multiple test cases. Each case begins with a line containing the integer n . Each of the next two lines contains a sequence of n integers. Integers in the first line represent column numbers of babys queens appearing in rows 1, 2,..., n respectively. In the same way, the second line contains column numbers of queens in the given valid solution. A space separates two consecutive integers in the sequence. A line containing a zero 0 as the first character follows the last case.
Output
For each test case, print the minimum number of moves required.
Example
Sample Input 4 1 2 3 4 3 1 4 2 4 3 2 4 1 3 1 4 2 5 5 3 1 4 2 5 3 1 4 2 5
1 5 2 4 3 3 1 4 2 5 0 Sample Output 6 2 0 8
Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2007
3483. Begin
Problem code: BEGIN
Begin a sequence of distinct natural numbers Ni , i = 0, 1, 2,... , with the number B (= N0) ; generate numbers Ni , i = 1, 2,... , recursively and end the sequence with the last generated number E . The characteristic of numbers and the process for generation are stated below: * Each number in the sequence contains an even number of decimal digits and is of the form f1d1f2d2fk...dk where d1, d2,..., dk , are k distinct digits in increasing order and each fj is a non-zero digit. * For i = 0, 1, 2,... , if Ni = f1d1f2d2...fkdk then Ni+1 = F1D1F2D2...FKDK , where K$ \ge$k ; D1, D2,..., DK , are distinct digits that occur in Ni and appear in increasing order in Ni+1 ; and FJ is the frequency of DJ in Ni , for J = 1, 2,..., K . For example if Ni = 102335 then Ni+1 = 1011122315 . Write a program to find for a given E , the longest sequence of numbers that ends with E and begins with the smallest B . Again consider an example; if E =1011122315 then the required sequence of numbers is 303355 103325 1011122315.
Input
The input may contain multiple test cases. Each test case contains only one input, viz., E . The input terminates when a line containing 0 appears as a test case.
Output
For each test case, print the longest sequence of numbers that ends with E and begins with the smallest B . Use space to separate two consecutive numbers in the sequence.
Example
Sample Input 1011122315 22 112213 0 Sample Output 303355 103325 1011122315 22 13 1113 3113 2123 112213
Added by: Walrus Date: 2008-12-09 Time limit: 1s-10s Source limit:50000B Languages: All Resource: ACM Kanpur 2006
3484. Crossbits
Problem code: CROSSBIT
Crossbits are like Crosswords; instead of entering words you enter binary bits 01 in a Crossbit under certain given conditions, assuming that a solution exists. An empty Crossbit of size N is an empty grid of size NN. Given a natural number N , consider entering N 2 binary bits in an empty Crossbit, satisfying the following conditions: Each square in the grid contains either a 0-bit or a 1-bit with no 1-bit in two major diagonals. The total number of 1-bit in each row / column is exactly equal to K , K being a given natural number less than N. A 0-bit has at least another adjacent 0-bit either in the same row or in the same column. The Crossbit represents the N2 -bit binary number B formed by placing bits in the 1st , the 2nd , ... the Nth row from left to right. You are required to write a program that enters bits in an empty Crossbit so that the Crossbit represents the least binary number B for given N and K . As an illustration consider the case with N = 4 and K = 1 . The Crossbit shown below represents the least binary number B = 0010100000010100 of 16 bits satisfying the specified conditions.
0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0
Input
The input may contain multiple test cases. For each test case parameters N and K of the Crossbit are given in one line. Assume that N does not exceed 10. The input terminates with a line containing 0 as input.
Output
For each test case, print the Crossbit in N rows; each row contains N bits with a space between two neighbouring bits. Keep a blank line after the last output line of each test case.
Example
Sample Input 4 1 6 2 0 Sample Output 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0
Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2006
3486. Elimination
Problem code: ELIM
Elimination of contestants from a live IQ contest on a TV channel is decided in phases. Initially at phase 0, N contestants, where N = 2 n , n < 10 , are selected through a special online IQ contest in which a total of M (M > N) contestants participate. The contestants are identified by distinct registration numbers 1, 2,..., M . The selected contestants are ranked distinctly from 1 to N according to their performance in the online contest. They are qualified to participate in the live contest. In the p th phase, p = 1, 2,..., n, K p contestants participate in the live contest, where K p = 2 n-p+1 . On the basis of response to questions presented during the show, K p /2 of K p contestants are ranked distinctly from 1 to K p /2 . These K p /2 contestants qualify to participate in the next phase. At the n th phase there are only two contestants and the one selected at this phase is the winner of the contest. You are required to write a program that identifies the winner of the contest, given the following information: INFO_1: Registration numbers of N contestants who are selected through the online IQ contest, in order of the rank in the online IQ contest, and INFO_2: A total of N - 1 qualified contestants in different phases; K 2 in phase 1, K 3 in phase 2, ... , and K n+1 in phase n . Qualified contestants of different phases appear in order of phases, i.e., phase 1, phase 2, ... , phase n . Further, qualified contestants in a phase, say phase p , appear in the order of the rank in the phase, i.e., the rank in phase p . A qualified contestant of a phase, say phase p , is identified by his/her rank in the previous phase, i.e., in phase p - 1 .
Input
Input may contain multiple test cases. For each case there are two input lines. The first line gives N integers representing INFO_1 while the second line gives N - 1 integers representing INFO_2. In each input line integers are separated by space. The input terminates with a line containing 0 as input.
Output
For each test case there is only one output line. The line prints the registration number of the winner of the contest.
Sample Input
23 18 6 20 4 2 2 29 57 4 33 5 12 16 18 7 1 5 3 2 1 1 0
Sample Output
18 29
Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2006
Input
Input consists of multiple test cases. For each test case there is only one line of input. It contains a string of at most 100 letters. A line consisting of a single letter terminates input.
Output
For each test case, present output in two lines. The first line gives the two integers m and n defined above. The next line gives the optimum code of top priority, the top-code.
Sample Input
aaaaaa words lexicographic a
Sample Output
2 1 aa aaaa
Kanpur-Kolkata 2004-2005 Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2004
Input
Input consists of multiple test cases. For each test case the first line gives three integers: the case number k, the number of rows m and the number of columns n of the given array. A space appears between two neighbouring integers. Each of the next m lines gives a string of 0s and 1s of length n; the i-th line gives the i-th row of the array. Input terminates with a value zero for case number k.
Output
For each test case, display output in one line. The line contains the case number k and the area of the largest right-angled isosceles triangle hidden in the array. The area is a real number with one digit after the decimal point. If a triangle does not exist then output 0.0 as the area.
Sample Input
1 3 3 101 100 101 2 4 6 001001 010101 111111 000001 0
Sample Output
1 0.0 2 4.0
Kanpur-Kolkata 2004-2005 Added by: Walrus Date: 2008-12-09 Time limit: 1s-3s Source limit:50000B Languages: All Resource: ACM Kanpur 2004
Input
Input consists of multiple test cases. In each test case there is an SBS code. It is given in three input lines containing a certain number of Braille cells. Each Braille cell is represented by a 32 array of 0s and 1s, appearing in an odd and the next even numbered column of the three input lines, where 1 is used for an embossed dot and 0 otherwise. A line that is not a part of an SBS code, containing a single zero in column 1 terminates input.
Output
For each test case, output the SBS code in English, in one line. In case the input does not conform to SBS rules stated above output simply the sign ?.
Sample Input
110010 011100 011110 110110 010100 011110 000011 000101 010110 00001110 00000100 01010110 0
Sample Output
? th5 Tion THE
Kanpur-Kolkata 2004-2005 Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2004
Input
Input may contain multiple test cases. For each test case input is given in one line. It contains an integer k representing the case number and a certain number of strings of clues. The i-th string represents the subset of clues to which the i-th suspect is linked. A space separates two consecutive fields in input.
Output
For each test case, present output in one line. The line contains the case number k and a string of letters. The letters in the string correspond to the clues in D and appear in the order of their selection.
Sample Input
1 cbx cpxb bc brc 2 bac adce cbd d 0
Sample Output
1 2 xpr ab
Kanpur-Kolkata 2004-2005 Added by: Walrus Date: 2008-12-09 Time limit: 1s Source limit:50000B Languages: All Resource: ACM Kanpur 2004
3543. Matrica
Problem code: MATRICA
A matrix is a rectangular table of letters. A square matrix is a matrix with an equal number of rows and columns. A square matrix M is called symmetric if its letters are symmetric with respect to the main diagonal (M i,j = M j,i for all pairs of i and j). For example, the following two matrices are symmetric:
AAB ACC BCC AAA ABA AAA
Given a collection of available letters, you are to output a subset of columns in the lexicographically smallest symmetric matrix which can be composed using all the letters. If no such matrix exists, output "IMPOSSIBLE". To determine if matrix A is lexicographically smaller than matrix B, consider their elements in row-major order (as if you concatenated all rows to form a long string). If the first element in which the matrices differ is smaller in A, then A is lexicographically smaller than B.
Input
The first line of input contains two integers N (1 <= N <= 30000) and K (1 <= K <= 26). N is the dimension of the matrix, while K is the number of distinct letters that will appear. Each of the following K lines contains an uppercase letter and a positive integer, separated by a space. The integer denotes how many corresponding letters are to be used. For example, if a line says "A 3", then the letter A must appear three times in the output matrix. The total number of letters will be exactly N 2 . No letter will appear more than once in the input. The next line contains an integer P (1 <= P <= 50), the number of columns that must be output. The last line contains P integers, the indices of columns that must be output. The indices will be between 1 and N inclusive, given in increasing order and without duplicates.
Output
If it is possible to compose a symmetric matrix from the given collection of letters, output the required columns on N lines, each containing P character, without spaces. Otherwise, output "IMPOSSIBLE" (quotes for clarity).
Example
Input: 3 3 A 3 B 2 C 4 3 1 2 3 Output: AAB ACC BCC Input: 4 5 E 4 A 3 B 3 C 3 D 3 2 2 4 Output: AC BE DE ED Input: 4 6 F 1 E 3 A 3 B 3 C 3 D 3 4 1 2 3 4 Output: IMPOSSIBLE
Warning: large input/output data. Note: The test data for this problem consist of the official test cases from the contest, as well some cases of my own.
Added by: Neal Wu Date: 2008-12-17 Time limit: 1s-1.5s Source limit:50000B Languages: All Resource: Croatian Open 08/09 - Contest 3
Write a program that calculates the value of the counter C after every number is inserted. The counter is initially 0.
Input
The first line contains the integer N (1 <= N <= 300 000), the length of the sequence. The remaining N lines contain the numbers in the sequence, integers in the interval [1, N]. The numbers will be distinct.
Output
Output N integers, each on its own line, the values of the counter C after each number is inserted into the tree.
Example
Input: 8 3 5 1 6 8 7 2 4
Output: 0 1 2 4 7 11 13 15
Warning: large input/output data. Warning: A naive algorithm may not run in time; do not simply implement the above algorithm. Note: The test data for this problem consist of the official test cases from the contest, as well some cases of my own. Added by: Neal Wu Date: 2008-12-17 Time limit: 1s-5s Source limit:50000B Languages: All Resource: Croatian Open 08/09 - Contest 3
3545. Najkraci
Problem code: NAJKRACI
A road network in a country consists of N cities and M one-way roads. The cities are numbered 1 through N. For each road we know the origin and destination cities, as well as its length. We say that the road F is a continuation of road E if the destination city of road E is the same as the origin city of road F. A path from city A to city B is a sequence of road such that origin of the first road is city A, each other road is a continuation of the one before it, and the destination of the last road is city B. The length of the path is the sum of lengths of all roads in it. A path from A to B is a shortest path if there is no other path from A to B that is shorter in length. Your task is to, for each road, output how many different shortest paths containing that road, modulo 1 000 000 007.
Input
The first line contains two integers N and M (1 <= N <= 1500, 1 <= M <= 5000), the number of cities and roads. Each of the following M lines contains three positive integers O, D and L. These represent a one-way road from city O to city D of length L. The numbers O and D will be different and L will be at most 10000.
Output
Output M integers, each on its own line - for each road, the number of different shortest paths containing it, modulo 1 000 000 007. The order of these numbers should match the order of roads in the input.
Example
Input: 4 4 1 2 5 2 3 5 3 4 5 1 4 8 Output: 2 3 2 1 Input: 5 8 1 2 20
1 2 4 4 3 4 5
3 3 2 2 4 3 4
2 2 3 3 5 5 20
Output: 0 4 6 6 6 7 2 6
Note: The test data for this problem consist of the official test cases from the contest, as well some cases of my own. Added by: Neal Wu Date: 2008-12-17 Time limit: 1s-10s Source limit:50000B Languages: All Resource: Croatian Open 08/09 - Contest 3
Input
The first line of the input contains a single integer N (3 <= N <= 100), which is the number of trees in the forest. Each of the next N lines contain two real numbers x and y separated by a space character (-10 6 <= x, y <= 10 6 ), that represent coordinates of one tree. Coordinates are given with at most two decimal digits. There are no three colinear trees.
Output
Output one integer, the maximum number of points a team can score, followed by a newline.
Example
Input: 5 0 0 1.5 -0.25 0 -1 -1 0.5 0.5 1 Output: 4
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 2s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
3577. Parity
Problem code: PARITY
You are given n binary strings s 1 ,...,s n , each of the same length m. Along with each s i you are given a bit b i . You are also given some nonnegative integer k and want to know whether there exists a subset S of {0,1,...,m-1} of size at most k such that for each i=1,2,...,n, the bit b i is the XOR of the bits of s i at the indices in S. The s i are 0-indexed strings. Recall that the XOR of a set of bits is 1 if the number of bits equal to 1 is odd, else the XOR is 0 (in particular, the XOR of an empty set of bits is 0). For example, if s 1 = 1010 and S = {0,3}, then b 1 would be 1 (the first bit of s 1 ) XORd with 0 (the last bit of s 1 ), which is 1. Given n, k, and the strings s 1 ,...,s n and their corresponding b i , find a set S of size at most k which produces the given b i . You should also detect when no such S exists.
Input
The first line contains n and k, space-separated (1 <= n <= 64, 0 <= k <= 10). n lines then follow, where the ith line contains s i , followed by a space, then b i . In a given test case all strings s i are of the same length m (1 <= m <= 50). k will not be bigger than m.
Output
If no set S of size at most k exists producing the given b i , output -1 followed by a newline. Otherwise, on the first line output the size of a possible S. If the size of that S is not 0, on the second line, output a space-separated list of the indices in S, followed by a newline. If there exist multiple valid S to be output, you can output any one of your choosing.
Example
Input: 3 1 111 1 001 0 011 1 Output: 1 1
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 5s-30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
3578. Hashing
Problem code: HASH
Consider the hash function h(y) = a*y + b (mod m) which maps each integer to some integer between 0 and m-1. You are given x,n,c,d and are curious how many of the hash values h(x),h(x+1),...,h(x+n) land in the interval [c,d].
Input
The first line contains a positive integer t, the number of test cases (1 <= t <= 10^5). t lines then follow, where the ith line gives the values a,b,x,n,c,d,m, space-separated, for the ith test case. All given values are non-negative. Also, 1 <= m <= 10 15 , c <= d < m, a,b < m, x+n <= 10 15 , and a*(x+n) + b <= 10 15 .
Output
For each test case in order output the number of i, 0 <= i <= n, such that c <= a*(x+i) + b (mod m) <= d in that test case, followed by a newline.
Example
Input: 2 2 3 1 3 0 1 7 1 0 0 8 0 8 9 Output: 1 9
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
Input
The input file will contain multiple cases. The first line of each case is K N, where K is the number of routes you need to find and N is the number of intersections in MITs floor plan. The intersections are numbered 1,...,N. This is followed by N lines, one for each intersection, containing the indices of the adjacent intersections, separated by spaces. (This means that if the line for intersection 2 contains a 3, then the line for intersection 3 will contain a 2.) Every intersection is adjacent to at least one other intersection. Each case is followed immediately by the next case. The end of the input is indicated by a line containing only "0 0". You may assume that 1 <= K <= 100 and 2 <= N <= 5000. The students all start at intersection 1 and their class is at intersection 2.
Output
For each case, output the case number, in the format "Case #:", followed by a newline. If there are K non-intersecting routes from the start (1) to the end (2), then this must be followed K lines, each one giving a list of corners, in order, on one such route from 1 to 2. If not, then output one line with the word "Impossible". Output a blank line after each test case.
Example
Input: 3 5 3 4 5 3 4 5 1 2 1 2 1 2 4 5 3 4 5 3 4 5 1 2 1 2 1 2 0 0 Output: Case 1: 1 3 2 1 4 2
1 5 2 Case 2: Impossible
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
3580. Company
Problem code: COMPANY
In Plumsoft company, there is a hierarchy among employees, i.e. some of them are bosses to the others. Person A is in charge of person B if there is a sequence of employees P 1 = A, P 2 , ..., P k = B, such that P 1 is P 2 s boss, P 2 is P 3 s boss, ..., and P k-1 is P k s boss. As Plumsoft is a pretty sane company, you can assume that no two employees can be in charge of each other. The management wants to cut the costs of meetings (they eat a lot of food), so they plan to minimize the number of "A is boss of B" relations by keeping only some of the existing ones. However they want to keep all "A is in charge of B" relations. Please, help them to successfully make this transition.
Input
The first line of the input contains two integers N and M separated by a space character (1 <= N <= 1000, 1 <= M <= 10000). N is the number of employees, and M is the number of "boss" relations in the company. Employees are labeled with numbers 1 through N. Each of the next M lines contain two labels A and B separated by a space character, meaning that A is a boss of B.
Output
In the first line of the output, write a single number M min , which is the minimum number of "boss" relations that the company has to keep. In the next M min lines write the relations that are kept. In each line, write two labels A and B separated by a space character, meaning that A is still a boss of B. If there are multiple solutions, write any of them. Relations can be listed in any order. Each line of the output should be followed by a newline.
Example
Input: 5 8 3 5 1 4 4 3 1 3 4 5 1 2 1 5 2 3 Output: 5 3 5 1 4 4 3 1 2 2 3
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 2s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
Input
The first line contains n and m separated by a space, the sizes of the trees T and T, respectively (1 <= n,m <= 60). The next n lines describe T. On the ith line is a description of the ith node in the tree: its label, the number of children it has, then a list of its children in order from first to last, all space-separated. The next m lines similarly describe T. Labels are nonnegative integers fitting in a 32-bit signed integer. The root of each tree is the node which is not the child of any other node in the tree.
Output
On a single line output the minimum number of operations that can be performed on T to make it equivalent to T, followed by a newline.
Example
Input: 3 2 6 0 1 2 0 2 4 0 2 1 1 4 0 Output: 2
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 2s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
Input
The input file will contain multiple cases. The first line of each case is N, the number of people at the table. This is followed by N lines, one for each i (- [1,N], containing xi c i,1 c i,5 c i,10 c i,25 c i,100 c i,500 c i,1000 c i,2000 c i,5000 c i,10000
where x i is the amount in cents that person i owes and c i,v is the number of coins or bills worth v cents that person i starts out with. For example, person 1 has c 1,1 pennies, c 1,5 nickels, etc. Each case is followed immediately by the next case. The end of the input is indicated by a line containing only a zero. You may assume that no person owes more money than they have (i.e. x i <= S j j*c i,j ) and that the total amount of money in cents that everyone starts with fits in a signed 32-bit integer. You may also assume that N <= 100000.
Output
For each case, output the case number, in the format "Case #:" (where # is the case number, starting at 1), followed by a space, followed by "YES" if all of the money can be rearranged so that each person ends up paying the correct amount and "NO" if not.
Example
Input: 1 10 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 500 0 0 0 0 0 1 0 0 0 0 1 100 4 0 2 3 0 1 0 0 0 0 0 Output: Case 1: YES Case 2: YES Case 3: NO
Added by: Jelani Nelson (Minilek) Date: 2008-12-22 Time limit: 30s Source limit:50000B Languages: All Resource: MIT Individual Contest 2008
Input
Line 1: A single integer: N. Lines 2..N+1: Line i+1 contains a single integer: A i .
Output
Lines 1..N: On line i, print a single integer that is the number of other cows patted by cow i.
Example
Input: 5 2 1 2 3 4 Output: 2 0 2 1 3
The first cow pats the second and third cows; the second cows pats no cows; etc.
Added by: Neal Wu Date: 2008-12-26 Time limit: 5s Source limit:50000B Languages: All except: SCALA Resource: USACO Dec 2008
Input
* Line 1: Six space-separated integers: N, R, BX, BY, BVX, and BVY * Lines 2..N+1: Line i+1 contains four space-separated integers: X_i, Y_i, VX_i, and VY_i
Output
* Line 1: Print a single integer denoting the maximum number of cattle bruisers within attack range at any point in time.
Example
Input: 3 0 1 1 1 0 0 0 2 -3 0 4 2 -1 1 -2 2 -1
Input details:
Bessie starts at point (0, 0) and is moving at 2 units per second in the (positive) y-direction. There are 3 cattle bruisers, the first of which starts at point (0, -3) and travels 4 units per second in the y-direction. The maximum distance for a cattle bruiser to be in range of Bessie is 1 unit.
Output: 2
Output details: At time 1.5, Bessie is at point (0, 3), and the three bruisers are at points (0, 3), (-0.5, 3.5), and (4, -3.5). The first two cattle bruisers are within 1 unit of Bessie, while the third will never be within 1 unit of Bessie, so 2 is the most achievable. Added by: Mir Wasi Ahmed Date: 2009-01-07 Time limit: 1s Source limit:50000B Languages: All Resource: USACO Holiday Special Contest 2009, Problemsetter - Neal Wu
Input
* Line 1: Three integers: C, T, and K. * Lines 2..C+1: Each line of space-separated integers describes which toppings one of the calves likes. The first integer on a line is the number of topping the calf likes. The remaining integers on the line are the toppings that the calf likes.
Output
* Line 1: A single integer, the maximum number of calves that can be fed.
Example
Input: 3 2 1 1 2 1 2 1 1 2
Input details:
There are three calves. Pizza Farm has two toppings and each pizza must have exactly one topping. The first calf likes both of the toppings, the second calf likes only the first topping, and the third calf likes only the second topping.
Output: 2
Output details: There are only two pizzas that can be made: a pizza with topping 1 and a pizza with topping 2. If the first pizza is given to the first calf (since she likes topping 1) and the second pizza to the third calf (since she likes topping 2), two calves will be fed. There is no way to feed all three calves. Added by: Mir Wasi Ahmed Date: 2009-01-07 Time limit: 1s Source limit:50000B Languages: All Resource: USACO 2004 March Green Division, Problemsetter - Hal Burch
Input
The first line of input consists of an integer N representing the length of the sequence. Next line consists of N space separated integers A[i]. Next line contains an integer Q, Q <= 10^5, representing the number of operations. Next Q lines contain the operations.
Output
Output the maximum sum mentioned above, in a separate line, for each Query.
Example
Input: 5 1 2 3 4 5 6 Q 2 4 Q 2 5 U 1 6 Q 1 5 U 1 7 Q 1 5 Output:
7 9 11 12
Warning: large Input/Output data, be careful with certain languages Added by: u.swarnaprakash Date: 2009-01-10 Time limit: 2s-4s Source limit:50000B Languages: All Resource: Kurukshetra 09 OPC
Input
There will be multiple test cases. Each test case starts with two integers p ( p < 2 31 ) and n (1 <= n <= 100 ) separated by a space on a single line. p is the prime number we want to use and n is the number of candidates we need to check. Then n lines follow each containing a single integer to check. An empty line follows each test case and the end of test cases is indicated by p=0 and n=0 and it should not be processed. The number of test cases is atmost 60.
Output
For each test case print "YES" (quotes for clarity) if r is a primitive root of p and "NO" (again quotes for clarity) otherwise.
Example
Input: 5 2 3 4 7 2 3 4 0 0
Explanation
In the first test case 3 1 , 3 2 , 3 3 and 3 4 are respectively 3, 4, 2 and 1 (mod 5). So, 3 is a primitive root of 5. 4 1 , 4 2 , 4 3 and 4 4 are respectively 4, 1, 4 and 1 respectively. So, 4 is not a primitive root of 5. Added by: u.swarnaprakash Date: 2009-01-14 Time limit: 3s Source limit:50000B Languages: All Resource: Kurukshetra 09 OPC
Input
There will be multiple test cases in the input. For our convenience the family members are numbered from 1 to n. Each test case begins with a line containing two integers n ( 1 <= n <= 1000 ) and C ( 0 <= C <= 1000 ), where n is the number of people in the family and C the maximum capacity of the ride in kilograms. The next line contains n space separated integers with the ith integer giving the weight of the i th family member. These weights are positive and less than or equal to 200 kilograms. Then n lines follow. Each line contains a sequence of integers separated by spaces. The first integer k i gives the number of people in the family person i likes, followed by the persons i likes. An empty line separates each test case. The end of input is indicated by n=0 and C=0 and it should not be processed.There are atmost 50 test cases.
Output
For each test case output on a separate line the maximum number of persons that can take the ride under the given conditions.
Example
Input: 5 200 50 50 50 50 50 1 2 1 3 0 1 5 1 4 3 200 100 100 100 1 2 1 3
1 1 0 0 Output: 3 0
Added by: u.swarnaprakash Date: 2009-01-16 Time limit: 5s Source limit:50000B Languages: All Resource: Kurukshetra 09 OPC
Input
There will be multiple test cases in the input. The input begins with a line containing a single integer n,n <= 300, which gives the number of test cases. Then n lines follow each containing the three integers I, 1 <= I <= 10 6 , d, 1 <= d <= 10 5 , and C, 1 <= I <= 10 6 , in that order separated by spaces. d is in kilometers.
Output
For each test case print on a separate line the maximum number of cows that can be transported to the destination village under the given conditions.
Example
Input: 2 3000 1000 1000 30 10 10
Output: 533 5
Note: A few test cases have been added and this problem has been rejudged on January 25th, 2009.
Added by: u.swarnaprakash Date: 2009-01-17 Time limit: 5s Source 50000B limit: Languages: All Kurukshetra 09 Resource: OPC
Input
The first line of standard input contains the three integers N, A, and B. The following N lines contain S 1 through S N , in order.
Output
Print a single integer to standard output representing the number of subsets satisfying the above property. Note that the answer may overflow a 32-bit integer.
Example
Input: 3 -1 2 1 -2 3 Output: 5
The following 5 subsets have a sum between -1 and 2: 0 = 0 (the empty subset) 1=1 1 + (-2) = -1 -2 + 3 = 1 1 + (-2) + 3 = 2 Added by: Neal Wu Date: 2009-01-19 Time limit: 1s-2s Source limit:50000B Languages: All
3763. George
Problem code: GEORGE
Last week Mister George visited Croatia. Since Mister George is a very important person, while he was in a street, the police disallowed entry to that street, but vehicles that entered the street before Mister George could continue driving. While Mister George was visiting, Luka drove his truck around town. But because of some of the streets being closed off, he couldnt make his delivery in time and almost lost his job. Although it is late now, he is wondering how he could have planned his delivery better i.e. what would have been the least time needed to make his delivery while Mister George was visiting. He knows the route mister George took. The city is modeled with intersections and two-way streets connecting them. For each street, Luka knows how much time he needs to traverse it (mister George needs he same amount of time). For example, if Mister George starts traversing a street during minute 10 and needs 5 minutes to exit it, this street will be blocked during minutes 10, 11, 12, 13 and 14. Luka can enter the street during minutes 9 and earlier, or 15 and later. Write a program that calculates the least amount of time Luka needs to make his delivery, if he starts driving K minutes after the arrival of Mister George.
Input
The first line contains two integers N and M (2 <= N <= 1000, 2 <= M <= 10 000), the number of intersections and the number of streets. The intersections are numbered 1 to N. The second line contains four integers A, B, K and G (1 <= A, B <= N, 0 <= K <= 1000, 0 <= G <= 1000). These are, in order: The intersection where Luka starts; The intersection Luka must get to; The difference in starting times between mister George and Luka (Luka starts at intersection A exactly K minutes after mister George starts his route); The number of intersections on Mister Georges route. The third line contains G integers, the labels of intersections mister George will visit. Every pair of adjacent integers denotes a street he will traverse. That street will exist and Mister George will traverse every street at most once. Each of the following M lines contains three integers A, B and L, meaning that there is a street between intersection A and B, and it takes L minutes to traverse. L will be between 1 and 1000.
Output
Output the least amount of time (in minutes) Luka needs to make his delivery.
Example
Input: 6 5 1 6 20 4 5 3 2 4 1 2 2 2 3 8 2 4 3 3 6 10 3 5 15 Output: 21
Input: 8 9 1 5 5 5 1 2 3 4 5 1 2 8 2 7 4 2 3 10 6 7 40 3 6 5 6 8 3 4 8 4 4 5 5 3 4 23 Output: 40
Croatian Open Competition in Informatics (COCI) - 2007/2008 Contest #6 Added by: Andrs Meja-Posada Date: 2009-01-25 Time limit: 1s Source limit:50000B Languages: All Resource: Croatian Open Competition in Informatics (COCI) - 2007/2008 Contest #6
3791. Street
Problem code: STREET
There are n lots on one side of a street (where n <= 500). We would like to erect at most k apartment buildings on these lots. Each building must occupy an interval of at most t consecutive lots. Moreover, each lot i has a height restriction r[i] (where r[i] <= 100). A building cannot exceed any of the height restriction of any lot on which it is built (that is, the maximal height of the building that can be erected on lot i to j is: H = min{r[i], r[i + 1], ..., r[j]}) Hence, the maximum usable facade space of the building is: H (j - i + 1). We would like to have a program to select at most k non-overlapping intervals to erect the buildings such that the total usable facade space is maximized.
Example 1
Consider a street of length 10. The height restriction of each lot is as follows:
7, 3, 12, 11, 13, 4, 8, 6, 6, 20
Suppose we would like to erect at most k = 2 buildings and each building occu- pies at most t = 4 lots. Then, to maximize the total usable facade space, we choose two intervals r[3..5] = (12, 11, 13) and r[7..10] = (8, 6, 6, 20) (see "Example 1" in the figure below). The maximum usable facade space is 3 * min{12, 11, 13} + 4 * min{8, 6, 6, 20} = 57. Example
Example 2
Suppose we would like to erect at most k = 3 buildings on the same street with the same height restrictions as in Example 1, and each building occupies at most t = 4 lots. Then, to maximize the total usable facade space, we choose three intervals r[3..5] = (12, 11, 13), r[7..9] = (8, 6, 6) and r[10..10] = (20) (see "Example 2" in the figure above). The maximum usable facade space is 3 * min{12, 11, 13} + 3 * min{8, 6, 6} + 1 * 20 = 71.
Input
The input file is as follows: The first line contains three integers n, k, and t separated by a space character, where 1 <= n <= 500, 1 <= k <= n, and 1 <= t <= n. The rest of the nlines contain n positive integers representing the height restriction for the n lots. For Example 1, the input file looks like:
10 2 4 7 3 12 11 13 4 8 6 6 20
The input should be read from the standard input, and your program will be run several times, each one with one of the test cases.
Output
The output file contains an integer which is the maximum usable facade space. For the above example, the output file looks like:
57
National Olympiad in Informatics (NOI) - 2007 Added by: Andrs Meja-Posada Date: 2009-01-31 Time limit: 3s Source limit:50000B Languages: All Resource: National Olympiad in Informatics (NOI) - 2007
3831. Lubenica
Problem code: LUBEN
Children in school are having fun instead of listening to the teacher. With their iPhone devices the children throw watermelons at each other on the Facebook social site. The game started when Goran threw one watermelon at each of his friends during the first class that day. During subsequent classes, all children (including Goran) behaved like this: If they had been hit by an odd number of watermelons during the previous class, they threw exactly one watermelon at each of their friends; If they had been hit by an even number of watermelons (including zero), then they hit each of their friends with two watermelons. The children are numbered 1 through N, Goran obviously being number 1. The friend relationships between the children are also known. Write a program that will calculate the total number of watermelons thrown after H classes.
Input
The first line contains two integers N and H (1 <= N <= 20, 1 <= H <= 1 000 000 000), the number of kids and classes. Each of the following N lines contains a string of N characters 0 or 1. The character (A, B) in this matrix is 1 if children A and B are friends. No child will be their own friend. The input matrix will be symmetric
Output
Output the number of watermelons after H classes.
Example
Input: 5 3 01000 10110 01000 01001 00010 Output: 26
Added by: Race with time Date: 2009-02-08 Time limit: 1s Source limit:50000B Languages: All Resource: COCI 2008/2009 - Contest #5, 7th February 2009
3832. Kruska
Problem code: KRUS
Aladdin has become bored of life at the palace. He has a steady job, his wife Jasmine, kids are on the way and life is becoming monotonous. Prompted by all this, he has decided to have one more adventure before settling down. He has decided to find the Golden Pear, an extremely valuable legendary artifact that no one has been able to find. The desert Aladdin is searching is can be modeled as an NN grid of cells. Rows and columns are numbered 1 through N top to bottom and left to right. Some of the cells in the desert contain wizards that help Aladdins quest in an unusual way. Aladdin starts his quest in the top left corner of the desert on a Monday facing right. His movement involves repeating these steps: 1. If the current cell contains a wizard that is awake, then Aladdin turns 90 degrees left or right, depending on what the wizard says. 2. If moving forward would take Aladdin out of desert, he turns 180 degrees. 3. Aladdin moves forward one cell and it takes him exactly one day. For each wizard we know his location and his activity schedule for each day of the week. The schedule is a string of exactly seven letters L, R or S, each character telling us what the wizard does on one day of the week (starting with Monday). The letter L means that Aladdin will be told to turn left, R that Aladdin will be told to turn right, while S means the wizard sleeps that day. An old prophecy says that after K changes in direction (in steps 1 and/or 2) Aladdin will find the Pear. Write a program that calculates how many days the search will last, according to the ancient prophecy.
Input
The first line contains two integers N and K (2 <= N <= 200, 1 <= K <= 1 000 000 000), the size of the desert and the number of direction changes in the prophecy. The second line contains an integer M (0 <= M <= 10 000), the number of wizards. Each of the following M lines contains two integers R and C (1 <= R, C <= N), and a string of seven letters L, R or S. The numbers represent the row and column where the wizard is located, while the string is his schedule. No two wizards will share the same cell, nor will there be a wizard in cell (1, 1).
Output
Output the length of the search in days.
Example
Input: 5 2 2 1 3 RRSRRRR 1 5 RRRRLRR Output: 4
Added by: Race with time Date: 2009-02-08 Time limit: 1s Source limit:50000B Languages: All Resource: COCI 2008/2009 - Contest #5, 7th February 2009
3833. Tresnja
Problem code: TRES
Lana lives in a small but merry village. There is a row of cherry trees next to the main street. Lana numbered the trees with consecutive integers starting with 1. After much studying, Lana noticed that the number of the tree uniquely determines the amount of cherries the tree gives. For one tree, consider consecutive groups of digits in the trees number. For each group of digits, multiply the digit by the square of the length of the group. Adding these numbers for all groups gives the total number of cherries the tree gives. For example, in tree number 77744007, the groups are 777, 44, 00 and 7. The amount of cherries will be 7.3^2 + 4.2^2 + 0.2^2 + 7.1^2 = 86 units. The time has come to pick the cherry trees and the villagers have agreed to pick all trees numbered A through B (inclusive). Write a program that will calculate the total amount of cherries picked.
Input
Input consists of two integers A and B (1 <= A <= B <= 10^15), the first and last trees to be picked.
Output
Output a single integer, how many units of cherries will be picked.
Example
Input: 100 111 Output: 68
Added by: Race with time Date: 2009-02-08 Time limit: 1s Source limit:50000B Languages: All Resource: COCI 2008/2009 - Contest #5, 7th February 2009
Input
First line: N (1 <= n <= 50) - In the i-th line of the next n lines contains 3 integers Xi, Yi and Ri, separated by spaces. These are the coordinates of the center and the radius of the i-th circle (-10000<=Yi-Ri,Yi+Ri,Xi-Ri,Xi+Ri<=10000)
Output
The total area that these N circles cover with 5 digits after decimal point
Example
Input: 2 5 6 3 5 5 5 Output: 78.53982
Added by: Phenomenal Date: 2009-02-14 Time limit: 3s Source limit:50000B Languages: All Resource: IOICAMP
3865. Reljef
Problem code: RELJEF
Two groups of cavemen got into a land dispute and decided to settle it the old fashion-way, by throwing sticks at each other. The fight was organized in a cave, high enough that the ceiling is of no concern, but mineral deposits on the ground get in the way of flying sticks. The cave can be divided into R rows and C columns, so that the entire cave consists of RC cells. Each cell in the cave is either empty or contains a chunk of mineral. Two chunks of minerals are part of the same cluster if they are adjacent in one of the four main directions (up, down, left, right). One group of cavemen is on the left side of the cave, the other on the right side. The groups alternate throwing sticks at the other group; first a group chooses the height at which the stick will fly and then (climbing on each others shoulders as necessary) they throw it and the stick flies horizontally through the cave at the chosen height. If the stick hits a chunk of mineral on the way, it destroys the chunk, the cell becomes empty and the stick stops its journey. When a chunk is destroyed, it is possible that a cluster falls apart. If a newly created cluster would float in the air, then it falls down because of gravity. While falling, the cluster does not change shape i.e. all chunks in it fall together. As soon as some chunk in the falling cluster lands on a chunk from a different cluster or the ground, the entire cluster stops falling. Of ourse, if a cluster lands on another, they merge and become one. Your program will be given the layout of minerals in the cave and the heights at which sticks were thrown. Determine the layout of minerals after the sticks are exchanged.
Input
The first line contains two integers R and C (1 <= R, C <= 100), the dimensions of the cave. Each of the following R lines will contain C characters. The character . represents an empty cell, while the letter x represents a chunk of mineral. The next line contains an integer N (1 <= N <= 100), the number of sticks thrown. The last line contains N integers separated by spaces, the heights at which sticks were thrown. All heights will be between 1 and R (inclusive), with height 1 being the bottom of the matrix and height R the top. The first tick is thrown left to right, the second right to left and so on. No cluster will initially float in the air. Also, the input data will be such that at no point will two or more clusters fall simultaneously, so that there will be no ambiguous situations.
Output
The output should consist of R lines, each containing C characters, the final layout of the cave, in the same format as in the input.
Example
Input: 8 8 ........ ........ ...x.xx. ...xxx.. ..xxx... ..x.xxx. ..x...x. .xxx..x. 5 6 6 4 3 1 Output: ........ ........ ........ ........ .....x.. ..xxxx.. ..xxx.x. ..xxxxx.
Added by: Race with time Date: 2009-02-15 Time limit: 1s Source limit:50000B Languages: All Resource: COCI 2008/2009 - Croatian Regional
Input
The first line of input file contains the number of strings n. The following n lines describe each string: The i+1-th line contains the length of the i-th string li, then a single space and a string of li small letters of English alphabet. You can assume that the total length of all strings will not exceed 2,000,000. Two strings in different line may be the same.
Output
Print out only one integer, the number of palindromes.
Example
Input: 3 1 a 2 bb 2 aa
Added by: Phenomenal Date: 2009-02-15 Time limit: 5s-7s Source limit:50000B Languages: All Resource: POI 2006
Input
On the first line of the input is a single positive integer n, telling the number of test scenarios to follow. Each scenario begins with a line containing two positive integers m and q, where m (at most 30000) is the number of employees and q (at most 200) is the number of queries. The following m lines each list an employee by three integers on the same line: employee ID number (six decimal digits, the first one of which is not zero), yearly salary in Euros and finally height in mm (1 mm = 10-6 meters - accuracy is important at TALL). The chairperson is the employee that earns more than anyone else and is also the tallest person in the company. Then there are q lines listing queries. Each query is a single legal employee ID. The salary is a positive integer which is at most 10 000 000. No two employees have the same ID,and no two employees have the same salary. The height of an employee is at least 1 000 000 mm and at most 2 500 000 mm.
Output
For each employee ID x in a query output a single line with two integers y k, separated by one space character, where y is the ID of xs boss, and k is the number of subordinates of x. If the query is the ID of the chairperson, then you should output 0 as the ID of his or her boss (since the chairperson has no immediate boss except, possibly, God).
Example
Input: 2 3 3 123456 14323 1700000 123458 41412 1900000 123457 15221 1800000
123456 123458 123457 4 4 200002 200003 200004 200001 200004 200002 200003 200001
Added by: Phenomenal Date: 2009-02-15 Time limit: 1s Source limit:50000B Languages: All Resource: NWERC 2003
Input
The first line contains an integer 3 <= N <= 4000, which is the number of the poles. Each of the following N lines contains two integers 0 <= x, y <= 10000, which are the coordinates of a corresponding pole. No two poles have the same position.
Output
The output should contain a single integer number, which is the maximal possible number of nested fences that can be constructed. Each fence is a closed polygonal line without self-crossing whose vertices are poles. Different fences should not have common points.
Example
Input: 4 100 100 200 100 100 200 300 300
Output: 1
Added by: Phenomenal Date: 2009-02-16 Time limit: 1s Source limit:50000B Languages: All Resource: acm.timus.ru
Input
The input file contains at most 20000 lines of inputs. Each line contains an integer N (1<N<1000001). The meaning of N is given in the problem statement. Input is terminated by a line containing a single zero.
Output
For each line of input produce one line of output. This line contains the value of G for the corresponding N. The value of G will fit in a 64-bit signed integer.
Example
Input: 10 100 200000 0 Output: 67 13015 143295493160 Time limit has been changed. Some AC solutions get TLE
Added by: Phenomenal Date: 2009-02-16 Time limit: 3s Source limit:50000B Languages: All Resource: ACM World Final Warm up 1 - 2008
Input
The first line contains two integers N and M (2 <= N <= 1000, 1 <= M <= 1000) which is the number of the girls and boys. The i-th line of the following M lines contains two integers ai and bi (1 <= ai, bi <= N) which are the two girls that the i-th boy wants to give present to
Output
One single integer number, which is the minimum boys the form teacher should choose.
Example
Input: 3 3 1 2 2 3 1 3 Output: 2
Added by: Phenomenal Date: 2009-02-16 Time limit: 1s Source limit:50000B Languages: All Resource: IOICAMP
In the above, any string enclosed in single quotes are to be treated literally. <ENTER> is the end of line. In words, Spaces are allowed before or after any literal except inside a number. Spaces are allowed in variable names, and each non-empty sequence of spaces is treated as a single underscore, so the following refer to the same variable:
$Remote Switch#1$ $Remote_Switch#1$ $Remote switch#1$
All numbers appearing in the program will be integers between 0 and 1000000000, inclusive. All variable and literal values are integers between -1000000000 and 1000000000, inclusive. All variables are global and initially zero. The programs you will be tested on will never have an EXPRESSION that evaluates to a value outside of this range. The logical operators evaluate to 0 for false and 1 for true, and treat any nonzero value as true. Running the program amounts to executing all the active when clauses until none are active. More specifically, the active list of when clauses is initially empty, then the following steps are repeated: In the order they appear in the program, the conditions of all when clauses that are not currently active are evaluated. If true, the clause is added to the end of the active list, with its first statement marked as "ready". Each active when clause has one "ready" statement. If the active list is empty after this step, the program terminates. The "ready" statement from the "current" when clause (initially the first clause in the active list) is executed.
The statement marked as "ready" is advanced, removing the when clause from the active list if this is the last statement in the "current" when clause. The when clause marked as "current" is advanced, cycling to the beginning of the active list if the end is reached. In other words, inactive when conditions are evaluated to determine if these clauses are added to the active list. Then one statement (set or print) is executed from the current active when clause. If this is the last statement in that clause, it is removed from the active list. One the next iteration, one statement is executed from the next active when clause, etc. A set statement executes all the assignments concurrently, so that
set $x$=$y$,$y$=$x$
swaps the values of $x$ and $y$. The same variable cannot appear twice on the left hand part of the same set statement (so set $x$=1,$x$=2 is illegal). A print statement evaluates and prints the given expressions in the output, separated by commas and followed by a new line. So
print 1,(2+3)
in the output.
Input
The input consists of a single syntactically correct program. You may assume that the program will not execute more than 100000 set statements and 100000 print statements.
Output
Print the output produced by executing the given program. Both the input and output file will not exceed 100KB.
Example
Input: When ($Mr. Bill$<5) Set $mr._bill$=($mr. bill$+1),$Y$=($Y$+10) End When When ($mr. Bill$<10) Set $MR. BILL$=($mr. bill$+1) Print $mr. bill$,$Y$ End When Output: 3,20 6,40
Added by: Blue Mary Date: 2009-02-17 Time limit: 2s Source limit:6666B Languages: All except: C99 strict Resource: Whitney Houston: When You Believe
Here, dropping a ball from position (0,3) could result in one of the following three scores :
1) 2 + 2 + 1 + 1 + 0 + 2 + 4 + 1 + 2 = 15 2) 2 + 2 + 1 + 1 + 0 + 2 + 3 + 9 + 0 = 20 3) 2 + 2 + 4 + 3 + 2 + 8 + 3 + 2 = 26
Input
The first line contains the number of test cases. The first line for each test case consists of N and M. Lines 2..N+1 for each test case consist of M characters each. Each character is either a digit from 0 to 9, or the letter P.
Output
The maximum expected score accurate upto 4 decimal places.
Example
Input: 4 5 5 53214 53214 53214 54214 53214 5 5 00000 0P0P0 00000 01P20 00000 5 5 09090 0P0P0 00000 01P20 00000 6 6 112214 211243 30PPP2 423378 1P9753 220102
Constraints
Dataset 1: 1 <= number of test cases <= 100 3 <= N,M <= 100 All possible paths from the top will eventually lead to the ball falling from the bottom. There will be no "rebounds" possible. If there is a P on square (x,y), there will not be a P on squares (x-1,y-1) or (x-1,y+1) or (x+1,y-1) or (x+1,y+1). Also, platforms will not occur on the boundaries of the grid. Thus, the X coodinate of a platform will never be 0 or N-1, and the Y coordinate will never be 0 or M-1. The test case was generated to guarantee that any answer with absolute error in 1e-9 will got accepted. Time limit: 7s Added by: Race with time Date: 2009-02-19 Time limit: 7s Source limit:50000B Languages: All Resource: Code Craft 09
Input<h3> The first line consists of the number of test cases K (1<=K<=20). In each test case, the first line contains two integers M and N indicating the number of rows and columns in the rectangular dungeon(1 <= M,N<= 100). Next M lines contain N integers (single digits only). The jth integer on ith line is the time taken to overpower the guards at room (i,j). The last line in each test case, contains three integers a, b and T, where (a,b) is the position of the cell where Hermione is held and T is the amount of time before the bomb goes off.
Output For each of the test case, if it is not possible for Harry Potter to save Hermione then print NO. Otherwise, print two lines. The first line should say YES. The second line should contain a single integer indicating the maximum possible time to spare when Harry Potter rescues the Hermione. Example
Input: 2 4 3 2 3 2 2 5 1 5 3 1 3 1 1 4 2 15 2 2 1 2 1 1 2 2 2 Output: YES 4 NO
Paritosh Aggarwal Date: 2009-02-21 Time limit: 1s-8s Source 50000B limit: Languages: All Added by:
Each line denotes the entry time and exit time of one person. (The identity of the person is not important - the same person may enter and leave many times. For instance, in the example, it might well be that the entries and exits recorded at serial no. 2 & 5 refer to the same person). In this example, the maximum size of the dancers during the ball was 4. This was achieved between time 6 & 7. Hagrid is not good at Math so he requires your help. Your task is to read the list of entry and exit times and compute the maximum number of dancers during the ball.
Input
The first line is a single integer, T (1<=T<=100), which is the number of test cases. For each of the test case, the first line contains a single integer N, (1<=N<=100), the number of entries and exits recorded. This is followed by N lines. Each of these lines consists of two integers, separated by a space, describing the entry and exit time of that person. The entry and exit times are guaranteed to be distinct, and the entry time will be less than the exit time. The constraint on entry and exit times is 10000000.
Output
A total of T lines each of them containing a single integer, denoting the maximum number of dancers during the ball.
Example
Input: 1 5 1 7 2 4 6 9 3 8 5 10 Output: 4
Added by: Paritosh Aggarwal Date: 2009-02-21 Time limit: 1s Source limit:50000B Languages: All
Input
The first line consists of a single integer T (1<=T<=50) which is the total number of test cases. Each of the next T lines consist of a single integer N (1<=N<=99999999) which is the number that Harry remembers.
Output
A total of T lines, where each line consists of two integers separated by a space. The first integer represents the river out of 1, 3 and 9 which intersects with the stone river of N. The second integer represents the stone number at which Harry can cross.
Example
Input: 2 29 42 Output: 1 107 3 111
Added by: Paritosh Aggarwal Date: 2009-02-21 Time limit: 6s Source limit:50000B Languages: All Resource: British Informatics Olympiad, 1999
Input
The first line consists of a single integer T, the number of test cases. In each of the test cases, the first line has two integers. The first integer h (1<=h<=100) is the number of rows of tiles on the floor. The second integer w (1<=w<=100) is the number of columns of tiles on the floor. Next, there are h lines of inputs. The ith line of these, specifies the number of philosophers stones in each tile of the ith row from the front. Each line has w integers, where each integer m (0<=m<=100) is the number of philosophers stones on that tile. The integers are separated by a space character.
Output
The output should consist of T lines, (1<=T<=100), one for each test case. Each line consists of a single integer, which is the maximum possible number of philosophers stones Harry can grab, in one single trip from the first row to the last row for the corresponding test case.
Example
Input: 1 6 5 3 1 7 4 2 1 3 1 1 2 2 1 2 2 1 5 2 1 4 4 5 2 7 5
2 1 8 3 4 1
Output: 32 //7+1+8+5+4+7=32
Added by: Paritosh Aggarwal Date: 2009-02-21 Time limit: 1s-3s Source limit:50000B Languages: All
Input
The first line of the input consists of a single integer T(1<=T<=100). Each of the next T lines consists of a single integer N (1<=N<=1000000), indicating the size of the way.
Output
For each test case, output the last four digits of the number of ways of carpeting the 2xN way. If the answer involves fewer than 4 digits, print the entire number. > Important Update - If the output of last four digits has leading zeros, print the output without the leading zeros<strong>
Example
Input: 2 3 13 Output: 5 3465
Paritosh Aggarwal Date: 2009-02-21 Time limit: 2s Source 50000B limit: Languages: All Added by:
3999. FROGGER
Problem code: FROGGER
"Frogger" was one of the first really popular arcade games after it was introduced by SEGA in 1981. The game consists of helping a frog cross a multi-lane motorway without getting run over by a car. You are given a view of an n-lane motorway where each lane consists of m different spaces that can either be empty or be occupied by a car. On each side of the motorway is a curb on which the frog can move freely. In the traffic lanes the frog can only move on the spaces not occupied by cars. The motorway is constructed in such a way that the direction in which the cars travel alternates between the lanes, with cars in the first lane (the one closest to the starting point of the frog) moving to the right. The cars never switch lanes and only move one step forward in each turn. To ensure a steady supply of traffic, a car that reaches the boundary of its lane is reentered at the opposite end of its lane. In one turn of the game all the cars move one step in their assigned direction while the frog can either move one step to the right or to the left, or one step up or down (between lanes or between the curb and the adjoining lane), or it can stand still. Contrary to the cars the frog cannot "wrap-around" i.e. move in one step between the first and last position of a lane or a curb. The frog and the cars move simultaneously. Thus the frog can move to a space given that there will be no car on it in the next round. If the frog is on the same space at the same time as a car it is run over and dies. Note that the frog can jump over an adjacent approaching car in the same lane as itself. Your job is to write a computer program that will calculate the minimum number of turns needed for the frog to get from its starting position on the curb to its final position on the curb on the other side of the road or to determine that this is not possible within a given number of rounds.
Input
First there will be a line containing the number of scenarios you are asked to help the frog in. For each scenario there will first be a line containing a positive integer x <= 10^5 giving the maximum number of rounds that can be used. The next line contains the number of lanes n, 1 <= n <= 20, and the length of each lane m, 1 <= m <= 50. Each of the next n + 2 lines will contain a string of m characters. The character X indicates a car, the character O (letter O) indicates a free space, the character F gives the starting position of the frog, and the character G gives the final destination of the frog. The first line indicates the destination curb, consisting of Os and exactly one G while the last line gives the starting curb consisting of Os and exactly one F, while the intermediate lines each represent one lane of the motorway.
Output
The output will be one line per scenario, either giving the minimum number of turns needed before the frog can get from its starting position to the final position without getting run over by a car or a statement indicating that this was not possible within the maximum number of allowed turns.
Example
Input: 2 10 4 4 OOGO XXOO XOOX XXOO XXOO OOFO 2 2 2 OG XX OO FO Output: The minimum number of turns is 9. The problem has no solution.
Added by: Fabio Avellaneda Date: 2009-03-01 Time limit: 60s Source limit:50000B Languages: All Resource: I maratn interuniversitaria del circuito Redis - Acis. Sedes: Politcnico - Javeriana
4000. GALLUP
Problem code: GALLUP
Often, we see results of gallups, like this: Prefer red: 3.5% Prefer green: 4.5% Prefer yellow: 22.0% Prefer blue: 70.0% and you begin to wonder: how many people did they really ask? If the numbers are simple, like 20%, 40%, and 40%, you know that they asked 5 people (or 10, or 15, or more, but we are interested in the minimum number of people). Your task is to write a program that reads sets of percentages and calculates the smallest number of people that could produce the given percentages. We know that this number is always less than 10 000.
Input
The input is a set of percentages. Each set is on a line of its own. Every line starts with an integer n (0 <= n <= 20) giving the number of percentages in the set. If n > 0, the percentages follow as n numbers; these numbers may have 0-5 decimals, and all percentages in a set have the same number of decimals. (If there are no decimals, there is no decimal point.) The percentages always add up to about 100% as there may be small rounding errors. Numbers are rounded when digits are removed; they are rounded upwards if the first removed digit is 5 or more. Thus, 4.472 is rounded to 4.47, 4.5, or 4, depending on how many digits you want.
Output
For each set of data, print a line starting with "Case i :", where "i" is the data sets number. Then follows a space and an integer giving the computed number of people. If no legal answer in the range 1-9999 exists, print "error" instead of the number.
Example
Input: 3 20 40 40 3 33.3 33.3 33.3 2 33 67 1 100.0000 4 3.75 4.25 22.00 70.00 2 49 51 2 50 51 2 49 50 0 Output: Case 1: Case 2: Case 3: Case 4: Case 5: Case 6: Case 7: Case 8:
Added by: Fabio Avellaneda Date: 2009-03-01 Time limit: 60s Source limit:50000B Languages: All Resource: I maratn interuniversitaria del circuito Redis - Acis. Sedes: Politcnico - Javeriana
Input
The first line in the input file contains an integer N, the number of data sets to follow. Each set starts with two integers, n and d (1 <= n <= 500, 0 <= d < 150). n is the number of important places in the city that must have a subway station nearby, and d is the maximum distance allowed between an important place and a subway station. Then comes n lines, each line containing two integers x and y (-100 <= x, y <= 100), the coordinates of an important place in the capital. The central station will always have coordinates 0, 0. All pairs of coordinates within a data set will be distinct (and none will be 0, 0).
Output
For each data set, output a single integer on a line by itself: the minimum number of subway lines needed to make sure all important places in the city is at a distance of at most d from a subway station.
Example
Input: 2 7 1 -1 -4 -3 1 -3 -1 2 3 2 4 2 -2 6 -2 4 0 0 4 -12 18 0 27 -34 51 Output: 4 2
Added by: Fabio Avellaneda Date: 2009-03-01 Time limit: 60s Source limit:50000B Languages: All Resource: I maratn interuniversitaria del circuito Redis - Acis. Sedes: Politcnico - Javeriana
Input
The input starts with a row containing the number 0 <= N <= 100 of test cases that will follow. For each test case, there will be one row containing two integers, xL and xH separated by a single space. These numbers are such that 0 <= xL <= xH <= 2,000,000,000.
Output
For each test case, output the number of explosive numbers that exist in the range xL <= x <= xH.
Example
Input: 2 4505 4505 0 5000 Output: 1 5
Added by: Fabio Avellaneda Date: 2009-03-01 Time limit: 60s Source limit:50000B Languages: All Resource: I maratn interuniversitaria del circuito Redis - Acis. Sedes: Politcnico - Javeriana
Input
The first line of input gives a single integer, 1 <= t <= 40, the number of test cases. Each test case starts with n, the number of phone numbers, on a separate line, 1 <= n <= 10000. Then follows n lines with one unique phone number on each line. A phone number is a sequence of at most ten digits.
Output
For each test case, output "YES" if the list is consistent, or "NO" otherwise.
Example
Input: 2 3 911 97625999 91125426 5 113 12340 123440 12345 98346 Output: NO YES
Added by: Andres Galvis Date: 2009-03-08 Time limit: 1s-3s Source limit:50000B Languages: All Resource: Nordic Collegiate Programming Contest 2007
Input
On the first line of input is a single positive integer 1 <= t <= 50 specifying the number of test cases to follow. Each test case begins with two positive integers 1 <= m <= n <= 10000 on a line of itself, m telling the number of words in the dictionary and n the size of the hash table in the test case. Next follow m lines of which the i:th describes the i:th word d i in the dictionary D by two non-negative integers h 1 (d i ) and h 2 (d i ) less than n giving the two hash function values of the word d i . The two values may be identical.
Output
For each test case there should be exactly one line of output either containing the string "successful hashing" if it is possible to insert all words in the given order into the table, or the string "rehash necessary" if it is impossible.
Example
Input: 2 3 3 0 1 1 2 2 0 5 6 2 3 3 1 1 2 5 1 2 5 Output: successful hashing rehash necessary
Added by: Andres Galvis Date: 2009-03-09 Time limit: 1s-3s Source limit:50000B Languages: All Resource: Nordic Collegiate Programming Contest 2007
Input
Input starts with a line containing one integer T - a number of test cases (1 <= T <= 50). Then T test cases follow. Each of them is one line with three numbers N, P, and Q separated with a space (1 <= N <= 99999999, 0.5 <= P, Q <= 0.99999999). P and Q have not more than 8 digits after decimal point.
Output
For each test case output one line with a probability that Alice will win the game. Your answer must be precise up to 10^-6.
Example
Input: 1 1 0.5 0.5 Output: 0.666666667
Added by: Pavel Kuznetsov Date: 2009-03-16 Time limit: 1s Source limit:50000B Languages: All Resource: Vologda 2009
Input
The input contains several Morphics descriptions. The first line contains the number of descriptions t (t <= 10000) that follow. Each of them begins with the number of colors n (1 <= n <= 26). Next n lines contain the rules by which the Morphic grows. The i-th one describes the sequence of colors in bottom-up order obtained from a single cell of i-th color. Each line contains at most 100 lowercase English letters.
Output
For each test case output one line containing YES if building of a tower is pointless (as in: YES, we can save money!). Otherwise output NO.
Example
Input: 4 2 ab a 3 ba c c 3 ba c b 3 bbbbbbbbbbbbbbb ccccccccccccccc c Output: YES YES NO YES
Warning: enormous input/output data, be careful with certain languages Added by: Blue Mary Date: 2009-03-17 Time limit: 13s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Wrocaw 2008
Input
The input contains several test cases. The first line contains the number of test cases t (t <= 250). Each test begins with a line containing the number of professors n (2 <= n <= 100000). Next n lines follow, i-th of which contains two integers start i and end i (0 <= start i < end i <= 1000000000), the starting and the ending time of the lecture that the i-th professor gives, respectively.
Output
For each test case output the minimal number of rooms necessary to schedule all the lectures.
Example
Input: 4 2 0 10 10 20 3 0 10 10 20 10 20 5 4 14 3 13 2 12 1 11 0 10 4 0 10 10 20 20 30 30 40 Output:
2 2 5 2
Warning: enormous input/output data, be careful with certain languages Note: The input is too large, so we have 4 input files and the total time limit is 17 seconds. Added by: Blue Mary Date: 2009-03-17 Time limit: 17s Source limit:50000B Languages: All except: C99 strict Resource: ACM Central European Programming Contest, Wrocaw 2008
Example
Input: aaaa abba amanaplanacanal xyz Output: aaaa abba amanaplanacanalpanama xyzyx
Note: 1. All palindromes are considered case-sensitive (i.e. Aa is not a palindrome).2. Large I/O. Be careful in certain languages. Added by: Muntasir Azam Khan Date: 2009-03-22 Time limit: 3s Source limit:50000B Languages: All Resource: Own problem, used in Next Generation Contest 5
Input
The first line contains the two integers N and M. The next M lines each contain three integers A, B, and C, denoting that there is an edge of capacity C (1 <= C <= 10 9 ) between nodes A and B (1 <= A, B <= N). Note that it is possible for there to be duplicate edges, as well as an edge from a node to itself.
Output
Print a single integer (which may not fit into a 32-bit integer) denoting the maximum flow / minimum cut between 1 and N.
Example
Input: 4 6 1 2 3 2 3 4 3 1 2 2 2 5 3 4 3 4 3 3 Output: 5
Viewing the problem as max-flow, we may send 3 units of flow through the path 1 - 2 - 3 - 4 and 2 units of flow through the path 1 - 3 - 4. Viewing the problem as min-cut, we may cut the first and third edges. Either way the total is 5. Note: see also http://www.spoj.pl/problems/MATCHING/. Added by: Neal Wu Date: 2009-03-25 Time limit: 5s Source limit:50000B Languages: All
4142. Ellipse
Problem code: ELLIPSE
Given 5 points on a ellipse, calculate the area of the ellipse. We accept solutions with absolute error less than 10 -6 or relative error less than 10 -9 .
Input
Many test cases. Each contains a line with 10 integers with absolute value less than 1000 - the X and Y coordinates of the 5 points, respectively. Input terminates by EOF. Note that there can be extra spaces in a single line.
Output
Each line contains a single float-point number - the area of the corresponding ellipse, or "IMPOSSIBLE" if the ellipse doesnt exist or cant be unique determined.
Example
Input: 6 1 3 2 -2 -3 -3 -2 1 6 7 -3 2 7 6 3 5 5 -2 -9 Output: IMPOSSIBLE 157.079633
Note: You can click on "Wrong Answer" to get further information. Note: Judge is slightly modified to avoid some precision problems. Added by: [Trichromatic] XilinX Date: 2009-03-27 Time limit: 10s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: Classical Problem, description by Blue Mary
Input
An integer T, denoting the number of testcases (T<=10000). Each of the T following lines contains a positive integer n, where n<10000000.
Output
Output the answer for each n.
Example
Input: 4 1 2 10 9999999 Output: 0 1 2 13175
Added by: Robert Gerbicz Date: 2009-04-05 Time limit: 5s Source limit:4096B Languages: All Resource: High School Programming League 2008/09
Input
An integer T, denoting the number of testcases (T<100000). In each line you are given one positive integer ( n<1000000000 ). There are 5 input sets.
Output
Find the number of possible colorings of the n points. Since the answer can be very big, output only the answer modulo 1000000007.
Example
Input:41231000Output:41643283570349
Warning: large input/output data, be careful with certain languages Warning: A naive algorithm will probably solve only the first input set. Added by: Robert Gerbicz Date: 2009-04-05 Time limit: 1s Source limit:4096B Languages: All Resource: High School Programming League 2008/09
Input
First line contains an integer T, the number of test cases (T<=100). The following T lines each contains one positive integer: n, where n <= 10 14
Output
T lines, on each line output the number of (positive) square-free integers not larger than n.
Example
Input: 3 1 1000 100000000000000 Output: 1 608 60792710185947
Warning: A naive algorithm probably not works. Added by: Robert Gerbicz Date: 2009-04-06 Time limit: 20s Source limit:2009B Languages: All Resource: classic, own input
Input
The first line of the input file contains one integer T, the number of test cases. The following T lines each contains a big positive integer: n, where n<10 10000
Output
Output the mulplicative digital root for each n.
Example
Input: 4 6 2009 555555555 847938630482747410708417738635300464477112059683336648877683 Output: 6 8 5 2
Warning: large input data, be careful with certain languages Warning: not every languages are available for this task Added by: Robert Gerbicz Date: 2009-04-06 Time limit: 2s Source limit:2048B Languages: C C++ PAS gpc PAS fpc Resource: classic, own input
Input
The first line of input contains a positive integer, n, the number of games to analyze. For each game there are six lines on input: r, the number of rows in the chessboard. c, the number of columns in the chessboard. pr, the row of the starting position of the pawn. pc, the column of the starting position of the pawn. kr, the row of the starting position of the knight. kc, the column of the starting position of the knight. All numbers in the input dont exceed 100. (Thanks to Blue Mary for pointing that out). The pawn and the knight will have different starting positions. Row 1 is at the bottom of the board and Row r is at the top of the board. Column 1 is at the left and column c is at the right.
Output
If the knight can win and, output the minimum number of moves it must make to do so. If the knight cannot win, your program should determine if it can cause a stalemate and, if it can, the minimum number of moves it must make to do so. Finally if the knight cannot win or cause a stalemate, your program should compute the number of moves the knight makes before the pawn wins.
Example
Input: 3 99 99 33 33 33 35 3 3 1 1 2 3 99 99 96 23 99 1 Output: Win in 1 knight move(s). Stalemate in 1 knight move(s). Loss in 2 knight move(s).
Added by: Analysis Mode (Elspeth, Knight-Errant) Date: 2009-04-07 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Canadian Computing Competition 1999 Senior Question 4
4177. Herding
Problem code: HERDING
Oh no! A number of stray cats have been let loose in the city, and as the City Cat Catcher, you have been assigned the vital task of retrieving all of the cats. This is an ideal opportunity to test your latest invention, a cat trap which is guaranteed to retrieve every cat which walks into a square-shaped subsection of the city. Fortunately, you have the assistance of one of the worlds foremost cat psychologists, who has the amazing ability of predicting, given a square subsection of the city, exactly which of the four cardinal directions (north, east, south or west) the cat will head. While this information is handy, you still dont know where all the cats currently are. In order to prove the cost-effectiveness of your method to the City it would, of course, be important to minimize the number of traps used.
Input
The input will begin with a line consisting of two numbers n and m, separated by a space (1 <= n, m <= 1000). The city will be an n x m grid of square subsections. The next n lines will each consist of a string of length m, consisting of the letters N, E, S, or W, representing north, east, south and west, respectively. (The first character of the first line will be the northwesternmost point.) The direction in the square is the direction which cats will head if they are in that square. The cat psychologist assures you that cats have no interest in leaving the city.
Output
Output the minimum number of traps needed.
Example
Input: 3 4 SWWW SEWN EEEN Output: 2
Added by: Analysis Mode (Elspeth, Knight-Errant) Date: 2009-04-07 Time limit: 1s-3s Source limit:50000B Languages: All except: C99 strict Resource: Canadian Computing Competition 2008 Stage 2 Day 2 Problem D
Input
There is no input.
Output
5000 lines, on the n-th line give the value of f(n) by 2 digits after the decimal point.
Example
Input: No input. Output: 0.00 0.85 1.45 2.01 2.55 . . . 2607.03
Added by: Robert Gerbicz Date: 2009-04-07 Time limit: 1s Source limit:50000B Languages: TEXT Resource: own resource
Input
N K (N, K <= 50) A B (A = the starting vertex number, B = destination vertex number) -1 -1 terminates input
Output
The total number of ways of reaching the destination from the starting point by following the above rules. The total number of ways will be less than 2 63 - 1. Output 0 if there are no solution.
Example
Input: 8 5 1 4 -1 -1 Output: 6
Added by: Analysis Mode (Elspeth, Knight-Errant) Date: 2009-04-08 Time limit: 0.5s-1s Source limit:50000B Languages: All except: C99 strict Resource: Woburn Challenge 2001
Input
The first line of input contains the number of different kinds of candy you have in your bag of candy N (1 <= N <= 100). On the following N lines, there are pairs of numbers describing each type of candy. The candy description is of the form k i c i where k i is the number of that particular type of candy contained in the bag and ci is the calorie count for each piece of that type of candy. You may assume that 1 <= k i <= 500 and 1 <= c i <= 200.
Output
Your output is one integer which is the minimum difference of calories between friends
Example
Input: 4 3 5 3 3 1 2 3 100 Output: 74
Added by: Analysis Mode (Elspeth, Knight-Errant) Date: 2009-04-08 Time limit: 0.5s-9s Source limit:50000B Languages: All except: C99 strict Resource: Canadian Computing Competition 2008 Stage 2 Question E
Input
The first line contains a single integer T, the number of test cases, where T<= 20000. The following T lines each contains three numbers n, ph (n) and s (n) in this order. There are 5 input sets.
Output
Output T lines, the values of p, q and r in increasing order. It is guaranteed that p, q, r<10 6 .
Example
Input: 4 30 8 72 61321 54912 68040 451464315257 451286179344 451642497600 91896729624994213 91896040105364880 91897419147616160 Output: 2 3 5 13 53 89 6397 8039 8779 231859 574261 690187
Warning: large input/output data, be careful with certain languages Warning: A naive algorithm will probably solve only the first input set.
Added by: Robert Gerbicz Date: 2009-04-08 Time limit: 0.400s-1s Source limit:50000B Languages: All Resource: High School Programming League 2008/09
Input
The first number is T, denoting the number of test cases (T<1000). T lines follow, each of which contains one positive integer (n<10 10 ).
Output
Output T lines, the answer for each n.
Example
Input: 6 120 720 1000 1200 92070 123618780 Output: 2 13 0 10 6448 292
Added by: Robert Gerbicz Date: 2009-04-09 Time limit: 12s Source limit:4096B Languages: All Resource: High School Programming League 2008/09
4198. Lego
Problem code: LEGO
Its Christmas morning, and youve got what you wanted: a box of Lego(TM)! (Okay, maybe not, but better than nothing) Lego is pretty fun to tinker with, and youve decided to build some sort of shape. (For the sake of this problem, lets say your shape is basically 2-dimensional - itll be a slab) But once you pick it up, you discover that you didnt plan it properly, and your wonderful shape just falls apart. Now, youre planning to build something big, and so youre going to use the computer to help you. Write a program, that given the layout of a Lego design, outputs the number of pieces it would break into if picked up. (Assume that the bricks bind together perfectly) The Legos will be built on a x-y coordinate plane, with (0,0) being the bottom left corner. The blocks are flat on your carpet, so a block will never fall down. (If you havent seen a Lego brick before: A Lego brick has grooves on its top that match with notches on the bottom. If a groove and a notch bind, the bricks will stay together. See the diagram. A brick will bind with another brick securely even if just a single notch touches another groove.
Input:
The first line contains N (the number of Lego pieces), 1 <= N <= 100000. N lines follow, each with 4 integers x 1 , y 1 , x 2 , y 2 (0 <= x 1 < x 2 <= 210 9 , 0 <= y 1 < y 2 <= 210 9 ) This means that there is a brick with bottom left corner (x 1 ,y 1 ) and top right corner (x 2 ,y 2 ). x denotes the horizontal coordinate and y the vertical coordinate. Two bricks will bind if ones bottom y-coordinate coincides with the others top y-coordinate and the union of the two intervals (the bottom of one and the top of the other) has nonzero length. No bricks will overlap.
Output:
A single line containing the number of separate pieces that these blocks form.
Sample Input:
4 0 1 2 4 0 2 0 0 2 3 4 6 2 4 2 2
Sample Output:
2
Explanation
Blocks #1,2,3 are joined securely. However, #4 is just hanging around. Added by: Brian Date: 2009-04-10 Time limit: 1s-3s Source limit:50000B Languages: All except: TECS Resource: Hanson Wang
Input
The first line of input is the number 0 < n <= 1000 of test cases. Each of the following n lines describe a test case. Each line starts with number 0 < m <= 100 the amount of different bracket types. Then m positive numbers k1, k2, ..., km follow each separated with a space. Number ki is the amount of pairs of brackets of i-th type. The total amount of pairs of brackets is not greater than 1000.
Output
For each test case output a line containing single integer - the answer to the problem modulo 1000000007.
Example
Input: 3 1 4 2 2 2 3 1 2 3 Output: 14 84 7920
Added by: Spooky Date: 2009-04-11 Time limit: 1s Source limit:50000B Languages: All Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2009
Input
The first line contains three integers, N, M, and P. Each of the next P lines contains two integers A (1 <= A <= N) and B (1 <= B <= M), denoting that cow A can be matched with bull B.
Output
Print a single integer that is the maximum number of pairs that can be obtained.
Example
Input: 5 4 6 5 2 1 2 4 3 3 1 2 2 4 4 Output: 3
Cow 1 can be matched to bull 2, cow 3 to bull 1, and cow 4 to bull 3. Note: see also http://www.spoj.pl/problems/FASTFLOW/. Added by: Neal Wu Date: 2009-04-12 Time limit: 3s Source limit:50000B Languages: All
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. The first line of each test consists of two numbers n and m separated with a space. Then n lines follow each containing m characters describing the board. Character . means a free cell, character X - an occupied cell, character S - the starting cell of the queen, character F - the cell where the queen wants to go. It is guaranteed that there will be exactly one character S and one character F on each board.
Constraints
1 <= t <= 30 2 <= n, m <= 1000
Output
For each test case print the minimum number of moves the queen has to do to reach the desired cell. Print -1 if the queen cant reach the cell.
Example
Input: 3 3 3 S.. ... ..F 3 3 S.. XX. F.. 3 3 S.. XXX ..F Output: 1 3 -1
Added by: Spooky Date: 2009-04-16 Time limit: 5s Source limit:50000B Languages: All Resource: Advancement Spring 2009, http://sevolymp.uuuq.com/
Input
The first line of input gives the number of cases, N(1<=N<=100). N test cases follow. Each case contains a number of lines. The first line is the turnaround time, T(0<=T<=60), in minutes. The next line has two numbers on it, NA and NB. NA is the number of trips from A to B, and NB is the number of trips from B to A(0<=NA,NB<=100). Then there are NA lines giving the details of the trips from A to B. Each line contains two fields, giving the HH:MM departure and arrival time for that trip. The departure time for each trip will be earlier than the arrival time. All arrivals and departures occur on the same day. The trips may appear in any order - they are not necessarily sorted by time. The hour and minute values are both two digits, zero-padded, and are on a 24-hour clock (00:00 through 23:59). After these NA lines, there are NB lines giving the departure and arrival times for the trips from B to A.
Output
For each test case, output one line containing "Case #x: " followed by the number of trains that must start at A and the number of trains that must start at B.
Example
Input: 2 5 3 2 09:00 12:00 10:00 13:00 11:00 12:30 12:02 15:00 09:00 10:30 2 2 0 09:00 09:01 12:00 12:02
Added by: abhijith reddy d Date: 2009-04-27 Time limit: 1s Source limit:50000B Languages: All Resource: Google Codejam 2008
Input
The first line is the number of test cases (no more than 10^5). Each of the following lines describes a test case. The integers N and K and the decimal number P are separated by single spaces.
Output
There will be one line for each test case. Each line will have the probability of eventual survival in percent, to two decimals, followed by the percent sign.
Example
Input: 5 1 3 0.6666666666666666 1 3 0.65 1 1 0 1 0 1 3 4 0.7101634622811129 Output: 0.00% 13.83% 100.00% 0.00% 70.94%
Added by: Paul Draper Date: 2009-05-05 Time limit: 1s-4.5s Source limit:50000B Languages: All
LIMITS
1< N,K,T,F <1000000
Input
First line of the input file contains the number of test cases. Then each line contains 4 integers N,K,T,F as described above.
Output
Each line should contain the total number of boxes on the table.
Example
Input: 1 11 8 2 102 Output: 115
Added by: abhijith reddy d Date: 2009-05-07 Time limit: 5s Source limit:50000B Languages: All
Input
Input consists of multiple test cases. For each test case, the first line contains one integer N described as above. N lines follows, each consists of N characters, either 0 or 1, representing the adjacency matrix of the graph. The directed graph contains edge (i,j) if and only if the jth character of the ith line of the matrix is 1. The graph consists of no more than 8 vertices. End of input is indicated by a line consisting of a single 0.
Output
For each test case, output one line consisting of one single integer, the number of arborescences.
Example
Input: 2 00 00 2 01 10 0 Output: 0 2
Added by: Blue Mary Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
Input
The input consists of several test cases. For every test case, there is only one integer L (1<=L<=100), indicating the length of the fence. The input ends with L=0.
Output
For each test case, output one line containing the largest area. Your answer should be rounded to 2 digits after the decimal point.
Example
Input: 1 0 Output: 0.16
Added by: Blue Mary Date: 2009-05-23 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1, practise session
Input
Input consists of one or more lines. For each line, there are four integers describing one test case: the lengths of three sides of a triangle a, b, c; and the radius of a circle r; where 1<= a <= b <= c <= 100, 1<= r <= 100, a+b>c . End of input is indicated by a line consisting four zeros.
Output
For each test case, output a single line showing the largest overlapping area of the circle and the triangle. We accept solutions with absolute error less than 10 -2 .
Example
Input: 3 4 5 1 5 5 8 4 0 0 0 0 Output: 3.14 12.00
Judge is modified on Feb 23,2010. Now you can click on "Wrong Answer" for further information. Added by: [Trichromatic] XilinX Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: Fudan University Local Contest #1
Input
The input consists of multiple test cases, the number of them is about 200000. For each test case, there is one line containing four non-negative integers N, P, A, B described as above, with 0<=N<=100000, 0<=P<=100, 0<=A<=100, 0<=B<=100. End of input is indicated by a line consisting of four zeros.
Output
For each test case, output one line containing the expectation of Blue Marys minimal expense. We accept solutions with absolute error less than 10 -4 .
Example
Input: 10 100 0 1 10 100 1 0 2 50 2 1 0 0 0 0 Output: 0.0000 0.0000 0.5000
Hint
In the first sample, the door will be broken every time it is opened, but repairing is free, so just repair it every time. In the second sample, nothing will be fined, so just leave the door unrepaired. In the last sample, if the door is broken by the first student, Blue Mary will be fined 1 yuan, otherwise she doesnt need to pay anything. Added by: Blue Mary Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
Input
Multiply test cases. For each test case: A single line - n.(1<= n <=50). Input terminates by a single zero.
Output
For each test case: The number of different expressions, modulo 499999999999993.
Example
Input: 3 0 Output: 68
Added by: Blue Mary Date: 2009-05-23 Time limit: 30s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
Input
Multiply test cases. For each test case: A single line - n.(2<= n <= 1200). Input terminates by a single zero.
Output
For each test case, output the factorization of the given polynomial. There are multiple ways to express the factorization of a polynomial. To make it unique, we sort the irreducible polynomials according to the following rules: Lower order polynomials are always lexicographically smaller than higher order polynomials. Same order polynomials should be sorted by their coefficients. We compare the coefficients from high degree terms to low degree terms, including the omitted terms, which the coefficients are regard as 0. Coefficients are being compared first by absolute value then by sign. Smaller absolute values are lexicographically smaller. For the same absolute value, negative coefficients are lexicographically smaller than positive coefficients. See example for more output format details.
Example
Input: 12 0 Output: (x-1)(x+1)(x^2+1)(x^2-x+1)(x^2+x+1)(x^4-x^2+1)
Hint
There should not be a "*" between digit and x, i.e. -2x^2 should be printed as -2x^2.
Added by: Blue Mary Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
4413. Gem
Problem code: GEM
You are given a board with 8*8 squares. In each square, there can be either a colored gem or no gem at all. Gems with different colors are represented by different integers. It is guaranteed that there are no more than two consecutive gems with the same color either in a row or in a column.
........ ........ ........ ........ ........ ..43366. ..121556 44212335
For two neighboring (up, down, left or right, we dont consider diagonal neighbors) squares, you can exchange the gems.
........ ........ ........ ........ ........ ..43366. ..111556 44222335
You can also exchange a gem with a space. After that, if there are more than two consecutive gems with the same color in a row or in a column after exchange, these gems will be taken away simultaneously. Note that a gem could be counted both in its row and in its column; refer to the sample test cases for details.
........ ........ ........ ........ ........ ..43366. .....556 44...335
If there is no gem under a gem, the gem will fall to the square below.
........ ........ ........ ........ ........ .....66. .....556 44433335
After all the squares falling down to the floor or another gem square, repeat the procedure until theres no gem can be taken away: if there are more than two gems with the same color in a row or in a column, these gems will be taken away simultaneously. Then some gems will fall to the squares below, if there are no gems under those gems.
........ ........ ........ ........ ........ .....66. .....556 .......5 ........ ........ ........ ........ ........ ........ .....666 .....555 ........ ........ ........ ........ ........ ........ ........ ........
Given a board with 8*8 squares. This board is stable and you cant take away any gems in the original board. Your task is to determine whether all gems can be taken away by a single exchange or not.
Input
The input consists of several test cases. Each test case will be eight lines, and each line contains eight characters. If in a square there is no gem, . is used to identify it, otherwise an integer k is used to identify the gems color, 1<= k <=9. There is a blank line between two consecutive test cases. End of input is indicated by a line consisting of 0.
Output
For each test case, output a single line. If all gems can be taken away by a single exchange, output Yes; otherwise output No.
Example
Input: ........ ........ ........ ........
........ ..43366. ..121556 44212335 ........ ........ ........ .2...... .2.22... .1.11... .2.22... .2.22... 12121212 21212121 12121212 21212121 12121212 21212121 12121212 21212121 ........ ........ ........ ........ ........ ...96... ...96... .996966. 0 Output: Yes Yes No Yes
Added by: Blue Mary Date: 2009-05-23 Time limit: 1s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
4414. Highway
Problem code: HIGHWAY1
As we all know, every day, there are hundreds of trucks passing through the highway. As some of the trucks might carry several tons of goods, the highway will be damaged unless it is frequently repaired. The administration of highway is worried about this, so it invented repairing cars to ensure that the cars can pass through the highway. The highway has an initial durability. If a truck with x tons goods pass the highway, its durability will be decreased by x. Once the highways durability is less or equal to zero, it will be broken and can never be repaired. The trucks cant pass through the broken ones. There are two kinds of repairing cars: T1 can increase the highways durability by r, T2 can increase the highways durability to p, if the highways durability is less than p. Although the repairing cars can pass through the broken parts, the broken parts cant be repaired.
Input
The input consists of several test cases. For every test case, there are three integers N (1<=N<=100000), M (1<=M<=100000), I (1<=I<=1000) in the first line, indicating the highways length, the numbers of cars and the initial durability of the highway. Each of the next M lines described the information of cars in the following format: 1 s t d-- There is a truck with d tons goods wanted to pass the interval [s, t]. You should check whether the truck can pass it. Notice that if the truck cant pass the whole interval, it will give up the whole passing; otherwise it can pass the highway freely, even if the highway will be broken after the trucks passing. 2 s t r-- A T1 car will pass the interval [s, t] and increase its durability by r. 3 s t p-- A T2 car will pass the interval [s, t] and increase its durability to p. You can assume that 1<=s<=t<=N, 1<=d, p, r<=1000 The input ends with N=M=I=0.
Output
For each case, you should return how many trucks can successfully pass the interval.
Example
Input: 5 5 5 1 1 3 3 2 2 3 10 1 1 3 3
1 1 5 1 1 1 0
1 2 3 1 2 1 0
3 1 3 1 10 2 5 3 5 3 5 0
Output: 3 2
Hint
In the second test case, the third truck cant pass the road, because although the durability of interval [1, 2) and (2, 3] is larger than 0, in position 2, the durability is 0. Added by: [Trichromatic] XilinX Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict ERL TECS JS Resource: Fudan University Local Contest #1
Input
The input consists of multiple test cases. For each test case, there is one line containing two integers a and b. End of input is indicated by a line containing two zeros.
Output
For each test case, output the sum of the power of the integers from a to b.
Example
Input: 2 10 248832 248832 0 0 Output: 13 5
Added by: Blue Mary Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
Input
Input consists of one or more lines, each line describing one data set. Each line begins with 6 integers: L 1 , L 2 , L 3 , M 1 , M 2 , M 3 , followed by start time and end time. L 1 , L 2 and L 3 indicate the lengths of hour hand, minute hand and second hand respectively, where 1<= L 1 <L 2 <L 3 <=100. M 1 , M 2 and M 3 indicate the weights of hour hand, minute hand and second hand respectively, where 1<= M 1 , M 2 , M 3 <=100. The format of start time and end time is hh:mm:ss, where 0<= hh <=23, 0<= mm <=59, and 0<= ss <=59. Start time and end time should be in the same day. End of input is indicated by a line consisting of -1.
Output
For each data set, output a single line. Each line should give the length of the path for the positions of three hands centre of gravity at the start time and at the end time. We accept solutions with absolute error less than 10 -2 .
Example
Input: 1 2 3 1 2 3 00:00:00 00:00:01 3 4 5 1 1 1 09:00:00 18:00:00 -1
Added by: Blue Mary Date: 2009-05-23 Time limit: 11s Source limit:50000B Languages: All except: C99 strict Resource: Fudan University Local Contest #1
Input
The first line of the input contains one integer number T (1 <= T <= 1000) - the number of test cases. Next T lines contain different test cases. Each test case contains one integer number N (1 <= N <= 1000) - the number of vertices in a graph.
Output
For each test case, output the number of connected graphs, the number of euleran graphs and the number of bipartite graphs - all modulo 1000000007. See examples for the required format. Output one additional empty line after each test case.
Example
Input:212Output:Connected: 1Eulerian: 1Bipartite: 1Connected: 1Eulerian: 0Bipartite: 2
Added by: Pavel Kuznetsov Date: 2009-05-25 Time limit: 5s Source limit:7000B Languages: All
Input
A single positive integer n, where n<500000
Output
Output the answer for n.
Example
Input:201Output:15989433276208858463104100421305100522608250813995004946218Input:1Output:2Input:2Output:1Input:3Output:2
Added by: Robert Gerbicz Date: 2009-05-25 Time limit: 0.5s-6s Source limit:4096B Languages: All Resource: classic problem, own input
Input
The first line is the number of spelling lists (no more than 10). For each spelling list, a line with the number of words (no more than 1000) is given, followed by the original list on the next line. All words within a spelling list are unique. Each word is composed of the letters a-z, is fewer than 100 characters, and is followed by a single space.
Output
On separate lines, give the positions of the original lists.
Example
Input:44a b c d 4d c b a 1mrsmith 6a aaaaaa aaaaa aaaa b bb Output:124155
Added by: Paul Draper Date: 2009-05-28 Time limit: 1s-2s Source limit:50000B Languages: All
Problem specification
You are given multiple sequences of button presses of a simple pocket calculator that consist of digits and arithmetic operators. For each such sequence find the number it would produce on a pocket calculators display. Note that the pocket calculator evaluates the operators in the order in which they are given. (i.e., there is no operator precedence.) Assume that the display of the calculator is large enough to show the result, and that its memory is sufficient to store all intermediate results.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case represents one sequence of button presses for a pocket calculator. The sequence consists of non-negative integers and arithmetic operators and ends with an equal sign. It may also contain spaces to improve readability. The operator / represents integer division, rounded down. You may assume that no test case contains division by zero and that in all test cases all intermediate results are non-negative. Tip: long long int in C/C++, long in Java or int64 in Pascal is enough for this problem.
Output specification
For each sequence from the input file output the number that would be displayed on the calculator.
Example
Input: 4 1 + 1 * 2 = 29 / 5 = 103 * 103 * 5 = 50 * 40 * 250 + 791 = Output: 4 5 53045 500791
Hint
The first test case shows that there is no operator precedence. The second one shows that integer division always rounds down. The last two outputs are the answers to the two riddles in the problem statement: "shoes" (53045 upside down), and "igloos"(500791 upside down). Added by: Blue Mary Date: 2009-05-31 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2009
Problem specification
The jesters box is an X * Y (1<= X, Y <=5000)rectangle. The rectangle contains N(N <=3001) small balls. At any moment, each ball is travelling at the same speed in one of the four diagonal directions. The movement of the balls is continuous and for the purpose of this problem we may consider them to be points. When two or more balls meet, they bounce in a way described below. Your task is to determine the state of the box at given moments in time.
Bouncing specification
Bouncing does not change the speed of the balls. Following images show how the balls bounce off each other, and also off walls. Each image can be rotated arbitrarily. For example, the first image shows that whenever two balls meet at a right angle, they bounce and depart at a right angle again. One particularly tricky case is shown in the third image.
Input specification
The input starts with a line containing the dimensions X and Y of the box. We will use a coordinate system with axes parallel to the sides of the box, (0,0) at one of the corners and (X,Y) at the opposite corner. The second line contains the number of balls N. Each of the next N lines contains four integers x,y,vx,vy, where (x,y) are the coordinates of one ball at time 0 and (vx,vy) is its current velocity vector. (Each ball will be strictly inside the box and for each ball both the absolute values of vx and vy will be equal to 1. No two balls will start at the same place.) The following line contains the number of queens requests M.(1<= M <=20) On the last line there are M numbers t 1 ,...,t M - the points in time the queen wants to see. These numbers will be less than 10 12 .
Output specification
As a solution to this problem, we expect a file with M blocks, with the i-th block describing the situation at time t i . Each block must contain N lines, and each line must contain the x and y coordinates of one ball. The balls in each block must be sorted - primarily by to their first, secondarily by their second coordinate at that point in time. You may output an empty line between the blocks.
Example
Input: 6 4 4 1 2 1 1 5 2 1 1 2 1 1 -1 3 1 -1 -1 1 4 Output: 1 3 3 2 5 2 6 3
Note that the balls that start at (2,1) and (3,1) bounce off each other at a non-integer point in time. Added by: Blue Mary Date: 2009-05-31 Time limit: 3s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2009
4454. Brackets II
Problem code: BRCKTS2
Peter is preparing slides for his lecture on parsing arithmetic expressions. In the first part of the lecture he wants to focus just on parsing brackets. He invented an interesting geometric representation of a correct bracket sequence for his students, because one image is better than a thousand words: Formally, the definition of the geometric representation looks as follows. The simplest correct bracket sequence () is represented by a 1 * 1 square. If A is a correct bracket sequence and g(A) its represenation, then the representation for (A) is g(A) surrounded by a rectangle two units wider than g(A) and one unit taller than the highest point of g(A). If A and B are two correct bracket sequences and g(A) and g(B) are their representations, then we get g(AB) by placing g(B) one unit to the right of g(A). After he finished his slides, Peter started to play with the images he prepared. He painted the bounded areas of the images alternately black and white, in such a way that the outer-most areas are all painted black. For the example above this coloring looks as follows:
Problem specification
You are given a correct bracket sequence. Calculate the area that is colored black.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of one line with a correct bracket sequence with length less than 350000. Every line will only contain characters ( and ).
Output specification
For each test case output one line with one integer - the area of the black part of the corresponding geometric representation.
Example
Input: 2 ((())) (())(()(())) Output: 10 20
Added by: Blue Mary Date: 2009-05-31 Time limit: 1s-7s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2009
Problem specification
You are given the numbers N and K.(1<= K <=200) Assume that each girls ticket had a number between 1 and K, inclusive. Each number was drawn uniformly at random, and draws were independent. Also assume that the entire row was empty when the first girl started to look for her seat. Compute the probability that at least one girl suffered the sad fate of being thrown out by the usher.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line. Each test case consists of a single line containing two integers N and K.
Output specification
For each test case output a single line with the probability as a simplest fraction. (Do not output any spaces before or after the / sign.)
Example
Input: 3 1 10 2 3 3 3 Output: 0/1 1/9 11/27
In the third case there are 3 3 = 27 possibilities. Out of these, in 11 some girl is thrown out. These 11 sequences are: 133, 222, 223, 232, 233, 313, 322, 323, 331, 332, and 333. For example, if the sequence of numbers were 322, the first girl sits at seat #3, the second one at #2, and then the third one tries to sit at #2, but finds both seat #2 and seat #3 occupied, and shes thrown out. Added by: Blue Mary Date: 2009-05-31 Time limit: 1s-7s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2009
Problem specification
You are given the numbers M, N and K. Find the number of different allowed seating arrangements. As this number can be very large, were only interested in its value modulo 420047.
Input specification
Multiple test cases, seperated by blank lines. Each test case consists of a single line containing three integers M, N and K. (M <= N) There are two kinds of input: The input of the first kind satisfies that 1<= M <=15, 1<= N <=50, 3<= K <=50. The input of the second kind satisfies that 1<= M<= 4, 1<= N <= 10 9 , 3<= K <=5. Input terminates by EOF.
Output specification
For each test case output a single line with the number of allowed arrangements modulo 420047.
Example
Input: 2 4 4 Output: 2
Hint
The input file can be downloaded here. You may submit a TEXT file - the corresponding output file. Added by: Blue Mary Date: 2009-05-31 Time limit: 1s Source limit:50000B Languages: TEXT Resource: IPSC 2009
4457. Shopping II
Problem code: SHOP2
Karl is going to spend his holiday in Nothingland. Since there is nothing there, he has to buy all supplies now. At the moment, he is waiting at the checkout counter with a shopping cart full of stuff. Of course, he has a sufficient amount of money in his wallet. However, he prefers to use alternate means of payment if possible: luncheon vouchers, gift certificates, different types of coupons, etc. What makes the matter complicated is that the use of these items is often limited: e.g., luncheon vouchers can only be used to buy food, and gift certificates are often limited to a certain type of gifts.
Problem specification
You are given the number N(1<= N <=2000) of items in Karls shopping cart and their prices. You are also given the number M(1<= M <=2000) of vouchers in his wallet, together with the information on their allowed use. When paying for his shopping, Karl may use vouchers for a larger sum than the cost of the things he is buying. It is also possible to split an items cost between multiple vouchers and use a voucher to pay for more than one item. Compute the minimum amount of additional cash money Karl needs to pay for his shopping.
Input specification
The first line of input file contains an integer T specifying the number of test cases. T blocks follows, each block describes one test case. Each block is preceded by a blank line. Each block starts with line containing two positive integers N (the number of items) and M (the number of vouchers). The second line contains N numbers(each no more than 10000), the i-th of them being the price of the i-th item in Karls shopping cart. The third line contains M numbers, the i-th of them being the cash value of the i-th voucher Karl has in his wallet. M lines follow. Each line consists of a number K i (the count of items such that you can pay for them using the i-th voucher, no more than 100) followed by K i numbers (the numbers of those items; items are numbered from 1 to N).
Output specification
For each test case output a single number specifying how much cash money Karl needs to pay for his shopping.
Example
Input: 1 3 2 15 20 10 20 30 3 1 2 3 1 3 Output: 15
Added by: Blue Mary Date: 2009-05-31 Time limit: 7s Source limit:50000B Languages: All except: C99 strict Resource: IPSC 2009
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow.The first line of each test contains two integers n and m - the number of stick and the number of queries. Next n lines contain four integers Ax, Ay, Bx, By - the coordinates of the endpoints of a stick. You may consider stick to be straight segment on a plane. The next m lines contain two integers each x and y which are the queries.
Constraints
1 <= t <= 100 1 <= n, m <= 1000 -10000 <= Ax, Ay, Bx, By <= 10000 1 <= x, y <= n
Output
For each query print "YES" if the Ant can reach the stick number y from the stick number x, otherwise print "NO".
Example
Input:23 31 3 4 33 4 3 13 1 5 11 21 32 23 31 1 3 12 1 3 13 2 4 11 21 32 3
Output:YESYESYESYESNONO
Added by: Spooky Date: 2009-06-02 Time limit: 7s Source limit:50000B Languages: All Advancement Spring 2009, http://sevolymp.uuuq.com/ Resource: author: elmariachi1414
Input
The input contains several cases, the number of which is on the first line. Every case has three parts. The first part is the plaintext and consists of one or more lines of ordinary text. The second part is the code that is the result of encrypting the first part. The third part is code for the text you are to decrypt. The parts are terminated by a hashmark (#) on a line by itself. Code parts are printed as uppercase digraphs, 20 digraphs on a line, separated by one space. The last line of a code part can contain fewer than 100 digraphs. No code part will contain more than 5000 digraphs.
Output
For each case, first output a line "Case x:" where x is the case number (starting from 1). Then output the decrypted code represented as digraphs in the same format as the code parts in the input. If more than one solution exist, output the following on a single line. MULTIPLE SOLUTIONS If no solutions exist output in one line: NO SOLUTIONS Separate the cases by an empty line.
Example
Input: 2Programming in C and Pascal is easy; I will learn Java next year.#FV CV GE PH PW AS UX GL UY ZX GY LZ UV HE NS UI UQ IA QA EGXU XG EA HN KC HE VE#LX ZH AH EI NH XY MX KV HE OE RQ PD OQ AS KY EQ ZL EI#It is full moon!Meet me at Hammersmith Bridge tonight.#MP PI NZ AZ RN QV UG GD DO GD RQ AR KY GD HD NK PR DA MS OGUP GK IC QY#HL WT UP MC HQ RW PI CX DC ZD HB HG KL PM GI FP SK GE QR MFMP AR BH HM HA SP DP TC WM DZ PO RL SG MU DC SB OD SM MU CSUH RX BL MH HG WS DC BH MF KR MZ GT CD PU CS HD GH LK DP CTGI RZ CD EV KY GD MF IP GT IF KG IC EH TE SD QV QG PR RQ EVMU HK IF RC CR EQ OU PR SB GE CD PR PI UP DR UE EV FS BH MFEV FS DA BC MK GI#Output: Case 1:IA MA NE XQ XE NO PH OB EA TX TE MP TI NG TO RE LA XQCase 2:CR YP TO GR AP HY IS AV ER YF AS CI NA TI NG SU BI EC TA NDIT HA SA RI CH HI ST OR YI FY OU AR EI NT ER ES TE DI NT HEPL AY FA IR CI PH ER SA ND MA NY MO RE OT HE RS IC AN ST RONG LY RE CO MX ME ND SI MO NS IN GH SC OD EB OX OK TH AT CONT AI NS AL LA BO UT TH ES EC RE TH IS TO RY OF CO DE SA NDCO DE BR EA KI NG
Added by: Chen Xiaohong Date: 2009-06-05 Time limit: 1s Source limit:50000B Languages: All Resource: Enhanced Version of Regional Warmup Contest 2005
Input
Multiply test cases. For each test case: A single line - n.(1<= n <=2000). Input terminates by a single zero.
Output
For each test case: The number of different expressions, modulo 1000000007.
Example
Input: 3 0 Output: 68
Added by: Blue Mary Date: 2009-06-06 Time limit: 30s Source limit:50000B Languages: All except: C99 strict Resource: Tomek Czajka
Input
The first line of the input contains an integer N. The following line contains N integers, representing the starting sequence A1..AN, (|Ai| <= 10000). The third line contains an integer Q. The next Q lines contains the operations in following form: I x y: insert element y at position x (between x - 1 and x). D x : delete the element at position x. R x y: replace element at position x with y. Q x y: print max{Ai + Ai+1 + .. + Aj | x <= i <= j <= y}. All given positions are valid, and given values are between -10000 and +10000. The sequence will never be empty.
Output
For each "Q" operation, print an integer(one per line) as described above.
Example
Input:53 -4 3 -1 610I 6 2Q 3 5R 5 -4Q 3 5D 2Q 1 5I 2 -10Q 1 6R 2 -1Q 1 6Output:83635
Added by: Alfonso2 Peterssen Date: 2009-06-08 Time limit: 2s-3s Source limit:50000B Languages: All Resource: my own
Input
First, t <= 10, the number of test cases. Each test case consists of two integers, 1 <= a,b < 10 7 .
Output
For each test case write one number - the number of prime numbers Johnny wrote in that test case.
Example
Input:210 10100 100 Output:
302791
Added by: Yash Date: 2009-06-12 Time limit: 10s Source limit:11111B Languages: All Resource: Codechef
Input
Input starts with an integer T, representing the number of test cases (1<=T<=15). T lines follow, each one consisting of an integer N, (0<=N<=1000).
Output
For each test case, print (A + B)^N, on a single line.
Example
Input:6012345Output:1A+BA^2+2xAB+B^2A^3+3xA^2B+3xAB^2+B^3A^4+2^2xA^3B+2x3xA^2B^2+2^2xAB^3+B^4A^5+5xA^4B+2x5xA^3B^2+2x5xA^2B^3+5xAB^4+B^5Warning: Large output. Be careful with certain languages.
Added by: yandry prez clemente Date: 2009-06-23 Time limit: 3s Source limit:50000B Languages: All
Input
Input starts with an integer T, representing the number of test cases (1<=T<=20). Each test case consists of a map, described as follows: An integer N (1<=N<=8), representing the side length of the square-shaped map. N lines follow, N characters each. A X character represents an emerald, and a . represents an empty space.
Output
For each test case print the number of octaves on a single line.
Example
Input:23XXXX.XXXX3XXXXXXXXXOutput: 15
Added by: yandry prez clemente Date: 2009-06-23 Time limit: 1s Source limit:50000B Languages: All
Constraints
1<=N<=20 1<=K<=1000
Input
The first line is the number of test cases. Each test cases is preceded by a blank line. The first line of each test case is N. The next line is K. The next K lines are the pairs, separated by a single space.
Output
On separate lines, output whether Billy Jeans algorithm is correct. Output "YES" (without quotes) if it is or "NO" (without quotes) if it is not.
Example
Input:4212 1211 1111 1451 23 41 32 42 3Output: YESNOYESYES
Added by: Paul Draper Date: 2009-06-24 Time limit: 1s-7s Source limit:50000B Languages: All
Input
A total of <10 inputs. For each input, First line has dimension, N (1<N<501), of the matrix, followed by N lines with N integers, each less than 10001, and greater than -10001. It is guarantteed that the number of bands on each side of the diagonal, M < 51. That is there are at most 101 bands in total including the diagonal. Use scanf IO, and avoid stl IO.
Output
For each input matrix, output its determinant modulo 10^9+7. Hint: Use Montgomery multiplication for fast computation, i.e., see: http://everything2.com/title/Montgomery%2520multiplication
Example
Input:22 00 221 00 181 0 -1 0 0 0 0 0-1 1 0 -1 0 0 0 0-1 0 -1 1 -1 0 0 00 -1 0 -1 0 -1 0 00 0 -1 0 1 0 -1 00 0 0 -1 -1 1 0 -10 0 0 0 -1 0 -1 10 0 0 0 0 -1 0 -1Output:4136
Added by: Chen Xiaohong Date: 2009-06-26 Time limit: 0.5s Source limit:20000B Languages: All Resource: classical numerical analysis
Input
Your program will be tested on one or more test cases. Each test case is specified on a line by itself. Each line is made of 10 decimal digits. Lets call the first digit Y . The remaining 9 digits are non-zeros and describe the current arrangement of the Tobo in a row-major top-down, left-to-right ordering. The first sample case corresponds to figure (c). The last line of the input file is a sequence of 10 zeros.
Output
For each test case, print the result using the following format: k. R where k is the test case number (starting at 1,) is a single space, and R is the minimum number of rotations needed to bring the Tobo back to its standard arrangement. If this cant be done in Y dials or less, then R = -1.
Example
Input:341356972811654327890000000000Output:1. 22. -1
Added by: Ahmed Aly Date: 2009-07-02 Time limit: 5s Source limit:50000B Languages: All except: JS Resource: ANARC 2008
Input
Your program will be tested on one or more test cases. Each test case is specified on a single line in the form of A+B= where both A and B are display codes for decimal numbers a and b respectively where 0 < a , b < a + b < 1, 000, 000, 000 . The last line of the input file is the word "BYE" (without the double quotes.)
Output
For each test case, print A+B=C where C is the display code for a + b .
Example
Input: 010079010+010079= 106010+010= BYE Output: 010079010+010079=010106106 106010+010=106093
Added by: Ahmed Aly Date: 2009-07-03 Time limit: 1s Source limit:50000B Languages: All Resource: ANARC 2008
Input
Your program will be tested on one or more data sets. Each data set contains a single pattern and one or more sequences to match. The first line of each data set specifies the pattern, and the remaining lines specify the sequences to match against that pattern. The end of a data set (except the last) is identified by the word "END" (without the double quotes.) The end of the last data set is identified by the word "QUIT". All lines are 100,000 characters long or shorter.
Output
k.s. result Where k is the test case number (starting at one,) and s is the sequence number (starting at one within each test case,) and result is either the word "match" if the given string matches the pattern, or the word "not" if it doesnt.
Example
Input: 129 1299 129 1129 END 1*3 123 1223 END #55 155 12355 55 1255 QUIT
Output: 1.1. not 1.2. match 1.3. not 2.1. not 2.2. match 3.1. match 3.2. match 3.3. not 3.4. not
Added by: Ahmed Aly Date: 2009-07-03 Time limit: 5s Source limit:50000B Languages: All Resource: ANARC 2008
Lets define the value of a unit triangle to be the integer value written in that triangle. In general, the value of a triangle is the sum of values in all its unit triangles. The triangle on the right is the same as the other one but with the sub-triangle having the largest value being highlighted. Write a program to determine the sub-triangle with the largest value.
Input
Your program will be tested on one or more test cases. Each test case is specified in a single line made of integers (separated by spaces.) The first integer is the number of rows in the test case, and the remaining integers are the values of the unit triangles specified in a top-down, left-to-right order. (the first test case in the example below is the same as the one in the figure.) The last line of the input file contains the number 0 (which is not part of the test cases.) The maximum number of rows is 400. The absolute value of a unit triangle is less than 1000.
Output
For each test case, print the result using the following format: k. V where k is the test case number (starting at 1,) is a single space, and V is the maximum value of a sub-triangle in that test case.
Example
Input:3 6 -24 0 12 -10 12 40 -4 6 4 1 1 -1 1 1 -1 1 -1 1 1 -1 1 -1 1 -1 1 0 Output:1. 54 2. 4
Added by: Ahmed Aly Date: 2009-07-03 Time limit: 5s Source limit:50000B Languages: All except: JS Resource: ANARC 2008
Input
Your program will be tested on one or more test cases. Each test case specifies two natural numbers (A and B ) (separated by one or more spaces) representing the score of the first half. No team will be able to score more than 10 goals. The last line of the input file contains two -1s (which is not part of the test cases.)
Output
Format For each test case where the number of possibilities is equal to the sum, print: A+B=C Where A and B are as above and C is their sum. If the number of possibilities is not equal to the sum, replace the = sign with != (without the quotes.)
Example
Input: 2 1 1 0 -1 -1 Output: 2+1=3 1+0=1
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: ANARC 2008
4555. Einbahnstrasse
Problem code: ANARC08F
Einbahnstrasse (German for a one-way street) is a street on which vehicles should only move in one direction. One reason for having one-way streets is to facilitate a smoother flow of traffic through crowded areas. This is useful in city centers, especially old cities like Cairo and Damascus. Careful planning guarantees that you can get to any location starting from any point. Nevertheless, drivers must carefully plan their route in order to avoid prolonging their trip due to one-way streets. Experienced drivers know that there are multiple paths to travel between any two locations. Not only that, there might be multiple roads between the same two locations. Knowing the shortest way between any two locations is a must! This is even more important when driving vehicles that are hard to maneuver (garbage trucks, towing trucks, etc.) You just started a new job at a car-towing company. The company has a number of towing trucks parked at the companys garage. A tow-truck lifts the front or back wheels of a broken car in order to pull it straight back to the companys garage. You receive calls from various parts of the city about broken cars that need to be towed. The cars have to be towed in the same order as you receive the calls. Your job is to advise the tow-truck drivers regarding the shortest way in order to collect all broken cars back in to the companys garage. At the end of the day, you have to report to the management the total distance traveled by the trucks.
Input
Your program will be tested on one or more test cases. The first line of each test case specifies three numbers (N , C , and R ) separated by one or more spaces. The city has N locations with distinct names, including the companys garage. C is the number of broken cars. R is the number of roads in the city. Note that 0 < N < 100 , 0 <= C < 1000 , and R < 10000 . The second line is made of C + 1 words, the first being the location of the companys garage, and the rest being the locations of the broken cars. A location is a word made of 10 letters or less. Letter case is significant. After the second line, there will be exactly R lines, each describing a road. A road is described using one of these three formats: A --v-> B A <-v-- B A <-v-> B A and B are names of two different locations, while v is a positive integer (not exceeding 1000) denoting the length of the road. The first format specifies a one-way street from location A to B , the second specifies a one-way street from B to A , while the last specifies a two-way street between them. A , "the arrow", and B are separated by one or more spaces. The end of the test cases is specified with a line having three zeros (for N , C , and R .) The test case in the example below is the same as the one in the figure. [IMAGE]
Output
For each test case, print the total distance traveled using the following format: k. V Where k is test case number (starting at 1,) is a space, and V is the result.
Example
Input: 4 2 5 NewTroy Midvale Metrodale NewTroy <-20-> Midvale Midvale --50-> Bakerline NewTroy <-5-- Bakerline Metrodale <-30-> NewTroy Metrodale --5-> Bakerline 0 0 0 Output: 1. 80
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 1s Source limit:50000B Languages: All except: JS Resource: ANARC 2008
Input
Your program will be tested on one or more test cases. Each test case is specified on N + 1 lines where N < 1, 000 is the number of banks and is specified on the first line. The remaining N lines specifies the inter-bank debts using an NXN adjacency matrix (with zero diagonal) specified in row-major order. The ith row specifies the amounts owed by the ith bank. Amounts are separated by one or more spaces. All amounts are less than 1000. The last line of the input file has a single 0.
Output
For each test case, print the result using the following format: k. B A where k is the test case number (starting at 1,) is a space character, B is the amount of cash needed before reduction and A is the amount of cash after reduction.
Example
Input: 4 0 50 100 150 0 20 0 0 0 30 0 0 0 Output: 1. 380 120 0 0 30 0
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: ANARC 2008
Input
Your program will be tested on one or more test cases. Each test case specifies two positive integers N and D on a single line, separated by one or more spaces, where N, D < 1,000,000 . The last line of the input file contains two 0s and is not part of the test cases.
Output
For each test case, write the winner using the following format: NDW Where N and D are as above, is a space character, and W is the winner of that game.
Example
Input: 5 3 7 4 0 0 Output: 5 3 4 7 4 2
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 15s Source limit:50000B Languages: All Resource: ANARC 2008
Input
Your program will be tested on one or more test cases. Each test case is specified using a single line listing four integers in the following order: N , R , S , and E , where 0 <= N <= 60 , 0 <= R < 2^N , 0 <= S <= E < 2N , and E - S <= 10,000 . The last line of the input file has four -1s and is not part of the test cases.
Output
For each test case, print the output on a single line.
Example
Input: 2 1 0 1 48 0 0 47 -1 -1 -1 -1 Output: 0 48
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 3s Source limit:50000B Languages: All Resource: ANARC 2008
Input
Your program will be tested on one or more data-sets, each representing a Formula One season. All input lines are 255 characters or less. Studying the sample I/O youll discover that the first line of each season has an integer N , where 0 < N < 32 and representing the number of Grands Prix in that season. For each Grand Prix, the name of the Grand Prix appears on a line by itself (maximum length is 64 characters) followed by a table of the first name, last name and team name of the top eight drivers, from 1 to 8, in that Grand Prix. Each of the first and last names is a sequence of printable ASCII characters, no longer than 12 characters, and contains no spaces. Each team name is a sequence of printable ASCII characters, no longer than 18 characters, and may contain spaces (but no leading or trailing spaces.) Each team name is followed by a single period . which is not part of the name. Trailing white space may follow. A line of three -s follows the listing of each Grand Prix. The last line of the input file contains a single zero.
Output
For each data set in the input you must print "Season k :" where k is the data-set number (starting from 1.) The next line must state "Drivers Standing:". On subsequent lines list the drivers standing for that season. For each driver, print their first and last names separated by exactly one space and left justified in a field of width 25, followed by a single space, followed by the total number of points achieved by the driver during the season. The drivers standing should be followed by a blank line. The next line must state "Teams Standing:" On subsequent lines list the teams standing for the that season. For each team, print the team name left justified in a field of width 25, followed by a single space, followed by the total number of points the team has scored during the season. The teams standing should be followed by a blank line.
Example
Input: 2 FORMULA 1 Gran Premio Telefonica de Espana 2006 Pos Driver Team 1 Fernando Alonso Renault. 2 Michael Schumacher Ferrari. 3 Giancarlo Fisichella Renault. 4 Felipe Massa Ferrari. 5 Kimi Raikkonen McLaren-Mercedes. 6 Jenson Button Honda. 7 Rubens Barrichello Honda. 8 Nick Heidfeld Sauber-BMW. --FORMULA 1 Grand Prix de Monaco 2006 Pos Driver Team 1 Fernando Alonso Renault. 2 Jaun-Pablo Montoya McLaren-Mercedes. 3 David Coulthard RBR-Ferrari. 4 Rubens Barrichello Honda. 5 Michael Schumacher Ferrari. 6 Giancarlo Fisichella Renault. 7 Nick Heidfeld Sauber-BMW. 8 Ralf Schumacher Toyota. --0 Output: Season 1: Drivers Standing: Fernando Alonso Michael Schumacher Giancarlo Fisichella Jaun-Pablo Montoya Rubens Barrichello David Coulthard Felipe Massa Kimi Raikkonen Jenson Button Nick Heidfeld Ralf Schumacher Teams Standing: Renault Ferrari McLaren-Mercedes Honda RBR-Ferrari Sauber-BMW Toyota
20 12 9 8 7 6 5 4 3 3 1
29 17 12 10 6 3 1
Added by: Ahmed Aly Date: 2009-07-04 Time limit: 1s Source limit:50000B Languages: All Resource: ANARC 2008
Input
The first line of input contains the integer N (3 <= N <= 1000), number of cities. Each of the next N lines contains exactly N characters that describes network layout. j-th character ini-th of these lines is 1 if it is possible to ride from city number i to city number j, or 0 otherwise.
Output
You should output training route for each day in a separate line. Training route consists of space separated integers - numbers of the cities in order they should be visited. Each training route starts and ends with 1. If there is no achievable training plan, output word impossible in a single line, instead.
Example
Input: 5 01000 00011 11001 10100 10010 Output: 1 2 5 1 1 2 4 3 1 1 2 4 3 5 1
Added by: Luka Kalinovcic Date: 2009-07-07 Time limit: 1s Source limit:50000B Languages: All Resource: own problem
4580. ABCDEF
Problem code: ABCDEF
You are given a set S of integers between -30000 and 30000 (inclusive). Find the total number of sextuples that satisfy:
Input
The first line contains integer N (1 <= N <= 100), the size of a set S. Elements of S are given in the next N lines, one integer per line. Given numbers will be distinct.
Output
Output the total number of plausiblesextuples.
Examples
Input: 1 1 Output: 1 Input: 2 2 3 Output: 4 Input: 2 -1 1 Output: 24 Input: 3 5 7 10 Output: 10
Added by: Luka Kalinovcic Date: 2009-07-13 Time limit: 2s Source limit:50000B Languages: All Resource: own problem
Input
The first line of input gives the number of cases, T. T test cases follow. Each test case contains on the first line the integer N, the number of ships in the test case. N lines follow, each line containing four integer numbers xi, yi, zi and pi, separated by single spaces. These are the coordinates of the i-th ship, and the power of its receiver. There may be more than one ship at the same coordinates. 1 <= T <= 20 0 <= xi, yi, zi <= 10^6 1 <= pi <= 10^6 1 <= N <= 1000
Output
For each input case, you should output: Case #X: Y where X is the number of the test case and Y is the minimal power that is enough to reach all the fleets ships. Answers with a relative or absolute error of at most 10-6 will be considered correct.
Example
Input: 3 4 0 0 0 1 1 2 0 1 3 4 0 1 2 1 0 1 1 1 1 1 1 3 1 0 0 1 2 1 1 4
3 2 3 2 Output: Case #1: 3.500000 Case #2: 0.000000 Case #3: 2.333333
Added by: Ahmed Aly Date: 2009-07-15 Time limit: 3s Source limit:50000B Languages: All Resource: Google Code Jam 2008
Input
The first line of input contains a single integer T expressed in decimal with no leading zeroes, denoting the number of test cases to follow. The subsequent lines of input describe the test cases. Each test case begins with a single line, containing a single integer n expressed in decimal with no leading zeroes, the number of points to follow; each of the following n lines contains two integers x and y, both expressed in decimal with no leading zeroes, giving the coordinates of one of your points. You are guaranteed that T <= 30 and that no data set contains more than 30 points. All points in each data set will be no more than 500 units away from (0,0).
Output
Print, on a single line with two decimal places of precision, the area of the smallest square containing all of your points. An answer will be accepted if it lies within 0.01 of the correct answer.
Example
Input: 2 4 -1 -1 1 -1 1 1 -1 1 4 10 1 10 -1 -10 1 -10 -1 Output: 4.00 242.00
Added by: Ahmed Aly Date: 2009-07-15 Time limit: 3s Source limit:50000B Languages: All Resource: 14 July, 2007 - Waterloo local contest
Input
The first line contains F, the number of fences. F subsequent lines each contain two X,Y pairs each of which denotes the endpoints of a fence.
Output
On a single line, print three space-separated floating point numbers, each with a single decimal place. Presume that your computers output library will round the number correctly. The three numbers are: * the X value of the optimal location for the electricity, * the Y value for the optimal location for the electricity, and * the total (minimum) length of the wire required.
Example
Input: 3 0 0 0 1 2 0 2 1 0 3 2 3 Output: 1.0 1.6 3.7
Added by: Ahmed Aly Date: 2009-07-15 Time limit: 1s Source limit:50000B Languages: All Resource: USACO
4588. SETI
Problem code: NWERC04H
For some years, quite a lot of work has been put into listening to electromagnetic radio signals received from space, in order to understand what civilizations in distant galaxies might be trying to tell us. One signal source that has been of particular interest to the scientists at Universite de Technologie Spatiale is the Nebula Stupidicus. Recently, it was discovered that if each message is assumed to be transmitted as a sequence of integers a0, a1, ...an-1 the function f(k) = [IMAGE] (mod p) always evaluates to values 0 <= f(k) <= 26 for 1 <= k <= n, provided that the correct value of p is used. n is of course the length of the transmitted message, and the ai denote integers such that 0 <= ai < p. p is a prime number that is guaranteed to be larger than n as well as larger than 26. It is, however, known to never exceed 30 000. These relationships altogether have been considered too peculiar for being pure coincidences, which calls for further investigation. The linguists at the faculty of Langues et Cultures Extraterrestres transcribe these messages to strings in the English alphabet to make the messages easier to handle while trying to interpret their meanings. The transcription procedure simply assigns the letters a..z to the values 1..26 that f(k) might evaluate to, such that 1 = a, 2 = b etc. The value 0 is transcribed to * (an asterisk). While transcribing messages, the linguists simply loop from k = 1 to n, and append the character corresponding to the value of f(k) at the end of the string. The backward transcription procedure, has however, turned out to be too complex for the linguists to handle by themselves. You are therefore assigned the task of writing a program that converts a set of strings to their corresponding Extra Terrestial number sequences.
Input
On the first line of the input there is a single positive integer N, telling the number of test cases to follow. Each case consists of one line containing the value of p to use during the transcription of the string, followed by the actual string to be transcribed. The only allowed characters in the string are the lower case letters a..z and * (asterisk). No string will be longer than 70 characters.
Output
For each transcribed string, output a line with the corresponding list of integers, separated by space, with each integer given in the order of ascending values of i.
Example
Input: 3 31 aaa 37 abc 29 hello*earth
Output: 1 0 0 0 1 0 8 13 9 13 4 27 18 10 12 24 15
Added by: Ahmed Aly Date: 2009-07-15 Time limit: 2s Source limit:50000B Languages: All Resource: NWERC 2004
Input
On the first line one positive number: the number of testcases, at most 100. After that per testcase: One line containing two integers n (1 <= n <= 20 000) and m (0 <= m <= 50 000): the number of statements and the number of implications that have already been proved. m lines with two integers s1 and s2 (1 <= s1, s2 <= n and s1 = s2) each, indicating that it has been proved that statement s1 implies statement s2.
Output
Per testcase: One line with the minimum number of additional implications that need to be proved in order to prove that all statements are equivalent.
Example
Input:24 03 21 21 3Output:42
Added by: Hemant Verma Date: 2009-07-25 Time limit: 3s Source limit:50000B Languages: All except: C++ 4.3.2 TCL SCALA PYTH 2.6.2 ERL JS Resource: NWERC 2008
Input
On the first line one positive number: the number of testcases, at most 100. After that per testcase: One line with two integers n (2 <= n <= 100) and d (0 <= d <= 10^9): the number of stacks of stones and the maximum allowed height difference. One line with n integers hi (0 <= h i <= 10^9): the heights of the stacks.
Output
Per testcase: One line with the minimum number of stones that have to be added or removed or "impossible" if it is impossible to achieve the goal.
Example
Input:310 24 5 10 6 6 9 4 7 9 83 16 4 04 23 0 6 3Output:6impossible4
Added by: ????? [FameofLight] Date: 2009-07-27 Time limit: 15s Source limit:50000B Languages: All Resource: NWERC 2008 Regionals
Input
The first line of the input file contains t - the amount of test cases. The description of each test case follows. The first line of each test case contains five integers separated by spaces - n, m, k, l, g. Then m lines containing three integers a, b, c follow. Each lines means that nodes with numbers a and b are connected by the pipe with the carrying capacity of c. Next line contains k integers - the numbers of nodes where the gas should enter the pipeline. The last line of the test case contains l integers - the numbers of nodes where the gas should be moved. The gas can enter the pipeline in any of the k entrance nodes and can be moved to any of the l exit nodes. The nodes are numbered from 1 to n.
Constraints
1 <= t <= 20 2 <= n <= 100 1 <= m <= n*(n-1)/2 1 <= k, l <= n/2 1 <= g, c <= 1000000
Output
For each test case output a single integer on a separate line - the minimum cost of transit in thousands of dollars. If the transit of the needed volume is impossible, then output -1.
Example
Input: 1 6 8 1 1 1 1 2 1 1 3 2 2 4 3 2 5 3 3 4 4 3 5 2 4 6 4
5 6 1 1 6 Output: 200
Added by: Spooky Date: 2009-07-28 Time limit: 4s Source limit:50000B Languages: All Resource: Advancement Spring 2009, http://sevolymp.uuuq.com/
Input
First line contain T representing number of test case , for each test case first line contain message then follow N the number of lines for image then following N line contain image. 0<Length(message)<1000 0 < T,N < 10000
Output
For each test case output the image in same format as input.
Example
Input:2hi1255123212001201222hi2255123212001201222Output:254120214003200222254120214003200222
Added by: ????? [FameofLight] Date: 2009-07-28 Time limit: 0.5s Source limit:50000B Languages: All Resource: Modified Topcoder Problem
4667. Gremlins
Problem code: GREMLINS
Gremlins are small funny furry creatures. Once they were considered to be evil but that time has past and most gremlins live a decent family life now.There are N distinct types of gremlins. Their origin is rather mysterious. Legend says that T years ago, N gremlins, one of each type, were born in a lab accident. Their reproduction method is, however, well studied. No mating ritual is required for gremlins to multiply. All they need is a few drops of water and the magic happens. Once a type i gremlin starts its reproduction process, K i small furry balls are created. For each furry ball we know what is the type of gremlin that will hatch from the furry ball and how long will it take for that to happen. Unfortunately, the original gremlin dies in the process.A type i gremlin will start its reproduction process exactly Y i years after it is born(ie. hatched from the furry ball). Knowledge about the ancestors of a gremlin is passed on genetically, so each gremlin knows a list of his ancestors as soon as it is born. Write a program that will find the length of the longest list of ancestors among all gremlins that ever lived (gremlins that still live are included, but unhatched furry balls are not), given the information about reproduction process and time elapsed since the lab accident that created initial gremlins, assumingall gremlins that were supposed to hatch this year have already hatched.
Input
The first line contains two integers N and T (1 <= N<= 100, 1<= T <=10 15 ), the number of gremlin types and the number of year that has passed since the lab accident. The next 3.N lines give reproduction details for each gremlin type. The first line of i-th block contains two integers K i and Y i (1<=Y i <= 1000,1<= K i <= 1000). The second line contains K i integers representing gremlin type for each furry ball. The third line contain K i integers between 1 and 1000 representing hatching time for each furry ball, in years.
Output
Output the length of the longest list of ancestors among all gremlins that ever livedin a single line.
Examples
Input: 1 42 1 10 1 5 Input: 2 42 1 10 1 5 1 5 1 5 Input: 3 8 4 5 1 2 3 2 1 2 1 3 1 1 3 1 2 1 1 2 2 1 Output: 4
Output: 2
Output: 3
Added by: Luka Kalinovcic Date: 2009-08-06 Time limit: 5s Source limit:50000B Languages: All except: ERL TECS JS Resource: own problem
Input
On the first line one positive number: the number of test cases, at most 50. After that, for each test case: One line with two integers n (2 <= n <= 10000) and d (0 <= d <= 10^9): the number of stacks of stones and the maximum allowed height difference. One line with n integers hi (0 <= h i <= 10^9): the heights of the stacks.
Output
For each test case, output one line with the minimum number of stones that have to be added or removed, or "impossible" if it is impossible to achieve the goal.
Example
Input:310 24 5 10 6 6 9 4 7 9 83 16 4 04 23 0 6 3Output:6impossible4
Added by: Lovro Puzar Date: 2009-08-08 Time limit: 20s Source limit:50000B Languages: All Resource: Problem CCROSS with larger limits (originally from NWERC 2008)
Input
Each line contain N and M , seperated by a space , End of Input is marked by 0 0 which should not be processed. Both N and M fits in integer range.
Output
For each input , output the respective probability upto 6 decimal digits.
Example
Input:1 00 141 410 0Output:0.0000001.0000000.023810
Added by: Hemant Verma [FameofLight] Date: 2009-08-15 Time limit: 1s Source limit:1024B Languages: All Resource: A Classical Probability Problem
4681. Twice
Problem code: TWICE
Given a string S, find the longest substring that appears at least twice in S (occurrences may overlap).
Input
The first line contains an integer L (1 <= L <= 200000), the length of S. The second line contains the string S, consisting of exactly L lowercase letters (a-z).
Output
Output the length of the longest substring that appears at least twice in S. If there is no such substring, output 0.
Example
Input:11sabcabcfabcOutput:3Input:18trutrutiktiktappopOutput:4
Added by: Lovro Puzar Date: 2009-08-21 Time limit: 1s-5s Source limit:50000B Languages: All Resource: Own problem
Input
The first line contains an integer T (T <= 100000). T lines follow, each contains three positive integers n, a, b, where n, a, b <= 10 9 and a <= b.
Output
T lines, each contains a single integer denoting to the number of points according to the description.
Example
Input:58 2 108 4 47 1 5713241932 127894722 957823358759096725 496666160 980149020Output:13451133963383064794976145994569610845896
Warning: enormous input/output data, be careful with certain languages Added by: Lordxfastx Date: 2009-08-26 Time limit: 3s Source limit:50000B Languages: All Resource: Own problem
4828. ZSequence
Problem code: ZSEQ
You will be given a sequence A containing N positive integers, a 1 , a 2 , ..., a N . Let S(i, j) = a i + a i + 1 + ... + a j , if i <= j. You should find K - 1 indexes, m 1 < m 2 < ... < m K - 1 such that lb 1 <= S(1, m 1 ) <= ub 1 , ..., lb i <= S(m i - 1 + 1, m i ) <= ub i and lb K <= S(m K - 1 + 1, N) <= ub K . If the case of multiple solution, print the first lexicographically.
Input
The first line of the standard input contains two space-separated integers N (2 <= N <= 5 000) and K (1 <= K - 1 <= N - 1). Next N lines contain integers a 1 , a 2 , ..., a N , respectively, 1 <= a i <= 10 5 . i-th of the next K lines contain integers lb i and ub i , 1 <= lb i <= ub i <= 10 9 .
Output
On the first line of the standard ouput you should print space-separated K - 1 indices of the solution as already explained. If such solution does not exist, you should print only one integer -1. Note: Memory limit is 16MBs.
Example
Input:4 312341 32 43 10Output: 1 2Input:4 312341 32 43 4Output:2 3Input:4 312341 32 43 3Output:-1
Added by: Slobodan Date: 2009-09-19 Time limit: 0.5s-0.600s Source limit:50000B Languages: All except: TCL SCALA Resource: Z-Trening, own problem
4871. Bridge
Problem code: BRI
Find a place to build a bridge over the river, so as to minimize total cost of the route between two cities A and B, located on opposite sides of the river.
Input
There is a single positive integer T on the first line of input (equal to about 100000). It stands for the number of test cases to follow. Each test case is exactly one line, containing six integers a, b, c, h, s1 and s2 (0 < a, b, c, h, s1, s2 < 100), separated by spaces. a - the distance from city A to the river (the length of segment AE in the figure), b - the distance from city B to the river (the length of segment FG in the figure), c - the distance between A and B along the axis parallel to the river (the length of segment BF in the figure) and h - the width of the river (EG in the figure). s1 and s2 are the costs of unit of road and bridge respectively.
Output
For each test case your program should write a single number to the standard output, equal to the minimal total cost of the route between A and B, accurate up to two digits after the decimal dot.
Example
Input:11 1 1 1 1 1Output:3.16
Added by: Ruslan Sennov Date: 2009-09-27 Time limit: 7s Source limit:50000B Languages: All except: SCALA Resource: Based on HSPL09BRI
Output
Print "YES" if there are two distinct walks with the same labelling from node 0 to node 1, otherwise print "NO".
Example 1
Input:4 40 2 00 3 02 1 13 1 2Output:NO
Example 2
Input:10 90 2 02 1 02 3 03 4 04 2 02 5 05 6 06 7 07 8 08 2 0Output:YES
In this case the shortest labelling that appears on two walks is 0 repeated 10 times. drawing of example 2 input Added by: Radu Grigore Date: 2009-09-29 Time limit: 1s-5s Source limit:50000B Languages: All except: SCALA
Input
The first line contains an integer T, denoting the number of test cases. For each test case, the first line contains two positive integers n and m, denoting the number of vertices and the number of edges in the DAG. The second line contains n positive integers w 1 ..w n , denoting the weights of vertices. The next m lines contain two positive integers u,v, denoting an edge from u to v.
Output
For each test case, print a line consisting of n numbers, denoting the sum for each vertex.
Example
Input:24 3510 713 383 990 4 14 22 14 4450 379 230 520 3 42 42 32 4Output:510 1223 383 2213450 1129 750 520
Constraints
Input Set 1: numberOfTestCases <= 40, n <= 100, m <= 10000 Input Set 2: numberOfTestCases <= 2, n <= 1000, m <= 500000 Input Set 3: numberOfTestCases <= 2, n <= 20000, m <= 500000 The weights are no more than 1000 Added by: Lordxfastx Date: 2009-09-30 Time limit: 1s-26s Source limit:50000B Languages: All except: SCALA Resource: Own problem
Input/Output
The input will consist of several test cases, one per line. For each test case, compute the run-length mathematics expression and output the original expression and the result, as shown in the examples. The (decimal) representation of all operands and results will fit in signed 64-bit integers.
Example
Input: 11 + 11 988726 - 978625 12 * 41 1124 / 1112 13 * 33 15 / 16 Output: 11 + 11 = 12 988726 - 978625 = 919111 12 * 41 = 42 1124 / 1112 = 1112 13 * 33 = 39 15 / 16 = 10
Added by: Miorel Palii Date: 2009-10-04 Time limit: 2s Source limit:4096B Languages: All Resource: University of Florida Local Contest - April 13, 2009
Input
There are several numbers given, each one in a line. The input ends with a number 0. The number of test cases is about 10.
Output
For each number, print in a line the factorization of it. See examples below for the output format.
Example
Input: 3111989 13091989 2432902008176640000 77145199750673 0 Output: 317^1 9817^1 17^2 89^1 509^1 2^18 3^8 5^4 7^2 11^1 13^1 17^1 19^1 328439^1 234884407^1
Added by: Ng Minh u+c Date: 2009-10-08 Time limit: 20s Source limit:50000B Languages: All except: SCALA
Input
There are several numbers given, each one in a line. The input ends with a number 0. The number of test cases is about 10.
Output
For each number, print in a line the factorization of it. See examples below for the output format.
Example
Input: 3111989 13091989 77145199750673 0 Output: 317^1 9817^1 17^2 89^1 509^1 328439^1 234884407^1
Added by: Ng Minh u+c Date: 2009-10-08 Time limit: 5s Source limit:50000B Languages: All except: SCALA
Input
There are several numbers given, each one in a line. The input ends with a number 0. The number of test cases is about 10.
Output
For each number, print in a line the factorization of it. See examples below for the output format.
Example
Input: 3111989 13091989 2432902008176640000 77145199750673 0 Output: 317^1 9817^1 17^2 89^1 509^1 2^18 3^8 5^4 7^2 11^1 13^1 17^1 19^1 328439^1 234884407^1
Added by: Ng Minh u+c Date: 2009-10-08 Time limit: 20s Source limit:50000B Languages: All except: SCALA
Input
There is a single positive integer T on the first line of input. It stands for the number of test cases to follow. Each test case is exactly five lines, containing description of the route between two cities A and B, located on opposite sides of the rivers. n a 0 a 1 a 2 ... a n h 1 h 2 ... h n c s 0 s 1 s 2 ... s n Here n is the number of the rivers which are parallel to each other, a i - the distances between rivers or between rivers and cities, h i - the widths of the rivers, c - the distance between A and B along the axis parallel to the river, s i - the costs of the unit of the bridge through i th river and s 0 - the cost of the unit of the road. Example for n=2 you can see on the picture. All integers in input are positive and less than 50, except c - it is less than 2000.
Output
For each test case your program should write a single number to the standard output, equal to the minimal total cost of the route between A and B, accurate up to two digits after the decimal dot.
Example
Input: 1 2 1 1 1 1 1 1 1 1 1 Output: 5.10
Added by: Ruslan Sennov Date: 2009-10-08 Time limit: 7s Source limit:50000B Languages: All except: SCALA Resource: BRIDGE
Input
The input consists of several test cases. The first line of the input file contains one integer N, the number of cases that follow. Each test case starts with a blank line. Then follow the x and y coordinates of the ball. The third line contains the x coordinate, y coordinate and action radius of the FC Barcelona Goalkeeper. Have a look at the images and the corresponding sample input given: Sample input 1 Sample input 1: Goal! Goal Sample input 2 Sample input 2: no Goal No Goal
Output
For each test case, print a line containing one of the following words: "Goal!" if it is possible to shoot the ball in a straight line into the goal, without the goalkeeper intercepting it. "No goal..." if it is not possible to do so.
Example
Input:215.0 -20.042.5 2.0 5.020.0 11.034.0 6.0 5.0Output:Goal!No goal...
Added by: Jonas Wagner Date: 2009-10-14 Time limit: 1s Source limit:50000B Languages: All except: ERL
Input
The first line of the input contains 1 <= N <= 10, the number of test cases. Then follow three numbers 1<=H<=1000, 1<=P<=100000 and 1<=S<=1000000 denoting the number of hotels, places of interest and streets, respectively. In order to simplify things, we just represent hotels and places of interests as numbers: Hotels are numbered from 1 to H, whereas places are numbered from 1001 to 1000+P. Each of the following S lines contains two numbers A s and B s , indicating that there is a one-way street from object A s to B s . A blank line precedes each test case. The sample input corresponds to the following graph: Graph for sample input
Output
For each testcase, print the id of the best hotel followed by the number of places of interest accessible from this hotel (and vice versa) on a line.
Example
Input:12 4 101 10012 10012 10022 10032 10041001 10021002 11002 10031004 21004 1001Output:1 2
Added by: Jonas Wagner Date: 2009-10-14 Time limit: 10s Source limit:50000B Languages: All except: ERL
Input
The salesman kept detailed records of his travels. Youll be getting a series of lines of the form "Some text (X, Y)." indicating that the salesman has been at the point X kilometers east and Y kilometers north of the origin of a Cartesian plane.
Output
For each segment of the trip, output the total distance traveled up to that point as a line in the format "The salesman has traveled a total of D kilometers." Show three digits after the decimal point when printing D. Note that the salesman only travels in straight lines (even after a couple of drinks).
Example
Input: I started out at (0, 5). Then I traveled to (3.7, 5). After a couple of drinks I wobbled to (2.7, 4). The next morning I woke up near (4, 3). I finished my journey in (-.2, 8). Output: The salesman The salesman The salesman The salesman
a a a a
of of of of
Added by: Miorel Palii Date: 2009-10-15 Time limit: 2s Source limit:4096B Languages: All except: ERL Resource: University of Florida Team Practice 2009
Lost in Madrid
Programming contests can be very exhausting. After five hours of intensive programming, you want to get some well-deserved rest and make yourself on the way to your hotel. Unfortunately, you dont quite remember the way to get there... but that doesnt matter: In good spirits (due to a successful contest?) you set out. As you dont know the exact way, you decide to walk around in the following fashion: Start at the contest site (denoted by id0) and choose a street at random. Follow the street to the next intersection, and choose another street at random. Every street at an intersection has the same probability of being chosen. You might even decide to take the street back where you came from. As youre on foot, you can use the streets in both directions, unlike in "Madrids One Way Streets". Your walk stops once you encounter your hotel (id=300) or one of the tourist information booths (id>290) where you can ask for the way. You can assume there is at least one path connecting you to either type of object. Because you dont speak a lot of spanish (apart from some verbs that you can conjugate thanks to problem "Spanish Verbs"), youd like to know the probability that you arrive at your hotel directly, without first arriving at a tourist information booth.
Input
The input consists of several testcases, separated by an empty line. Each testcase starts with S, the number of streets. The following S lines contain two numbers 0<=A,B<=300 each. This means that there is a street connecting intersection A to intersection B. The same street will not appear multiple times in the input. The input ends with S=0. This testcase should not be processed.
Output
For each testcase, print the probability to arrive directly at the hotel, rounded to three decimal places.
Example
Input:30 2910 2920 30020 300291 30020 291291 30070 2920 880 140 300292 8888 30014 3000Output:0.3331.0000.0000.579
Added by: Jonas Wagner Date: 2009-10-16 Time limit: 10s Source limit:50000B Languages: All except: ERL
Input
The input consists of several testcases. Each problem description starts with the numbers 1<=M<=100 and 0<=D<= 10, the number of topics and the number of dependencies. The following M lines contain the name of a topic (one word) and the number L t of paragraphs (1<=L t <=1000) of the topic, separated by a space. The next D lines each contain two topic names separated by space, indicating that the first topic depends on the second. The input file ends with a testcase having M=0, which should not be processed.
Output
For each test case, print a single line containing the maximum number of topics that you can fit in the library, followed by the number of free paragraphs that remain. If several solutions yield the same number of topics, choose the one that leaves as much empty space as possible.
Example
Input:5 4Dijkstra 50Intersections 30Lines 70Circles 120Points 40Intersections LinesIntersections CirclesLines PointsCircles Points0 0Output:3 90
Notes
The sample output corresponds to choosing Dijkstras algorithm, lines and points.
Added by: Jonas Wagner Date: 2009-10-17 Time limit: 10s Source limit:50000B Languages: All except: ERL
Input
The input file consists of several data sets. The first line contains the number of data sets T (1 <= T <= 10000). The fallowing T lines describe the data sets, one triple (N, M, K) for each.
Output
For each data test in the input write the gcd(N, M).
Example
Input:2648570884104668119354133 420644191708310845403065233058235585438328857465 108017723549 59173349743176010825 9Output:11Note: For the first trio a = 648570884104668119354126 and b = 7.For the second a = 8016478423 and b = 1245126.
Added by: Frank Rafael Arteaga Date: 2009-10-24 Time limit: 0.100s-0.300s Source limit:1000B Languages: All except: JAVA PYTH 2.6.2 PYTH 2.5 RUBY PIKE PHP LISP sbcl LISP clisp HASK Resource: Discrete Math
Input
The first line of input will contain an integer N <= 100, indicating the number of test cases. Each of the next N lines will contain an integer S, the number of points scored by a team in a game. S will be between 0 and 100000 inclusive. (Hey, the orange & blue [Flame-point Siamese] team could make it happen.)
Output
For each test case, output one line containing a single integer: the number of ways a team can score exactly S points.
Example
Input: 2 10 6 Output: 5 3
Added by: Miorel Palii Date: 2009-10-26 Time limit: 1s Source limit:4096B Languages: All Resource: University of Florida Local Contest - September 27, 2009
Input
The first line of input contains an integer T (1 <= T <= 100), the number of test cases follow. Each test case begins with two integers G and N (1 <= N <= G <= 32) in one line, denoting the amount of Panda Knights gold and the number of needed magic shard types respectively. The next line contains N integers, denoting how many magic shards of each type (1 <= M1 ... MN <= 32, M1 + ... + MN <= G) are needed to craft the Mystic Stick.
Output
For each of the test cases, print the test case number followed by the probability (in percentage, correct to 6 decimal places - Mr. Wah is paranoid about this game) that Panda Knight will be able to craft the Mystic Stick, with the format as shown by the sample output.
Sample Input 5 3 2 1 1 8 3 3 2 2 10 3 1 2 3
7 7 1 1 1 1 1 1 1 32 8 1 1 1 1 1 1 1 1 Output for Sample Input Case #1: 75.000000 Case #2: 23.472032 Case #3: 58.934106 Case #4: 0.611990 Case #5: 89.127753
Explanation for 1st sample test case: There are 23 = 8 possible combinations of shard types that Knight Panda can get by purchasing 3 Mystery Boxes with his available gold:
1. Type 1, Type 1, Type 1 2. Type 1, Type 1, Type 2 3. Type 1, Type 2, Type 1 4. Type 1, Type 2, Type 2 5. Type 2, Type 1, Type 1 6. Type 2, Type 1, Type 2 7. Type 2, Type 2, Type 1 8. Type 2, Type 2, Type 2
Since there are 6 out of 8 combinations that gives required amount of shards (at least one Type 1 shard and one Type 2 shard), the probability that Panda Knight will be able to craft the Mystic Stick is 6/8 = 75%. Added by: VOJ problem setters Date: 2009-10-28 Time limit: 3s Source limit:50000B Languages: All Resource: ACM ICPC - Jakarta 2009
5103. Top 10
Problem code: TOP10
Given a dictionary containing less than N = 20000 words labeled from 1 to N. Each word consists of lowercase characters (from a to z) with arbitrary length. The total number of characters in the dictionary is at most 100,000. Your task is to answer at most Q = 100000 queries. Each query qi is also a word (as defined above). For each query, you have to print the "Top 10" words in the dictionary with the following rules: All the words in the "Top 10" have to contain the substring qi. All the words in the "Top 10" have to be sorted in this order: 1. The words with shorter length come first, if they have equal length then 2. The lexicographically smaller words come first, otherwise 3. The words with smaller label come first. If the number of words in the dictionary that contains the substring qi is less than 10 then print all the words otherwise, print only the top-10 words (note: the words are printed using their labels). If there is no word in the dictionary that contains the substring qi then print "-1" (without the quotes). Input The first line contains the number N. The next N lines contains the N words in the dictionary (the ith line is the word with label i). The next line contains the number Q followed by the Q lines containing the queries. Output For each query, print one line containing the labels of the "Top 10" words (separated by a space) in the dictionary using the rules defined above. Sample Input 17 acm icpc regional asia jakarta two thousand and nine arranged by universitas bina nusantara especially for you 5 a an
win b z Output for Sample Input 1 8 4 13 5 10 3 7 14 15 8 10 7 14 -1 11 13 -1 Added by: VOJ problem setters Date: 2009-10-28 Time limit: 6s Source limit:50000B Languages: All except: C++ 4.3.2 TECS Problem Setter: Felix Halim Resource: >ACM ICPC - Jakarta 2009<td>
2345 Output for Sample Input 0.666667 0.923077 Explanation for the 1st case: This random number generator generates a sequence of 1, 2, 0, 1, 2, ... The number of spam emails is: posi = {1, 0, 2, 1}, and the number of non-spam emails is negi = {2, 1, 0, 2}. The optimal classifier treats emails with number of term "free" between 2 and 3 as spam, with R = 3/4 and P = 3/5, resulting F = 2/3. Another way of producing optimal classifier is to consider emails with number of term "free" equals to 2 as spam. Added by: VOJ problem setters Date: 2009-10-28 Time limit: 3s Source limit:50000B Languages: All except: C++ 4.3.2 TECS Problem Setter: ardiankp Resource: >ACM ICPC - Jakarta 2009<td>
For each simulation print "Simulation #n" without double quote(") and #n replace by the simulation number start with 1. The next three lines each contain path, life force and experience. Use L (left), R (right), D (down), U (up) to describe the path that should be taken by the hero. If its not possible to reach the finish point then print "No solution." without double quote (") instead of the three lines. Print blank line between simulation. Sample Input 10 5 20 1000 33 ### SEF ### 10 50 15 10 0 0 100 74 ####### S12E#2# #IE456F ####### 3 10 5 10 100 20 10 0 0 10 33 ### SEF ### 10 50 15 Output for Sample Input Simulation 1 RR 980 35 RR 980 35 RR 980 35 Simulation 2 RDURRDRRR 181 5 RDRRUDRRR 90 25 RDRRRRR 94 20 Simulation 3 No solution. Added by: VOJ problem setters Date: 2009-10-28 Time limit: 5s Source limit:50000B Languages: All except: C++ 4.3.2 TECS Resource: ACM ICPC - Jakarta 2009
Input
There will be several test cases, one per line, each consisting of a single integer between 2 and 10 7 inclusive. An input of zero will be used to tell your program to stop processing.
Output
For each test case, print out two lines! The first should show the given number of marbles written as a product of non-rectangular numbers, following the example of the sample output. Factors must be written in non-decreasing order and separated by multiplication signs. Also print out spaces around the equals and multiplication signs to improve readability. The second line of output for each test case should be in the format: "With X marbles, Y different rectangles can be constructed." Again, dont forget to replace X and Y with the proper values.
Example
Input: 24 23 0 Output:
24 = With 23 = With
2 * 2 * 2 * 3 24 marbles, 4 different rectangles can be constructed. 23 23 marbles, 1 different rectangles can be constructed.
Added by: Miorel Palii Date: 2009-10-28 Time limit: 5s Source limit:4096B Languages: All Resource: University of Florida Local Contest - September 9, 2007
Input
Line 1: 4 integers: N, M, S, T (N <= 10 4 ; M <= 10 5 ) Next M line: Line i include 3 integers u i , v i , c i : distance of two places u i and v i is c i . (c i <= 2000000000).
Output
Length of the itinerary if it exists. Else print -1.
Example
Input:5 7 1 51 2 31 4 82 3 52 4 43 5 54 3 84 5 3Output:24
Added by: HNUE Date: 2009-10-30 Time limit: 1s Source limit:50000B Languages: All Resource: Mr. Le Minh Hoang - HNUE
Input
The input consists of several test cases. Each test case starts with the number of inhabitants N (2 <= N <= 100000). The following line contains n integers a i (-1000 <= a i <= 1000). If a i >= 0, it means that the inhabitant living in the i th house wants to buy a i bottles of wine. If a i < 0, he wants to sell -a i bottles of wine. You may assume that the numbers a i sum up to 0. The last test case is followed by a line containing 0.
Output
For each test case print the minimum amount of work units needed so that every inhabitant has his demand fulfilled.
Example
Input55 -4 1 -3 16-1000 -1000 -1000 1000 1000 10000Output:99000
Added by: HNUE Date: 2009-10-30 Time limit: 0.300s Source limit:50000B Languages: All Resource: UVA
Input
Input contains several cases. Each case has 2 strings A and B with length no longer than 100000 in 2 lines. Process the input until EOF. The strings consist of only digit 1-9.
Output
For each case, output the minimal possible result.
Example
Input:369479966612345Output:347996912345666
Added by: 3xian Date: 2009-10-30 Time limit: 1s-12s Source limit:50000B Languages: All except: PERL 6 Resource: GDUT Monthly
Input
The first line contains t (1<=t<=10), the number of test cases followed. Each test case begins with three integers w,l,b(1<=w,1<=100, 0<=b<=10). Each of the following b lines contains three integers integers xi,yi,ri(0<=x<=w, 0<=y<=l, 0?r<=100). The bridge is guaranteed to be connected before the last bomb.
Output
For each test case, print the minimal radius of the last bomb.
Example
Input:
3100 100 215 50 2090 50 30100 100 150 50 40100 100 110 50 10 Output: 135040
Added by: 3xian Date: 2009-10-31 Time limit: 1s Source limit:50000B Languages: All Resource: Zhuhai Contest 2008
Input
The input le contains several test cases, each one of them in a separate line. Each test case has a word and a positive integer that should generate the corresponding rectangular pattern. The word is a string of alphabetic characters (a..z). The number is less than 10. A line whose contents is a single period character means the end of the input (this last line is not to be processed).
Output
Output texts for each input case are presented in the same order that input is read. For each test case the answer must be a left aligned Kitty pattern corresponding to the input.
Example
Input:Love 1Kitty 2.Output:LoveoveLveLoeLovKittyKittyittyKittyKttyKittyKityKittyKityKittyKitt
Added by: Daniel Gmez Didier Date: 2009-10-31 Time limit: 1s Source limit:50000B Languages: All
5145. Dja vu
Problem code: DEJAVU
Please click here to download a PDF version of the contest problems. The problem is problem D in the PDF. Remember that you must use stdin/stdout at SPOJ. Added by: Xilinx Date: 2009-11-01 Time limit: 35s Source limit:50000B Languages: All except: C99 strict Resource: Blue Marys gifts of her retirement - ACM/ICPC Regional Contest, Hangzhou 2008
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. Each test consist of a single number a.
Constraints
1 <= t <= 100000 2 <= a <= 10 6
Output
For each test print the least positive value of n for which f(n) > g(n).
Example
Input: 3 2 3 4 Output: 4 7 9
Added by: Spooky Date: 2009-11-01 Time limit: 2s Source limit:50000B Languages: All Resource: Advancement Autumn 2009, http://sevolymp.uuuq.com/
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. The test starts with a 3x3 matrix, consisting of 1s and 0s. The 1 in i-th row and j-th column of the matrix means that the move from rod i to rod j is allowed, otherwise it is not allowed. The next line of each test contains the number n - the amount of disks for the corresponding testcase.
Constraints
1 <= t <= 10000 2 <= n <= 39
Output
For each test print the minimal number of moves in which the puzzle can be solved or "Epic Fail..." if its impossible to solve the puzzle under such limitations.
Example
Input: 3 011 101 110
Added by: Spooky Date: 2009-11-02 Time limit: 2s Source limit:50000B Languages: All Resource: Advancement Autumn 2009, http://sevolymp.uuuq.com/
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. Each test consists of the single integer n
Constraints
1 <= t <= 10000 1 <= n <= 10 6
Output
For each test print the needed ratio with six digits in the fractional part.
Example
Input: 2 1 2 Output: 1.000000 1.200000
Added by: Spooky Date: 2009-11-03 Time limit: 1s Source limit:50000B Languages: All Resource: Advancement Autumn 2009, http://sevolymp.uuuq.com/, author: Alexey Shchepin
Input
The first line of the input file contains number n - the amount of diseases known to Chaos and his team. Then n lines follow describing each disease. The description of the disease starts with the name of the disease. Then number k follows, that is the amount of different symptoms caused by the disease. Then there go the names of the symptoms separated by spaces. After the description of all the diseases there is number t - the amount of cases to diagnose. After that t lines follow each containing a set of symptoms. Each set starts with the number q - the amount of different symptoms. Then q names of the symptoms follow separated by spaces. The names of all diseases and symptoms consist of only small latin letters and dont exceed 20 characters. Each symptom in each set is explained by at least one disease.
Constraints
1 <= n <= 1000 1 <= k <= 10 1 <= t <= 10000 1 <= q <= 10 There are no more than 1000 different symptoms.
Output
For each case to diagnose first print the line "Diagnosis #x:" where x is the case number starting from one. Then list all the diseases which explains the corresponding set of symptoms best. The diseases should be listed one in line and in the same order in which they were given in the input file.
Example
Input: 3 migraine 2 headache nausea poisoning 3 nausea stomachache fever flu 3 fever cough headache
4 1 2 2 4
Output: Diagnosis poisoning flu Diagnosis migraine Diagnosis migraine poisoning flu Diagnosis flu
#1:
#2: #3:
#4:
Added by: Spooky Date: 2009-11-03 Time limit: 3s Source limit:50000B Languages: All Resource: Advancement Autumn 2009, http://sevolymp.uuuq.com/
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. Each test consist of three integers a, b, c - the lengths of the roads. It is guaranteed that its possible to build such a garden.
Constraints
1 <= t <= 1000 1 <= a, b, c <= 1000
Output
For each test print the area of the garden with two digits in the fractional part.
Example
Input: 1 3 4 5 Output: 19.83
Added by: Spooky Date: 2009-11-07 Time limit: 1s Source limit:50000B Languages: All Resource: Advancement Autumn 2009, http://sevolymp.uuuq.com/, author: Alexey Shchepin
5294. Recurrence
Problem code: REC
Let F0 = 1. Fn = a*Fn-1 + b for n >= 1. Find Fn (mod M).
Input
The first line contains T the number of test cases. Each of the next T lines contains 4 space seperated integers a, b, n and M.
Constraints
T <= 20000 0 <= a, b, n <= 10^100 1 <= M <= 100000
Output
Output T lines, one corresponding to each test case.
Example
Input:31 1 1 102 1 2 55 2 20 30Output:227
Added by: abhijith reddy d Date: 2009-11-14 Time limit: 3s-6s Source limit:50000B Languages: All except: JS
Input
The first line of input contains a single integer P, (1 <= P <= 1000), which is the number of data sets that follow. Each data set is a single line that contains the data set number, followed by a space, followed by a decimal integer giving the number (n) of bits in the bit strings, followed by a single space, followed by a decimal integer (k) giving the desired adjacent bit count. The number of bits (n) will not be greater than 100 and the parameters n and k will be chosen so that the result will fit in a signed 32-bit integer.
Output
For each data set there is one line of output. It contains the data set number followed by a single space, followed by the number of n-bit strings with adjacent bit count equal to k.
Example
Input:101 5 22 20 83 30 174 40 245 50 376 60 527 70 598 80 739 90 8410 100 90
Output: 1 62 634263 18612254 1682125015 448747646 1609167 229373088 991679 1547610 23076518
Added by: Tamer Date: 2009-11-14 Time limit: 3s Source limit:50000B Languages: All Resource: ACM Greater New York Regional Contest 2009
Input
The first line contains the number of scenarios. For each scenario you are given a line containing x1 y1 z1 x2 y2 z2, defining the two corners A(x1, y1, z1), B(x2, y2, z2) (1000<= x1<x2, y1<y2, z1<z2 <=1200) of the sky. The combat is so fierce that every point in the cube is occupied by an enemy plane at first. Next line is a number of operation q. Next q lines: (0<q<10000) A character U: followed by 4 integers, a center point M(xi, yi, zi) ,the range is ri. A character Q: followed by 3 integers, a position N(xi, yi, zi), if a plane belongs to us, print "Friend" else print "Enemy". Points M and N are all in cube given above.
Output
Print a line for every Q operation.
Example
Input:11000 1000 1000 1002 1002 10024U 1000 1000 1000 0U 1001 1001 1001 1Q 1000 1000 1000Q 1001 1001 1001Output:EnemyFriend
Added by: Hemant Verma Date: 2009-11-14 Time limit: 1s Source limit:2000B Languages: All Resource: Alkhwarizm 2009
Input
There will be multiple test cases with number N(1<=N<=1000000) per line.
Output
A character [A-Z] per line for each number N representing the Nth number in the special sequence.
Example
Input:3610Output: TERM 3 IS BTERM 6 IS CTERM 10 IS D
Added by: Hemant Verma Date: 2009-11-14 Time limit: 1s Source limit:50000B Languages: All Resource: Alkhwarizm 2009
Input
The input contains multiple test cases. For each test case, the first line is an integer N ( 1 <= N <= 200000 ), which is the number of intervals. Then come N lines, the i-th of which contains two integers: A i and Bi ( A i , B i will not exceed the 32-bit integer) specifying the two parameters described above.
Output
For each test case, output one line containing n space-separated integers, the i-th of which specifying the number of intervals that can cover it but not covered by it.
Example
Added by: Hemant Verma Date: 2009-11-14 Time limit: 3s Source limit:50000B Languages: All Resource: Alkhwarizm 2009
Input
The first line contains T the number of test cases (1 <= T <= 30). The first line of each test case contains N, the number of gunslingers in town (2 <= N <= 60). Each of the next N lines contains the name of the gunslinger (between 1 and 20 lower case letters, each gunslinger will have a unique name), his reaction time in milliseconds (1 <= reaction time <= 1000) and whether Alice likes him or not (Y or N), separated by spaces.
Output
For each test case, a line containing a single integer equal to the minimum number of rounds in which Alice needs to remove a bullet, or -1 if it is impossible for her desire to be fulfilled.
Example
Input:33good 100 Ybad 200 Nugly 100 N3 good 100 Nbad 200 Nugly 100 N3 good 100 Ybad 100 Nugly 100 NOutput: 10 -1Explanation1. Alice likes only Good, so she removes a bullet from the gun which Ugly will use to fire at Good.Good survives while Bad and Ugly are killed.2. Alice doesnt like any of them, and she doesnt have to lift a finger to remain single.3. Alice likes only Good, but all of them are equally fast, so she cant save him and will remainsingle in his memory.
Added by: Hemant Verma Date: 2009-11-15 Time limit: 3s Source limit:50000B Languages: All Resource: Alkhwarizm 2009
Input
The first line is a integer T.the number of test cases for each test case The first line is a string S, composed of only lowercase letters, len (s) is the length of s, 1 <= len (s) <= 1000000; Next line, a number N (1 <= N <= 100000), denote that the number of quiries; The next N lines, each line contains a number x (1 <= x <= len (s)).
Output
For each x the output F (x);
Example
Input:1zaaxbaacbaa111234567891011Output: 012001300111
Added by: Hemant Verma Date: 2009-11-15 Time limit: 3s Source limit:50000B Languages: All Resource: Alkhwarizm 2009
Input
There will be many cases in the input file. The first line gives the number of test cases ( <= 20 ). Each case consists of 9 lines giving 4 integers each. Each line gives the information of a tile in the order A B C D. The tiles are randomly given.
Output
For each case, output YES or NO. Follow the sample for exact format
Example
Input:
Added by: Hemant Verma Date: 2009-11-17 Time limit: 1s Source limit:50000B Languages: All Resource: Alkhwarizm 2009
5449. Seinfeld
Problem code: ANARC09A
Im out of stories. For years Ive been writing stories, some rather silly, just to make simple problems look difficult and complex problems look easy. But, alas, not for this one. Youre given a non empty string made in its entirety from opening and closing braces. Your task is to find the minimum number of "operations" needed to make the string stable. The definition for being stable is as follows: 1. An empty string is stable. 2. If S is stable, then {S} is also stable. 3. If S and T are both stable, then ST (the concatenation of the two) is also stable. All of these strings are stable: {}, {}{}, and {{}{}}; But none of these: }{, {{}{, nor {}{. The only operation allowed on the string is to replace an opening brace with a closing brace, or visa-versa.
Input
Your program will be tested on one or more data sets. Each data set is described on a single line. The line is a non-empty string of opening and closing braces and nothing else. No string has more than 2000 braces. All sequences are of even length. The last line of the input is made of one or more - (minus signs.)
Output
For each test case, print the following line: k. N Where k is the test case number (starting at one,) and N is the minimum number of operations needed to convert the given string into a balanced one.
Example
Input: }{{}{}{}{{{}---Output: 1. 22. 03. 1
Added by: Mohammad Kotb Date: 2009-11-28 Time limit: 5s Source limit:50000B Languages: All except: JAR BASH TECS JS Resource: http://www.icpc-anarc.org
Input
Input consists of several test cases. Each test case is specified on N +2 lines. The first line contains an integer (1 <= N <= 1, 000) representing the number of missiles. The second line contains 5 real numbers X1 , Y1 , X2 , Y2 and T : (X1 , Y1 ) is the coordinates of the first tower, (X2 , Y2 ) is the coordinates of the second tower and (0 <= T ) is the total amount of energy generated from the power plants (the total area of the two magnetic disks). Each line of the remaining N lines contains two real numbers representing the landing coordinates of a missile. The absolute value of all the given real numbers is less than or equal to 100 and may include a decimal point followed by up to 3 digits. Any two consecutive numbers on the same line are separated by one or more white-space characters. Zero or more blank lines may appear between test cases. The last line of the input file is made of a single zero.
Output
For each test case, print the following line: k. M Where k is the test case number (starting at one,) and M is the minimum number of missiles that will NOT be deflected in the best distribution of energy among the two towers. Use p = 3.141.
Example
Input:6-3 0 3 0 40.833-1 4-2 2.51 25 2-4 0-3 -120 0 1 1 00 01 10Output:1. 22. 0
Added by: Mohammad Kotb Date: 2009-11-28 Time limit: 7s Source limit:50000B Languages: All except: TECS Resource: http://www.icpc-anarc.org
where A - B = C is the correct example, I (1 <= I <= 5000) is the number of questions in that section, Xi and Yi are the operands of each problem (0 < X, Y <= 2 100 ), and op is one of [+, -, *, %], denoting addition, subtraction, multiplication, or modulo. Output Your program should output in the following format:
SECTION 1 (BASE b) X1 op Y1 = Z1 X2 op Y2 = Z2 ... Xi op Yi = ZiSECTION 2 (BASE b) X1 op Y1 = Z1 X2 op Y2 = Z2 ... Xi op Yi = Zi...SECTION N (BASE b) X1 op Y1 = Z1 X2 op Y2 = Z2 ... Xi op Yi = Zi
where Zi is the solution to Xi op Yi, and b is the base used. (2 <= b <= 64). If the base is ambiguous, use the smallest base for which the example is correct and the questions are valid. Example Input:
4 K72Q - 9C5U = APRR 3 11JH4 - BMEB = PB04 % DQ9O = F0GM - UQR0 = A654A - 9A60E = AE3B 2 B94BA + 3460A = 123A29 % 5E065 = 37CR - olh = 2KSm 5 157W % 1bIJ = 1P56 % 1Eob = 1C6I * 1"uX = 1Ktc % 1BMf = 20ne * 22V" = BQfC - 4Kdb = 761H 29aFL * 3WU3 = 5fcV + 7fWL =
Output:
SECTION 1 (BASE 31) 11JH4 - BMEB = KS2O PB04 % DQ9O = BFLB F0GM - UQR0 = -FQA9 SECTION 2 (BASE 15) B94BA + 3460A = EDAC5 123A29 % 5E065 = 5594E SECTION 3 (BASE 64) 157W % 1bIJ = 157W 1P56 % 1Eob = AIX 1C6I * 1"uX = 2O3gS"I 1Ktc % 1BMf = 9Wz 20ne * 22V" = 46bA3EO SECTION 4 (BASE 42) 9aFL * 3WU3 = bBafS4L 5fcV + 7fWL = DfTA
Notes: large input/output data Added by: Jargon Date: 2009-12-10 Time limit: 1s-5s Source limit:50000B Languages: All except: TECS Resource: Own problem
Input
The first line contains two integers, L and N. L (3 <= L <= 300) is the number of locations and N (1 <= N <= 3000) is the number of requests. Locations are identified by the integers from 1 to L. Each of the next L lines contains L non-negative integers. The jth number in the line i+1 is the cost C(i,j), and it is less than 2001. The last line contains N integers, the list of the requests. A request is identified by the identifier of the location where the request occurs. Initially, the three service staff employees are located at location 1, 2 and 3, respectively.
Output
The first line contains one integer, M, the minimal total cost of serving the input sequence of the requests. The second line contains exactly N integers. The ith number is the identifier of the service staff employee (1, 2 or 3) who will serve the ith request. If there are multiple possibilities, your program should output one sequence only; it does not matter which one.
Example
Input:5 90 1 1 1 11 0 2 3 21 1 0 4 12 1 5 0 14 2 3 4 04 2 4 1 5 4 3 2 1Output:51 2 1 2 2 1 3 1 3
Added by: Frane Kurtovi Date: 2009-12-19 Time limit: 1s-75s Source limit:50000B Languages: All except: TECS Resource: CEOI 2005, Day 1
Input
Every line of the input contains a single number n. You are to find the fraction at nth node of fraction tree. Input file terminates with a 0 which is not to be processed.
Output
For each input , print numerator and denominator of the lowest form of the fraction seperated by a /. Output of each case to be done in seperate lines.
Example
Input:12370Output:1/11/22/13/1Constraints : 1<= # of test cases <=30000 1<=N<=10^10
1 1 uQs + Q Q Q
Q Q Q Q Q Q 1 2u e e e e e e % % % % % % 2 u1 e e e e e e % % % % % 1% 3 u A A A A A A 3 2 uA A A A A A
2 3 uA A A A A A 3 1 uA A A A A A 1 4 uA A 4 3 uA A 3 5 uA A 5 2 uA A 2 5 uA A 5 3 uA A 3 4 uA A 4 1 uA
Added by: Nikhil Garg Date: 2009-12-19 Time limit: 3s Source limit:50000B Languages: All except: TECS Resource: own
Input
The first line contains a positive integer T, the number of test cases, where T <= 100. The following T lines each contains two numbers N and M in this order, where N < 10 100 .
Output
Output T lines, with prime factorization of N according with example.
Example
Input: 3 210 48 983 982 14351 14112 Output: 210 = 2 * 3 * 5 * 7 983 = 983 14351 = 113 * 127
Added by: Paulo Roberto Santos de Sousa Date: 2010-01-18 Time limit: 10s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 C99 strict JAVA PAS gpc PAS fpc Resource: Own problem
6052. PBCGAME
Problem code: PBCGAME
The company "PBC" has made a game which consists of small platforms and pipes. There are 3 types of platforms: starting platforms (there are N1 of them), finishing platforms (there are N3 of them) and middle platforms (there are N2 of them). All starting platforms stand at identical height. Finishing platforms stand also at identical height. All heights of middle platforms are various. They have less height than starting, but greater height than finishing platforms. Each platform has an unique number from 1 up to N1+N2+N3. First N1 numbers are starting platforms, next N2 numbers are middle platforms, and the last N3 numbers are finishing platforms. All middle platforms are numbered in order of decrease of height. It means that if number of middle platform A is less than number of platform B, than height of A is greater than height of B. There is a ball on each of starting platforms. The ball can move from platform A to platform B if they are connected by a pipe, and height A is greater than height B. Each finishing platform can hold only one ball. If there is a ball on a platform the player can choose a direction of the further way of the ball, it means that he can choose a platform, where the ball will go. Also given a number C for each middle platform which means a maximum quantity of balls which can pass it during the game. The goal of the game is to drive the greatest possible number of ball to the finishing platforms. You need to find out what maximum quantity of balls can appear on finishing platforms at the end of the game.
Input
The input file has the following order: N1 N2 N3 C N1+1 ... C N1+N2 K1 A[1,1] ... A[1,K1] K2 A[2,1] ... A[2,K2] ... K N1+N2 A[N1+N2,1] ... A[N1+N2,K N1+N2 ] Where N1, N2, N3 are the amounts of starting, middle and finishing platforms. Cj is the maximum amount of balls, which can pass the middle platform with the number j (N1+1 <= j <= N1+N2) during the game. Ki is the number of pipes, connected with the platform i (1 <= i <= N1+N2). The elements of the array A, are the numbers of platforms where the ball can move from the appropriate platform (platforms with numbers i and A[i] are connected with a pipe).
Output
The output file must contain a number, which means the max amount of balls, which can appear at the finishing platforms at the end of the game.
Example
Input:3 4 332121 41 41 42 5 61 71 73 8 9 10 Output: 2
Limitations:
All the numbers are integer. 0< N1, N3 < 51 1 < N1+N2+N3 < 201 0 <= Cj <= 50 There are no pipes between starting platforms. There are no pipes between finishing platforms.
Added by: Phan Cng Minh Date: 2010-02-04 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: A.N. Danchenko - belarus
6072. Chocolate
Problem code: SOCOLA
Chocolate in its many forms is enjoyed by millions of people around the world every day. It is a truly universal candy, available in virtually every country around the world. You find that the only thing better than eating chocolate is to share it with friends. Unfortunately, your friends are very picky and have different appetites: some would like more and others less of the chocolate that you offer them. You have found it increasingly difficult to determine whether their demands can be met. It is time to write a program that solves the problem once and for all! Your chocolate comes as a rectangular bar. The bar consists of same-sized rectangular pieces. To share the chocolate, you may break one bar into two pieces along a division between rows or columns of the bar. You may then repeatedly break the resulting pieces in the same manner. Each of your friends insists on a getting a single rectangular portion of the chocolate that has a specified number of pieces. You are a little bit insistent as well: you will break up your bar only if all of it can be distributed to your friends, with none left over. For example, Figure 9 shows one way that a chocolate bar consisting of 3 x 4 pieces can be split into 4 parts that contain 6, 3, 2, and 1 pieces respectively, by breaking it 3 times. (This corresponds to the first sample input.) [IMAGE] Figure 9
Input
The input consists of multiple test cases, each describing a chocolate bar to share. Each description starts with a line containing a single integer n (1 <= n <= 15), the number of parts into which the bar is supposed to be split. This is followed by a line containing two integers x and y (1 <= x, y <= 100), the dimensions of the chocolate bar. The next line contains n positive integers, giving the number of pieces that are supposed to be in each of the n parts. The input is terminated by a line containing the integer zero.
Output
For each test case, first display its case number. Then display whether it is possible to break the chocolate in the desired way: display "Yes" if it is possible, and "No" otherwise. Follow the format of the sample output.
Sample Input
4 3 4 6 3 2 1
2 2 3 1 5 0
Sample Output
Case 1: Yes Case 2: No
Added by: Ng Minh u+c Date: 2010-02-09 Time limit: 6s Source limit:50000B Languages: All except: TECS Resource: ACM ICPC World Final 2010
Input
In the first line of input there are integers N (1 <= N <= 100 000) and D (0 <= D <= 10 9 ). In the next N lines there are N natural numbers less than 10 9 - heights of the trees in the line (from the 1st tree to the N-th tree).
Output
Output all the requested pairs in sorted order. We define a pair (A, B) to be smaller than the pair (C, D) iff (A < C) or (A = C and B < D). In all of the test data, the number of these pairs will not exceed 100 000.
Example
Input: 6 0 2 1 2 3 2 1
Added by: Stjepan Glavina Date: 2010-02-21 Time limit: 1s-1.5s Source limit:50000B Languages: All except: TECS Resource: author: Adrian Satja Kurdija
Both strings will contain only uppercase characters and they wont be longer than 2000 characters. There will be 10 test cases in data set. Output For each test case, one line, minimum number of operations. Example Input: 1 FOOD MONEY Output: 4 Added by: Mislav Balunovi Date: 2010-02-28 Time limit: 15s Source limit:50000B Languages: All except: TECS Resource: Internet
Input
The first line of the input contains a single integer T(1 <= T <= 10 4 ) representing the number of test cases. The next T lines consist of two numbers each one separated by a single space: K (3 <= K <= 9) and N (1 <= N <= 10 200 ).
Output
For each test case print a single line, the N th term of the sequence S k .
Example
Input:8 3 4 3 100 4 3 5 12 6 7 7 239 8 17 9 500Output:9 981 5 150 43 958399 4097 48426822
Added by: Angel Paredes Ortiz Date: 2010-03-02 Time limit: 25s Source limit:50000B Languages: All except: TECS Resource: American Invitational Mathematics Examination 1986
6236. Matches
Problem code: FERT21_0
Upon a table there are two boxes. Each box has N matches inside. We want to know what is the probability of choose N times a random box and take one match from it, at the end have an empty box. You have to print all digits. Constrains 1 <= T <= 1000 1 <= N <= 1000
Input
T N1 N2 ... NT
Output
P1 P2 ... PT
Example
Input: 12Output:0.5
Added by: Leandro Castillo Valdes Date: 2010-03-03 Time limit: 1s Source limit:50000B Languages: All except: TECS JS Resource: own problem
Input
The first line contains T (1 <= T <= 1000) - the number of tests. Following T lines contain n (1 <= n <= 10 ^ 9).
Output
For each n from the input print the result Petya should get modulo 1000000007.
Example
Input: 3 1 2 3 Output: 0 1 5
Added by: Spooky Date: 2010-03-09 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/, author: Alexey Shchepin
6288. Treeramids
Problem code: PYRA
Daniel is building towers. He has a big amount of block of the size 1x1xK (for any K). Out of them he is building towers according to the following rules: the longest block is put in the basement of the tower. Several towers built by the same rules can be put on this block. The distance between the bases of those towers should be 1 and the distance between the bases of the towers and the edges of the common basement should be 1. There should be a block of the length 1 on the top of each tower. Daniel encodes every tower with root tree. For example: [IMAGE] The root of the tree corresponds to the basement of the tower. Its descendants correspond to the towers standing on it. The leaves correspond to the blocks of the size 1x1x1 on the tops. Given the root tree describing one of those structures, calculate the total volume of the structure.
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. Each test starts with an integer n - the number of nodes of the tree. This is followed by n-1 line, consisting of two integers a and b - number of nodes connected by an edge. Nodes are numbered from 0 to n-1. The root of the tree will always be a node with number 0. Otherwise the nodes and edges can go in any order.
Constraints
1 <= t <= 25 1 <= n <= 10^4
Output
For each test case print the total volume of the structure build according to the rules in the problem statement.
Example
Input: 2 7 0 1 2 0 0 3 2 4 5 2 6 3 3 1 2 1 0
Output: 25 9
Added by: Spooky Date: 2010-03-09 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/
6289. Bomberman
Problem code: BOMBER
Alice and Bob love to play Bomberman. They decided to upgrade the game. Their version is played on a rectangular board divided into cells. The first player puts a bomb on any cell. The bomb destroys this cell, as well as all consecutive undestroyed cells left, right, above and below it. Then the second player puts his bomb, then again the first and so on. The player who destoys the last cell wins the game. Given the dimensions of the board, determine which player wins the game assuming that both players play optimally.
Input
The first line contains T (1 <= T <= 1000) - the number of tests. The next T lines contain two integers m and n (1 <= m, n <= 100) - the size of the board.
Output
For each test print 1 if the first player wins the game, or 2 if the second wins.
Example
Input: 1 2 2 Output: 2
6290. Robbery 2
Problem code: ROBBERY2
k bandits robbed a bank. They took away n gold coins. Being a progressive group of robbers they decided to use the following procedure to divide the coins. First the most respected bandit takes 1 coin, then the second respected takes 2 coins, ..., the least respected takes k coins, then again the most respected takes k+1 coins, ans so on, until one of the bandits takes the remaining coins. Calculate how much gold each of the bandits gets.
Input
The first line of the input contains number t - the amount of tests. Then t test descriptions follow. Each test consists of two integers n and k - the amount of coins and bandits respectively.
Constraints
> 2 <= k<b> <= 100
Output
For each test print the amounts of coins each bandit gets separated by spaces.
Example
Input: 3 1000000 2 1234567 3 123456789 4 Output: 499849 500151 411602 411887 411078 30869901 30858368 30862296 30866224
Added by: Spooky Date: 2010-03-09 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/
Input
The first line contains T (1 <= T <= 10) -- the number of test cases. The description of T tests follow. The first line of each test case contains the amount of commands n (1 <= n <= 10000). The description of each command follows. The first line of each command contains the amount of operations m (1 <= m <= 10). The next m lines contain the description of each operation in the format given above. 1 <= k <= 100000 for R and D operations, and 1 <= k <= 10 for C operations. The strings in C operations consist of latin letters and digits only.
Output
For each test case your program should print the result of merging the commands. The format of the command should be the same as in the input file, except for the limitations on m and k. The result should consist of the least possible number of operations. The delete operations should precede the insert operations if possible. If the result of merging consist of no operations print 0.
Example
Input: 1 2 4 R 4 C 3 abc
R C 3 R C D
2 3 xyz 7 3 def 3
Output: 3 R 4 D 2 C 8 abcdefyz
Added by: Spooky Date: 2010-03-09 Time limit: 3s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/, author: Alexey Shchepin
6296. Experiment
Problem code: EXPER
The following experiment is taking place. There are n points of a plane. Each point is moving with the uniform velocity. It is needed to determine the minimum circle which encloses all the points after each second of the experiment during the fixed time T.
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. The first line of each test consists of two integers n - number of points and T - the duration of the experiment in seconds. The next n lines contain four integers separated by spaces x, y, vx, vy - initial coordinates and velocities of each point.
Constraints
1 <= t <= 10 1 <= n <= 2000 1 <= T <= 50 -100 <= x, y, vx, xy <= 100
Output
For each test case print T real numbers Ri for i from 1 to T rounded to two decimals after the point. Ri should be the radius of the minimal circle which encloses all the points.
Example
Input: 1 3 5 1 0 1 0 3 4 1 2 5 5 -2 -1 Output: 3.16 4.12 5.41 7.43 9.55
Added by: Spooky Date: 2010-03-09 Time limit: 3s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/
6297. Decipher
Problem code: ROOTCIPH
Radar scanned the approaching enemy aircraft on the border. However due to some error part of the tranmitted data cant be deciphered. It was possible only to obtain the coefficients of the cubic polynomial, whose roots are the coordinates of the aircraft relative to the radar. Now you need to calculate the distance to the aircraft. Write the program to solve this task.
Input
The first line contains T (1 <= T <= 1000) - number tests. The next T lines contain three integers a, b and c - coefficients of the polynomial x 3 + ax 2 + bx + c, whose roots are the coordinates (the absolute value of the coordinates do not exceed 10 8 ).
Output
For each test print the square of the distance to the enemy aircraft.
Example
Input: 1 -6 11 -6 Output: 14
Added by: Spooky Date: 2010-03-09 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/, author: Alexey Shchepin
Input
The first line contains t, the number of testcases. Then on each line is given two numbers N <= 15, K <= 2^N - 1.
Output
Print two numbers namely the number of "put in" moves and the number of "remove from" moves respectively for all the tests such that you move to the Kth slot in minimum number of valid moves. See explanation section below for more details.
Example
Input: 1 36 Output: 63
Explanation :
The following are the valid moves for the given input: PUT IN 1 PUT IN 2 PUT IN 3 REMOVE FROM 2 REMOVE FROM 1
PUT IN 4 PUT IN 5 REMOVE FROM 4 PUT IN 6 Added by: Paranoid Android Date: 2010-03-09 Time limit: 30s Source limit:50000B Languages: All except: TECS Resource: -
ababab Then your program must output the following: (1,2), (1,4), (2,1), (2,3), (5,1) and (5,3), these being the upper-left corners of all places on the Dead Marshes that match Gollums preferred place description. If none match is found, you should output the string "NO MATCH FOUND..." without the quotes.
Input
Line 1: Two integers: N 1 and N 2 . Lines 2... N 1 + 1: A string with N 2 characters as described above. Lines N 1 + 2: Two integers: M 1 and M 2 . Lines N 1 + 3... N 1 + M 1 + 3: A string with M 2 characters as described above. Restrictions 1 <= N 1 , N 2 <= 300 1 <= M 1 * M 2 <= 2000 N 1 <= M 1 N 2 <= M 2
Output
On each line print the upper-left corner of all places that match Gollums preferred place description on the form "(x,y)" without the quotes, where x stands for the row and y for the column. They should be lexicographically sorted, i.e. imagine them as an ordered pair. Then (x 1 ,y 1 ) < (x 2 ,y 2 ) if and only if x 1 < x 2 or, if they are equal, y 1 < y 2 .
Example
Added by: Camilo Bravo Valds Date: 2010-03-11 Time limit: 0.5s-1s Source limit:50000B Languages: All except: TECS Resource: own problem
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. Each test consists of two lines. The first line of the test contains an integer n - number of vertices of original n-gon. Second line of the test lists n integers a1, a2, ..., an - number of points marked on each side.
Constraints
1 <= t <= 20 4 <= n <= 1000 1 <= ai <= 100
Output
For each test, print out the answer to the problem modulo 1000000007.
Example
Input: 3 4 2 2 2 2 5 2 2 2 2 2 5 10 20 30 40 50 Output: 56 210 16207125
Added by: Spooky Date: 2010-03-12 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/
6340. ZUMA
Problem code: ZUMA
One day Mirko, while he was walking through the high grass, stumbled upon a sequence of N colored marbles. Soon he noticed that if he touches K or more consecutive marbles of the same color, they start to twinkle and then he could wish them to magically vanish, although he doesnt have to do that immediately (see 2. sample). Fortunately, Mirko brought an inexhaustible supply of marbles from home, so he can insert a marble of any color anywhere in the array (at the beginning, between any two existing marbles, or at the end). Help Mirko find the smallest number of marbles he must insert into the sequence before he could make all of the marbles vanish
Input
The first line of input contains two integers N (1 <= N <= 100) and K (2 <= K <=5) - the number of marbles in the initial sequence and the minimal number of consecutive marbles of the same color he could wish to vanish. The next line contains exactly N integers between 1 and 100 (inclusive),separated by one space. Those numbers represent colors of marbles in the sequence Mirko found.
Output
The output should contain only one line with a single integer number - the minimal number of marbles Mirko has to insert to achive the desired effect.
Example
Input:2 51 1Output:3Input10 43 3 3 3 2 3 1 1 1 3Output:4
Added by: Phan Cng Minh Date: 2010-03-14 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: COCI 2009-1010
6356. Rock-Paper-Scissors-Lizard-Spock
Problem code: RPSSL
Daniel enjoys watching TV series. One of his favorite is "The Big Bang Theory". The main characters of this series are: Sheldon - genius theoretical physicist, his friend Leonard - talented experimental physicist, their attractive, blonde neighbor Penny, and also their friends an aerospace engineer Howard and a particle astrophysicist Rajesh. One time Rajesh tells Sheldon: "Ill tell you what. How about we go rock-paper-scissors?" "Ooh", - Sheldon replies - "I dont think so. Anecdotal evidence suggests that in the game of rock-paper-scissors, players familiar with each other will tie 75 to 80% of the time due to the limited number of outcomes. I suggest rock-paper-scissors-lizard-Spock". "What?" "Its very simple. Scissors cuts paper. Paper covers rock. Rock crushes lizard. Lizard poisons Spock. Spock smashes scissors. Scissors decapitates lizard. Lizard eats paper. Paper disproves Spock. Spock vaporizes rock. And as it always has, rock crushes scissors". "Okay, I think I got it". And the friends decided to play rock-paper-scissors-lizard-Spock. And we would determine what the probability that Rajesh beats Sheldon in this game. We know the probabilities that any of the friends choose any object in the game. Also we know that they play till two wins, so the winner of the game is the person who first wins two rounds.
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. Each test case consists of two lines. The first line contains five integers R R , R Sc , R P , R L , R Sp - the probabilities that Rajesh chooses rock, scissors, paper, lizard or Spock respectively. The second line contains five integers S R , S Sc , S P , S L , S Sp - the probabilities that Sheldon chooses rock, scissors, paper, lizard or Spock respectively. (Note: the order of the objects in the input is rock, scissors, paper, lizard, Spock. The original problem is in Russian and we have scissors before paper in Russian variant of the game. Otherwise the rules are the same.)
Constraints
1 <= t <= 500 0 <= R R , R Sc , R P , R L , R Sp <= 100, R R + R Sc + R P + R L + R Sp = 100 0 <= S R , S Sc , S P , S L , S Sp <= 100, S R + S Sc + S P + S L + S Sp = 100
Output
For each test case print the probability that Rajesh beats Sheldon in percent rounded to the nearest integer.
Example
Input: 2 10 20 30 10 10 10 20 20 20 20 20 20 Output: 66 50 40 10 20 20 0 60 20 20
Added by: Spooky Date: 2010-03-17 Time limit: 1s Source limit:50000B Languages: C C99 strict C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: Advancement Spring 2010, http://sevolymp.uuuq.com/
Input
The first line of input contains two integers - N, M. The folowing M lines contains information about queries. On each query - one line: First integer number cmd contains 0, 1 or 2 (type of query described above). if cmd equals 0, then following 3 integers arr, left, right - 0 <= arr <= 1, 0 <= left <= right <= N - 1. if cmd equals 1, then following 3 integers arr, idx, newValue - 0 <= arr <= 1, 0 <= idx <= N - 1, -10000 <= newValue <= 10000. if cmd equals 2, then following 2 integers left, right - 0 <= left <= right <= N - 1.
Output
On each query with cmd equals 0 you should output corresponding value described above.
Example
Input: 5 10 1001 1142 0004 0104 200 0004 0104 204 0004 0104 Output: 1 2 0
3 3 0 Added by: rajeshsr Date: 2010-03-21 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: https://www.spoj.pl/users/cmd/
Input
The input begins with C - number of test cases. Each test case consists of X, Y.
Output
For each test case, output the result in a line.
Limit
C <= 200 0 <= X, Y <= 10000
Example
Input:20 31 1Output:04
Added by: Ronaldo Date: 2010-03-26 Time limit: 1s-5s Source limit:50000B Languages: All except: TECS Resource: From CT problem
Input
- Dong dhu la s n (n <= 10^5) - N dong tie^p theo la cc le^.nh c mu nhu+ tren
Output
Gm mt s dong , mi dong tra? lo+i cho 1 truy vn theo thu+ tu+. tu+ tren xung
Example
Input:7I 1 1I 5 2I 2 3S 1 2Q 1 2D 1Q 1 1Output:51
Added by: Fernando Torres Date: 2010-04-01 Time limit: 1s Source limit:50000B Languages: All except: TECS
6450. PP numbers
Problem code: MB1
PP numbers are prime numbers and palindromes in decimal notation at once. Your task is to find n-th PP number in ascending order. Then calculate product of its non-zero digits - lets call it m - and find m-th prime number in ascending order.
Input
In the first line of input there is one positive integer Z (1 <= Z <= 1000) which states the number of test cases. Following Z lines contain test cases. Each test case consists of one positive integer n (1 <= n <= 113) which states the number of PP number to find.
Output
For each test case print in separate line two numbers: n-th PP number and m-th prime number.
Example
Input:
3 1 5 2
Output:
2 3 11 2 3 5
Added by: Maciej Boniecki Date: 2010-04-02 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: 2nd Warsaw School of Computer Science Programming Championship
Input
An integer stating the number of queries Q(equal to 50000), and Q lines follow, each containing one integer K between 1 and 5000000 inclusive.
Output
Q lines with the answer of each query: the Kth prime number.
Example
Input: 8 1 10 100 1000 10000 100000 1000000 Output: 2 29 541 7919 104729 1299709 15485863
Alfonso2 Peterssen 2010-04-06 10s 10000B C C99 strict C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# D FORT ADA BASH PERL PYTH 2.6.2 PYTH 2.5 RUBY Thanks to TDuke
Input
There is not input
Output
To make the problem less output related write out only the 1st, 101st, 201st, ... 1st mod 100.
Example
Input: Output: 2 547 1229 ... 99995257 99996931 99998953
Alfonso2 Peterssen 2010-04-06 10s 10000B C C99 strict C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA C# D FORT ADA BASH PERL PYTH 2.6.2 PYTH 2.5 RUBY Thanks to TDuke
6477. Bowling
Problem code: BOWLING1
It is well known that programmers enjoy bowling. Bowling is a competitive sport in which a player (the "bowler") rolls a bowling ball down a wooden or synthetic lane with the objective of scoring points by knocking down as many pins as possible. For a beginner, scoring is probably the part of bowling which people find hard to understand. Fortunately, but it is not as hard as it seems. As most bowling centers have a scoring computer, you do not usually have to score yourself. I am sure that this makes people lazy and there are probably some regular bowlers who would not be able to score manually if they had to. One day, when it all breaks down, or you are needed to correct a mistake (yes, computers do make mistakes sometimes), an understanding of the scoring rules are necessary. The most difficult part of bowling scoring to comprehend is when a strike or spare is scored, as the score on the scorecard does not get updated immediately. A game consists of ten frames, which start with a full rack of ten pins. In each frame, you have two deliveries of your ball, in which to knock down as many of the ten pins as you can. If you knock down all the pins on your first ball, it is called a strike. The score doesnt get added on straight away because for a strike, you get the values of your next two balls as a bonus. For example, if you score a strike in the first frame, then an 7 and 1 in the second frame, you would score 18 (10+7+1) for the first frame, and 8 for the second frame, making a total of 26 after two frames. If you knock down some of the pins on the first ball, and knocked down the remainder of the pins in the second ball, it is known as a spare. Again, the score doesnt get added on straight away because for a spare, you get the values of your next ball as a bonus. For example, you if score a spare in the first frame, say an 6 and a 4, then got an 8 and a 1 in the second frame, you would score 18 (6+4+8) for the first frame, and 9 for the second frame, making a total of 27 after two frames. When it comes to the final frame, it is slightly different. In the final frame, you get bonus balls if you strike or spare, to a maximum of three deliveries. If you strike in the first delivery you have the opportunity to strike in the remaining two and have three deliveries in total. If you scored strikes in each of your final three deliveries, the score for the final frame would be 30 (10+10+10). If you spare the final frame, you get the third delivery as a bonus. So, a spare, 9 and 1, followed by a strike would equal 20 (9+1+10). You have to write a program which will calculate the score the player gets for the game given the information about the pins knocked down after each delivery of the ball.
Input
The first line of the input contains number t <= 1000 - the amount of test cases. Then the description of each of t test cases follow one per line. Each test case consists of several integers 0 <= a <= 10 - the amount of pins knocked down after each delivery of the ball. Each test case describes a full game for one player. All the games in the input file are correct.
Output
For each test case output the number of points the player gets in a game on a separate line.
Example
Input: 3 10 10 10 10 10 10 10 10 10 10 10 10 3 5 1 5 7 1 10 1 6 10 6 2 1 2 0 5 8 1 9 1 5 0 3 0 8 1 6 4 7 2 7 1 6 3 10 4 4 Output: 300 89 101
Added by: Spooky Date: 2010-04-09 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2010
Input
The first line of the input contains number 0 < t <= 10 the amount of test cases. The description of each test case follows. Each test starts with two integers 0 < V0 <= 1000 - the initial speed of the hamster ans 0 < n <= 20000 - the total amount of gates. Each of the next n lines contains the description of one of the gates: three integers 0 < x <= 10000 - the distance from the starting point to the point directly under the gate, 0 < y1 <= y2 <= 10000 - lower and upper bound of the gate.
Output
For each test case output the maximal amount of gates a hamster can fly through in one flight on a separate line.
Example
Input: 3 10 2 3 1 2 3 2 3 10 3 1 1 1 2 2 3 3 4 6 10 3 1 1 2 2 3 4 3 5 6 Output: 2 1 2
Added by: Spooky Date: 2010-04-09 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2010
Input
The first line of the input file contains number 0 < n < 1000 the amount of tests. The description of n test cases follow. The description of a test case consists of two lines. The first line contains integer a (0 < a < 10^12540), the second - integer b (0 < b < 10^12540). It is also known that all the numbers in the input file are the determinants of the square matrix of the form: [IMAGE]
Output
For each test case print the greatest common divisor of integers a and b on a separate line.
Example
Input: 3 2 3 3 21 6765 610 Output: 1 3 5
Added by: Spooky Date: 2010-04-09 Time limit: 4s Source limit:50000B Languages: All except: TECS Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2010
Input
There is not input
Output
To make the problem less output related write out only the 1st, 501st, 1001st, ... 1st mod 500.
Example
Input: Output: 2 3581 7927 ... 999978527 999988747 999999151
Added by: Alfonso2 Peterssen Date: 2010-04-09 Time limit: 10s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 PAS gpc PAS fpc JAVA Resource: Thanks to TDuke
Input
The first line of input contains a number t, the number of test cases. For each testcase, first line contains two space separated integers R and C. The following R lines contain C space separated integers which are either 0 (White) or 1 (Black).
Output
For each testcase output "Venkatesh wins" or "Akhil wins" (quotes for clarity).
Example
Explanation:
Case 1: Venkatesh can win in one move by eating all the 0s, which is the only move possible.Case 2: The initial bar consists only of Black chocolate cells, so it has to be discarded. So no move is possible in the game.Case 3: Venkatesh is forced to cut the bar into two. Now Akhil can eat the White chocolate cell and the black cell is discarded.Constraints:
Added by: suhash Date: 2010-04-13 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: ByteCode 2010
Input
The first line of input contains a number t, the number of test cases. Each of the following t lines contains an integer K.
Output
For each testcase output two space separated integers, the diameter and the number of pairs. Since the numbers can be huge, output all the numbers modulo 1,000,000,007.
Example
Input:
223 Output:
1 62 60 Explanation:
For Case 1: The graph is a triangle, so the diameter is 1 and the distance between any 2 pairs of different vertices is 1. The 6 pairs are: ({1},{2}), ({2},{1}), ({1},{3}),({3},{1}), ({2},{3}), ({3},{2}).
Constraints:
Added by: suhash Date: 2010-04-13 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: ByteCode 2010
Added by: Josef Ziegler Date: 2010-04-15 Time limit: 1s-3s Source limit:50000B Languages: All except: TECS Resource: Josef Ziegler
Example
Input: 10 . . Output: 6 . .
Added by: Frank Rafael Arteaga Date: 2010-04-22 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: ProjectEuler
Input
The first line in the input gives the number of test cases T (T<=200), and then T lines follow each containing an integer N.
Output
Output the smallest required value of m.
Example
Input:110Output:6
Added by: SALVO Date: 2010-04-23 Time limit: 4s Source limit:50000B Languages: All except: TECS Resource: Frank Rafael Arteaga
6562. Esferas
Problem code: PRUBALL
Balls The classic Two Glass Balls brain-teaser is often posed as: "Given two identical glass spheres, you would like to determine the lowest floor in a 100-story building from which they will break when dropped. Assume the spheres are undamaged when dropped below this point. What is the strategy that will minimize the worst-case scenario for number of drops?" Suppose that we had only one ball. Wed have to drop from each floor from 1 to 100 in sequence, requiring 100 drops in the worst case. Now consider the case where we have two balls. Suppose we drop the first ball from floor n. If it breaks were in the case where we have one ball remaining and we need to drop from floors 1 to n-1 in sequence, yielding n drops in the worst case (the first ball is dropped once, the second at most n-1 times). However, if it does not break when dropped from floor n, we have reduced the problem to dropping from floors n+1 to 100. In either case we must keep in mind that weve already used one drop. So the minimum number of drops, in the worst case, is the minimum over all n. You will write a program to determine the minimum number of drops required, in the worst case, given B balls and an M-story building. Input The first line of input contains a single integer P, (1 <= P <= 1000), which is the number of data sets that follow. Each data set consists of a single line containing three (3) decimal integer values: the problem number, followed by a space, followed by the number of balls B, (1 <= B <= 50), followed by a space and the number of floors in the building M, (1 <= M <= 1000). Output For each data set, generate one line of output with the following values: The data set number as a decimal integer, a space, and the minimum number of drops needed for the corresponding values of B and M. Sample Input 4 1 2 10 2 2 100 3 2 300 4 25 900 Sample Output
14 2 14 3 24 4 10 Added by: Alvaro Date: 2010-04-23 Time limit: 2s Source limit:50000B Languages: C++ 4.0.0-8 C++ 4.3.2 JAVA
Input
In the first line of input there is an integer T (1 <= T <= 600), the number of test cases. Each test case starts with an integer N (1 <= N <= 1000), the number of cookies. In the next N lines there are coordinates (Xi, Yi) of the cookies, integers in the interval [1, 1000]. There can be multiple cookies at the same point.
Output
For each of the T cases, output in a separate line the maximal number of cookies Anne can surely get.
Example
Input: 251 14 14 55 13 3117 107 117 107 116 65 54 81 51 61 47 1Output: 25
Added by: Stjepan Glavina Date: 2010-04-26 Time limit: 5s Source limit:50000B Languages: All except: TECS Resource: authors: Filip Paveti, Adrian Satja Kurdija
Input
First line of input contains single integer n (1 <= n <= 500). Next n lines each contain two integers x i , y i denoting the coordinate of i-th point (0 <= x i , y i <= 1000). Points are distinct.
Output
The one and only line contains a real number representing the minimum length. Your answer must be rounded up to 4 digits after the decimal point.
Example 1
Input:60 11 02 14 15 06 1Output:7.6569Illustration:sample1
Example 2
Input:100 00 11 22 31 43 4-1 2-2 3-1 4-3 4Output:12.3137Illustration:sample1 This is just a sample test case. Theres no negative in the real test data.
Added by: Lordxfastx Date: 2010-04-27 Time limit: 1s-3.5s Source limit:50000B Languages: All except: TECS Resource: Own problem. Description by Lambda
Example Input: 1 10 24825695 Output: AAAABBBBBA The points in this example are: 24 33 12 01 20 34 13 02 21 30 Added by: Date: Time limit: Source limit: Languages: Resource: Ivan Katani 2010-05-07 4s 50000B All except: TECS derived from the problem of International Mathematical Olympiad. prepared by I. Katani, A. S. Kurdija and S. Glavina
Input
The only line of input file contains numbers N and K.
Output
The only line of output file contains minimum number of weighings.
Example
Input: 19 2 Output: 3
Added by: Hayk Date: 2010-05-07 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: RAU School Contest 2010 (Own task)
Du+~ lie^.u
Dong u tien la s b test T (T < 11). T nhm dong tie^p theo, mi nhm dong gm s ie^?m N (N < 30001), sau la N dong, mi dong gm to.a 1 ie^?m (x, y) (-3000 < x, y < 30000).
Ke^t qu?a
Ghi tren T dong, mi dong la ke^t qua? tu+o+ng u+ng cu?a tu+ng test.
V du.
Du+~ lie^.u: 1 6 1 1 2 2 -1 -1 -2 2 2 -1 -3 -4 Ke^t qu?a 2
Added by: Tran Hai Dang Date: 2010-05-14 Time limit: 1s Source limit:50000B Languages: All except: TCL SCALA ERL TECS JS Resource: Codechef MAY 2010
Input
Firtst line consists one interger N. Next N lines consist N strings. Next one line consists one interger Q. Next Q lines consist two intergers a and b. (0<=a,b<N) 30% of the testdata : N<=100 Q<=10000 length(string[i])<=100 100% of the testdata : the number of total characters<=500000 N<=100000 Q<=100000
Output
Q lines. Each line consists the length of the ELCS of the a-th string and b-th string
Example
Input:5dyljqlqpwsjzt30 11 20 2Output:010
Added by: ??? Date: 2010-05-18 Time limit: 1.5s Source limit:50000B Languages: All except: TECS Resource: my own problem
Input
The first line of the input gives the number of test cases, T. T lines follow, each of which contains space-separated integers L, P and C in that order.
Output
For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1) and y is the number of load tests you need to run in the worst case before knowing within a factor of C how many people the site can support.
Limits
1 <= T <= 1000. 2 <= C <= 10. L, P and C are all integers.
Small dataset
1 <= L < P <= 10 3 .
Large dataset
1 <= L < P <= 10 9 . Input 4 50 700 2 19 57 3 1 1000 2 24 97 2 Output Case Case Case Case #1: #2: #3: #4: 2 0 4 2
Explanation
In Case #2, we already know that the site can support between 19 and 57 people. Since those are a factor of 3 apart, we dont need to do any testing. In Case #4, we can test 48; but if the site can support 48 people, we need more testing, because 48*2 < 97. We could test 49; but if the site cant support 49 people, we need more testing, because 24 * 2 < 49. So we need two tests. Added by: Kumar Anurag Date: 2010-05-23 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Google Code Jam 2010 Round 1C
N Y Added by: Alvaro Date: 2010-05-25 Time limit: 10s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 JAVA
Input
The first line of the input gives the number of test cases,C.Ctest cases follow. Each test case starts with 4 integers on a line --N,K,BandT. The next line contains theNdifferent integersX i , in increasing order. The line after that contains theNintegersV i . All distances are in meters; all speeds are in meters per second; all times are in seconds.
Output
For each test case, output one line containing "Case #x:S", where x is the case number (starting from 1) andSis the smallest number of required swaps, or the word "IMPOSSIBLE".
Limits
1 <=C<= 100; 1 <=B<= 1,000,000,000; 1 <=T<= 1,000; 0 <=X i <B; 1 <=V i <= 100; 1 <=N<= 50; 0 <=K<=N;
Example
Input: 35 3 10 50 2 5 6 71 1 1 1 45 3 10 50 2 3 5 72 1 1 1 45 3 10 50 2 3 4 72 1 1 1 4 Output: Case #1: 0Case #2: 2Case #3: IMPOSSIBLE
Added by: Mohammad Kotb Date: 2010-05-25 Time limit: 1s Source limit:50000B Languages: All except: TECS JS Resource: Google Code Jam 2010
2 12 2 34 2 2 14 2 23 3 4 1 10 100 1000 3 5 55 555 5 4 16 64 256 1000 1 4 500 500 500 500 -1 Sample Output 2 0 2 4
Added by: Alvaro Date: 2010-05-25 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 JAVA
6693. C - Karaoke
Problem code: BOKO
PROBLEM C KARAOKE "But I sing awfully!" - Gonzo kept saying. "Come on! Nobody cares, it just for fun!" - was the common reply of his friends. "And well give you all our support!". But Gonzo was not convinced. Although he was an accomplished shower singer, he didnt like to do it in public. He had played karaoke games before and his problems were always the same: he could pronounce the words and keep a note very well, but typically it was not the right one, and not at the correct time. Thats why in these games his scores were always poor. But there was something in his pocket to save the day. He had a friend who just came from a programming contest and had given him a pendrive with the solution: A Corrector for Music (ACM), a program that can adjust the notes that the game detects, so that he could achieve the a better score. Gonzo was relieved. For once he wouldnt be the worst singer of the group. Now he had just to use the program properly. The karaoke game displays a screen with several horizontal bars, representing words of the song, at different heights over a time axis. The y-coordinate of each bar indicates the pitch of that word. This is, the note that the game expects to detect from the singer. The game receives the voice of the singer from the microphone, and detects the pitch and the time interval where the note was detected. By comparison with the original song, the game displays a new set of horizontal bars in the same graph of the originals, and calculates the score according to the following rules: * The singer starts the game with 0 points. * If the song pitch and the singer pitch coincides, the singer wins 100 points by each second that the coincidence continues. * If the song pitch and the singer pitch differ, the singer loses the absolute difference between the pitches each second that such difference exists. * If there is no song pitch, but the singer sings; or inversely, if there is a song pitch, but the singer doesnt make a sound, the singer loses 100 points each second that this happens. * While there is no song pitch, and no input from the microphone, the score remains the same. ACM modifies the pitch of all the singer words by adding an integer to all of them. There is no possibility of modifying just an specific part of the singers notes. The pitch is always a positive number. If by any chance a pitch number drops to zero or less, the game interprets that no sound has been received. The program can also delay the time when the song begins or the time when the singers voice begins to be read, by adding an integer number of seconds in order to better adjust the intervals. The figure shows an example with the song words (solid lines) and the singers words (dashed lines).
Figura1 You will receive the details of the song that is stored in the game, and the words detected by the microphone. With that information you must determine the maximum possible score that can be obtained by adjusting the pitch of the singers words, and delaying the song or the voice. Input The input contains several test cases. The first line of a test case contains one integer N indicating the number of words that are included in the song (1<=N<=200). Each of the next N lines contain six integers s i1 , f i1 , p i1 , s i2 , f i2 and p i2 . The first three of those integers represent the continuous interval of time [s i1 , f i1 ), where the word i must be sung with pitch pi1. The following three integers represent the continuous interval [s i2 , f i2 ), where the word i of the singer is detected with pitch p i2 . For all cases, 0 < s i1 < f i1 , 0 < s i2 < f i2 , 20 < p i1 , p i2 < 120. The end of input is indicated by a line containing only one zero. Output For each test case in the input, your program must print a single line, containing the maximum score that can be achieved in the game by using the ACM program. Sample Input 1 1 4 60 6 9 70 1 1 4 60 6 8 70 2 0 2 50 1 3 40 3 6 80 4 7 60 0 Sample Output 300 100 280 Added by: Alvaro Date: 2010-05-25 Time limit: 10s Source limit:50000B Languages: C C++ 4.0.0-8 JAVA
Added by: Alvaro Date: 2010-05-25 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 JAVA
10 1110110111 7 6543210 0 Sample Output 2 1 3 Added by: Alvaro Date: 2010-05-25 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 JAVA
Input
The first line of the input gives the number of test cases, T. T test cases follow, each with two lines. The first line is in the form "D I M N", the next line contains N numbers a i : the values of the pixels from left to the right.
Output
For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1), and y is the minimum cost to make the input array smooth.
Limits
All the numbers in the input are integers. 1 <= T <= 100 0 <= D, I, M, a i <= 255 1 <= N <= 100
Example
Input: 2 6 6 2 3 1 7 5 100 1 5 3 1 50 7
Added by: Ruslan Sennov Date: 2010-05-26 Time limit: 30s Source limit:50000B Languages: All except: TECS Resource: Google Code Jam 2010
Input
The first line of the input gives the number of test cases, T. T test cases follow. Each one starts with a line containing the dimensions of the bark grid, M and N. N will always be a multiple of 4. The next M lines will each contain an (N/4)-character hexadecimal integer, representing a row of the bark grid. The binary representation of these integers will give you a strings of N bits, one for each row. Zeros represent black squares; ones represent white squares of the grid. The rows are given in the input from top to bottom. In each row, the most-significant bit of the hexadecimal integer corresponds to the leftmost cell in that row.
Output
For each test case, output one line containing "Case #x: K", where x is the case number (starting from 1) and K is the number of different chess board sizes that you can cut out by following the procedure described above. The next K lines should contain two integers each -- the size of the chess board (from largest to smallest) and the number of chess boards of that size that you can cut out.
Limits
1 <= T <= 100; N will be divisible by 4; Each hexadecimal integer will contain exactly N/4 characters. Only the characters 0-9 and A-F will be used.
Example
Input: 4 15 20 55555 FFAAA 2AAD5 D552A 2AAD5 D542A 4AD4D B52B2 52AAD AD552 AA52D AAAAA 5AA55 A55AA 5AA55 4 4 0 0 0 0 4 4 3 3 C C 4 4 6 9 9 6Output: Case #1: 5 6 2 4 3 3 7 2 15 1 57 Case #2: 1 1 16 Case #3: 2 2 1 1 12 Case #4: 1 2 4
Added by: Phan Cng Minh Date: 2010-05-28 Time limit: 0s-10s Source limit:50000B Languages: All except: TECS Resource: Google Code Jam 2010
Added by: SALVO Date: 2010-05-29 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: UVA (own input)
Input
In the first line there is an integer N (3 <= N <= 40), the size of the given sequence. In the next line there are N space-separated integers (of size 0 - 100), the elements of the sequence (in order).
Output
Output at most 2340 operations. For each operation, write two or three lines (depending on the type of operation). In the first line write the type of the operation (1 or 2). If the type of the operation is 1 (removing the block), in the next line write the two numbers: positions in the sequence of the first and the last element of the block you are removing. If the type of the operation is 2 (adding the block), in the second line write the two numbers: positions in the sequence of the first and the last element of the block after it is added to the sequence. In the next line, write all the elements of the added block (in order). The elements must be integers from the interval [-1000, 1000]. There must be less than 1000 elements in the sequence at any time.
Example
Input:610 20 70 20 70 80Output:
Added by: Adrian Satja Kurdija Date: 2010-05-30 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: derived from the problem of Polish Mathematical Olympiad
Input
The first line contains an integer N (2 <=N <=100000), where Nis the amount of cities in the country. The following N-1lines contain the information about the roads. Each line contains a pair of numbers of the cities, connected by the road a and b (1 <=a, b <=N)
Output
Output the maximum possible profit.
Example
Input: 4 1 2 2 3 3 4
Output: 1
Added by: Oleg Date: 2010-05-31 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Codeforces round 14 with larger limits
^vv^ v-v^-^^ --^-v^^-v-Output: Yes Yes No Yes No Yes NOTE: The last example corresponds to the scrap in the figure. Added by: Narek Saribekyan Date: 2010-06-01 Time limit: 5s Source limit:50000B Languages: All except: TECS Resource: RAU School Contest 2010
Input
The input contains several lines each one with a different test case. Each line includes a pair of numbers representing the values n and x. You should assume that n is even and also that 2 <= n <= 1000. Although 0 < x < n is true, do not assume that x is a valid node of GG(n). The last line of the input contains the number 0 (it is not a test case).
Output
For each test case output a single line with one of the following: Solution found at distance D. Solution not reachable. x is not a node! Where D is the minimum distance from x to the solution found, as described before.
Example
Input:
1 is not a node! Solution found at distance 0. Solution not reachable. Solution found at distance 0. Solution not reachable. Solution not reachable. Solution found at distance 0. Solution found at distance 1. Solution found at distance 2. Solution found at distance 1. 340 is not a node! Solution found at distance 0. 33 is not a node!
Added by: Coach UTN FRSF Date: 2010-06-01 Time limit: 2s-10s Source limit:50000B Languages: All except: TECS Resource: Author: Pablo A. Marchetti (FRSF-UTN)
6731. Coeficientes
Problem code: COEF
The problem is to calculate the coefficients in expansion of polynomial (x 1 +x 2 +...+x k ) n .
Input
The input will consist of a set of pairs of lines. The first line of the pair consists of two integers n and k separated with space (0<K,N<13). This integers define the power of the polynomial and the amount of the variables. The second line in each pair consists of k non-negative integers n 1 , ..., n k , where n 1 +...+n k =n.
Output
For each input pair of lines the output line should consist one integer, the coefficient by the monomial x 1 n1 x 2 n2 ...x k nk in expansion of the polynomial (x 1 +x 2 +...+x k ) n .
Example
Input:2 21 12 121 0 0 0 0 0 0 0 0 0 1 0 Output:
22
Added by: Coach UTN FRSF Date: 2010-06-02 Time limit: 1s-3s Source limit:50000B Languages: All except: TECS Resource: http://uva.onlinejudge.org/external/101/10105.html
6732. Camels
Problem code: CT14E
Bob likes to draw camels: with a single hump, two humps, three humps, etc. He draws a camel by connecting points on a coordinate plane. Now hes drawing camels with t humps,representing them as polylines in the plane. Each polyline consists of n vertices withcoordinates (x 1 , y 1 ), (x 2 , y 2 ), ..., (x n , y n ). The first vertex has a coordinate x 1 = 1, the second-- x 2 = 2, etc. Coordinates y i might be any, but should satisfy the following conditions: there should be t humps precisely, i.e. such indexes j (2 <= j <= n - 1), so that y j - 1 < y j > y j + 1 , there should be precisely t - 1 such indexes j (2 <= j <= n - 1), so that y j - 1 > y j < y j + 1 , no segment of a polyline should be parallel to the Ox-axis, all y i are integers between 1 and 4. For a series of his drawings of camels with t humps Bob wants to buy a notebook, but he doesntknow how many pages he will need. Output the amount of different polylines that can be drawn to represent camels with t humps for a given number n.
Input
The first line of input contains the number of testcases , Ntest. Each testcase contains a pair of integers n and t (3 <= n <= 20, 1 <= t <= 10).
Output
For each testcase ,output the required amount of camels with t humps.
Example
Input:16 1Output:6NoteIn the first sample test sequences of y-coordinates for six camels are: 123421, 123431,123432, 124321, 134321 i 234321 (each digit corresponds to one value of y
i ).
Added by: Phan Cng Minh Date: 2010-06-02 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Codeforces.
Input
The first line of input file contains number t - the number of test cases. Then the description of each test case follows. The first line of each test case contains number n - the number of points. Then n lines follow each consisting of two integers x, y - the coordinates of a point. No two points in the same test case coincide.
Constraints
1 <= t <= 10 1 <= n <= 30000 -30000 <= x, y <= 30000
Output
For each test case print the number of nice quadrangles that can be formed using given points.
Example
Input: 1 6 1 1 2 2 -1 -1 -2 2 2 -1 -3 -4 Output: 2
Added by: Spooky Date: 2010-06-04 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: CodeChef May Challenge
I want to ask you the maximal h({y}) where {y} is a consecutive sequence of {x}.
Input
One line consists one interger N, the length of {x}. (N<=10^5, |x_i|<=10000) Next N lines, each line consists one interger.
Output
The maximal h({y}) where {y} is a consecutive sequence of {x}. ( |h({y})|<=2^63-1 )
Example
Input:
512663Output: 101
Added by: ??? Date: 2010-06-08 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: ALL41 CONTEST #2
Input
The first line of the input contains one integer T, which indicate the number of test cases. Following each test, the first line contains an integer N (N <= 10 5 ), the number of coins. Following N lines, each line contains a name, lxh or hhb, the name of whom this coins belongs to.
Output
For each case, output a line contains the name of whom the final coin belongs to.
Sample Input
12lxhhhb
Sample Output
lxh
Added by: Kumar Anurag Date: 2010-06-09 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: TJU
Input
first line consists one interger N. next line consists N interger x_i. next N-1 line , each consists two interger u,v , means that node u and node v are connected next line consists 1 interger Q. next Q line : 1 a b or 2 a b c .
Output
For each query, output one line the maximum contiguous sum.
Example
Input: 5 -3 -2 1 2 3 1 2 2 3 1 4 4 5 3 1 2 5
2 3 4 2 1 2 5 Output: 5 9
Added by: ??? Date: 2010-06-14 Time limit: 1s-4s Source limit:50000B Languages: All except: TECS Resource: my own problems
Input
The first line of the input consists of the number t of test cases to follow. Each test case is specified by one line containing an integer c. You may assume that 1 <= c <= 10 9 .
Output
For each test case output if c is absurd or not. Adhere to the format shown in the sample output.
Example
Input: 4 99 49998 90000
Adrian Kuegel 2010-06-18 1s 50000B All except: TECS German Collegiate Programming Contest 2010 (Authors: Walter Guttmann/Adrian Kuegel)
Input
The input starts with the number of test cases. Each test case is described as follows. The first line contains the number of groups g <= 8 and the number of teams per group m <= 4. A line with g * m integers follows. The i-th integer 0 <= s i <= 10000 denotes the strength of the i-th team. The team indices start from 0. By convention, the hosting nation is assigned number 0. The next line lists the g-1 seeded teams by their numbers. Each of the m-1 following lines contains g teams which are allocated to the same pot.
The next line specifies the number of confederations c. c lines follow which describe one confederation each. Each confederation description starts with the number of teams n i > 0. Then n i numbers with the team indices follow. The last line contains the number t of the team, whose average group strength has to be evaluated.
Output
Output the average of the sum of strengths of the opponents of team t in the group stage with 3 decimals on a single line.
Example
Input: 2 2 3 1 2 3 4 1 2 5 3 4 1 6 0 1 2 5 2 3 1 2 3 4 1 2 5 3 4 2 2 0 5 4 1 2 3 5 Output: 6.000 6.500
5 6
3 4 5
5 6
Added by: Adrian Kuegel Date: 2010-06-18 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Stephan Ritscher)
Input
The first input line contains numbern(1 <= n <= 5000) -- amount of Bobs working days. The followingnlines contain the description of the days. Linesell xstands for a day when a customer came to Bob to buy a2 x MB memory stick (0 <= x <= 2000). Its guaranteed that for eachxthere is not more than one linesell x. Linewin xstands for a day when Bob won a2 x MB memory stick (0 <= x <= 2000).
Output
Output the maximum possible earnings for Bob in berllars, that he would have had if he had known all the events beforehand. Dont forget, please, that Bob cant keep more than one memory stick at a time.
Example
Input:7win 10win 5win 3sell 5sell 3win 10sell 10 Output: 1056
Added by: Phan Cng Minh Date: 2010-06-21 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: Codeforces
6824. Flag
Problem code: CTFLAG
According to a new ISO standard, a flag of every country should have, strangely enough, a chequered fieldn m, each square should be wholly painted one of 26 colours. The following restrictions are set: In each row at most two different colours can be used. No two adjacent squares can be painted the same colour. Pay attention, please, that in one column more than two different colours can be used. Berlands government took a decision to introduce changes into their countrys flag in accordance with the new standard, at the same time they want these changes to be minimal. By the given description of Berlands flag you should find out the minimum amount of squares that need to be painted different colour to make the flag meet the new ISO standard. You are as well to build one of the possible variants of the new Berlands flag.
Input
The first input line contains 2 integersnandm(1 <= n, m <= 500) -- amount of rows and columns in Berlands flag respectively. Then there follows the flags description: each of the followingnlines containsmcharacters. Each character is a letter fromatoz, and it stands for the colour of the corresponding square.
Output
Output the minimum amount of squares that need to be repainted to make the flag meet the new ISO standard
Example
Input:
3 4aaaabbbbcccc
Output: 6
Added by: Phan Cng Minh Date: 2010-06-21 Time limit: 0.5s-1s Source limit:50000B Languages: All except: TECS Resource: Codeforces
Input
The first line gives the number of field plans. The input contains at most eleven field plans (what else?). Every plan starts with a line of two integers N and M, with 1 <= N <= 100000 and 1 <= M <= 100000, giving the number of locations and the number of moves. In the following M lines a plan specifies moves (A,B) by two white space separated integers 0 <= A,B < N. The plans are separated by a blank line.
Output
For every plan print out all possible starting locations, sorted increasingly and one per line. If there are no possible locations to start, print Confused. Print a blank line after each plan output.
Example
Input: 2 4 4 0 1 1 2 2 0 2 3 4 0 1 2 2 4 3 0 0 3
Output: 0
1 2 Confused
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 10s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Christian Hundt)
6826. Hacking
Problem code: HACKING
A coach of one of the soccer world finals teams (lets call him Hugo Hacker) wants to find out secret information about an opposing team before the game. The coach of the opposing team has a website with public information about his team. Hugo suspects that also secret information is stored on the computer which hosts the website. The website contains a form which allows to search for key words and returns a chunk of a text file which contains the key word. Hugo has found out that by entering words which cannot be found in the documents publicly available, he can exploit a bug in the search and get access to other files on the computer. He already knows the publicly available documents. However the search box has a restriction on the maximum length of a word and the characters which can be entered. Can you tell him a word which can be entered in the search box and which does not occur as a substring in the documents?
Input
The first line of the input consists of the number of test cases which are to follow. Each test case consists of two lines: in the first line there are three integers n (1 <= n <= 10000), m (1 <= m <= 100) and k (1 <= k <= 26), where n is the length of the publicly available documents, m is the maximum allowed length of words which can be entered in the search box, and k specifies that the search box allows only the first k characters of the alphabet. The second line of each test case describes the publicly available documents and consists of n lower-case letters.
Output
For each test case in the input, print one line in the output containing a word which does not occur as a substring in the given text. The word should have at most m lower-case characters from the first k letters in the alphabet. You may assume that for each given test case, there is always at least one such word (you may print any such word).
Example
Input: 2 9 3 2 bbbaababb 9 3 2 aaabbabaa Output: aaa bbb
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Authors: Simon Gog/Adrian Kuegel)
6828. Lineup
Problem code: LINEUP
On June 13th team Germany has its first match in the FIFA world cup against team Australia. As the coach of team Germany, it is your duty to select the lineup for the game. Given this is your first game in the cup, naturally you want to make a good impression. Therefore youd like to play with the strongest lineup possible. example image You have already decided on the tactical formation you wish to use, so now you need to select the players who should fill each of the 11 positions in the team. Your assistant has selected the 11 strongest players from your squad, but this still leaves the question where to put which player. Most players have a favoured position on the field where they are strongest, but some players are proficient in different positions. Your assistant has rated the playing strength of each of your 11 players in each of the 11 available positions in your formation, where a score of 100 means that this is an ideal position for the player and a score of 0 means that the player is not suitable for that position at all. Find the lineup which maximises the sum of the playing strengths of your players for the positions you assigned them. All positions must be occupied, however, do not put players in positions they are not proficient with (i.e.\ have a score of 0).
Input
The input consists of several test cases. The first line of input contains the number C of test cases. For each case you are given 11 lines, one for each player, where the i-th line contains 11 integer numbers s ij between 0 and 100. s ij describes the i-th players strength on the j-th position. No player will be proficient in more than five different positions.
Output
For each test case output the maximum of the sum of player strengths over all possible lineups. Each test case result should go on a separate line. There will always be at least one valid lineup.
Example
Input: 1 100 0 0 0 0 0 0 0 0 0 0 0 80 70 70 60 0 0 0 0 0 0 0 40 90 90 40 0 0 0 0 0 0 0 40 85 85 33 0 0 0 0 0 0 0 70 60 60 85 0 0 0 0 0 0 0 0 0 0 0 95 70 60 60 0 0 0 45 0 0 0 80 90 50 70 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
40 90 90 40 70 0 0 50 70 85 50 0 0 66 60 0 80 80 0 50 50 0 90 88
Output: 970
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Holger Frydrych)
6829. Polynomial
Problem code: POLYNOM
The number of spectators at the FIFA World Cup increases year after year. As you sell the advertisement slots during the games for the coming years, you need to come up with the price a company has to pay in order to get an advertisement slot. For this, you need a good estimate for the number of spectators in the coming games, based on the number of spectators in the past games. Your intuition tells you that maybe the number of spectators could be modeled precisely by a polynomial of degree at most 3. The task is to check if this intuition is true.
Input
The input starts with a positive integer N, the number of test cases. Each test case consists of one line. The line starts with an integer 1 <= n <= 500, followed by n integers x 1 , ..., x n with 0 <= x i <= 50000000 for all i, the number of spectators in past games.
Output
For each test case, print YES if there is a polynomial p (with real coefficients) of degree at most 3 such that p(i) = x i for all i. Otherwise, print NO.
Example
Input: 3 1 3 5 0 1 2 3 4 5 0 1 2 4 5 Output: YES YES NO
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Christoph Dittmann)
Input
The first line of the input is the number of test cases c (1 <= c <= 100). Each test case consists of 16 lines describing the matches in random order. A match description looks as follows: t 1 t 2 g 1 g 2 . t 1 and t 2 are the names of teams (abbreviated as exactly three uppercase letters), g 1 and g 2 (0 <= g 1 , g 2 <= 10; g 1 != g 2 ) are the goals of the two teams.
Output
For each test case, print one line containing the team that will win the FIFA World Cup (based on the analysis of my boss which is always correct!).
Example
Input: 1 ITA URU ITA IRE ITA ARG YUG ARG GER CZE ENG GER ITA ENG CAM COL ENG CAM ENG BEL GER ARG CZE CRC NET GER BRZ ARG 2 1 3 2 1 3 2 2 3 1 1 4 1 0 0 0 4 3 0 4 1 1 2 0 0 1 2 1
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Tobias Werth)
Input
The first line contains the number of testcases 1 <= k <= 10 that follow. The first line of each testcase holds the number n of players per team (1 <= n <= 20). The next 2n lines contain the coordinates of all players, the first n lines being the first team, the second n lines the second team. A coordinate is given as two non-negative floating point numbers separated by spaces. The first player of the first team is in possession of the ball. The coordinates of the goal follow below the two teams. You may assume that the inputs are chosen in such a way that small floating point errors do not lead to wrong results.
Output
Output Goal if the first team is able to score or No goal if the ball can be intercepted or if fouling one player is enough to prevent the team from scoring.
Example
Input: 2 4 407.89 297.33 396.64 80.21 190.26 96.43 210.73 290.67 345.43 315.24 462.45 218.22 291.76 60.82 104.98 113.45 0 191.18 4 407.89 297.33 396.64 80.21 190.26 96.43 210.73 290.67 521.43 369.86 565.14 368.22 563.25 328.18 521.31 334.00 0 191.18 Output: No goal Goal
Added by: Adrian Kuegel Date: 2010-06-21 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: German Collegiate Programming Contest 2010 (Author: Thorsten Meinl)
6851. Fence
Problem code: CT10R3B
We are looking into building a very long fence. We have already found a nice place to build it, and all that remains is to collect the materials. From local hardware stores, we can buy unlimited numbers of wooden boards, each of which can come in a variety of different lengths. To avoid waste, we want to make sure that the total length of these boards is exactly equal to the length of the fence we are trying to build. Given the length of the fence, and the possible board lengths that we can use, what is the minimum number of boards that we need to purchase in order to get exactly the right length? Beware: the fence is going to be very long!
Input
The first line of the input file contains the number of cases, T. T test cases follow. Each test case consists of two lines. The first line contains space-separated integers L and N. These represent the total length of the fence, and the number of different board lengths that can be purchased. The second line contains N space-separated integers B 1 , B 2 , ..., B N , representing all the possible board lengths.
Output
For each test case, output one line containing "Case #x: M", where x is the case number (starting from 1) and M is as follows: If it is possible to purchase one or more boards so that their total length is exactly equal to L, then M should be the minimum number of boards required to do this. Otherwise, M should be the string "IMPOSSIBLE".
Limits
1 <= T <= 50. 10 10 <= L <= 10 18 . 1 <= N <= 100. 1 <= B i <= 100000. All the B i values in a single test case are distinct.
Example
Input:2 10000000001 3 23 51 100 10000000001 3 100 52 22 Output:Case #1: 100000004Case #2: IMPOSSIBLE
Added by: Phan Cng Minh Date: 2010-06-22 Time limit: 10s Source limit:50000B Languages: All except: TECS Resource: GCJ 2010
6852. Fish
Problem code: CT16E
n fish, numbered from 1 to n, live in a lake. Every day right one pair of fish meet, and the probability of each other pair meeting is the same. If two fish with indexes i and j meet, the first will eat up the second with the probability a ij , and the second will eat up the first with the probability a ji = 1 - a ij . The described process goes on until there are at least two fish in the lake. For each fish find out the probability that it will survive to be the last in the lake.
Input
The first line contains integer n (1 <= n <= 18) -- the amount of fish in the lake. Then there follow n lines with n real numbers each -- matrix a. a ij (0 <= a ij <= 1) -- the probability that fish with index i eats up fish with index j. Its guaranteed that the main diagonal contains zeros only, and for other elements the following is true: a ij = 1 - a ji . All real numbers are given with not more than 6 characters after the decimal point.
Output
Output n space-separated real numbers accurate to not less than 6 decimal places. Number with index i should be equal to the probability that fish with index i will survive to be the last in the lake.
Example
Input:50 1 1 1 10 0 0.5 0.5 0.50 0.5 0 0.5 0.50 0.5 0.5 0 0.50 0.5 0.5 0.5 0 Output:
1.000000 0.000000 0.000000 0.000000 0.000000
Added by: Phan Cng Minh Date: 2010-06-22 Time limit: 2s Source limit:50000B Languages: All except: TECS Resource: Codeforces
6860. Asistent
Problem code: ASISTENT
You are given a permutation of first N natural numbers on which you are to perform K operations of following type: given integers A and B, your task is to swap elements on positions A and B in permutation and then output permutation rank modulo 1000 000 007. Note: Difference from original task is that elements remain swapped after query.
Input
On first line of standard input you are given two integers (2 <= N <= 50 000, 1 <= K <= 30 000), length of permutation and number of operations. On the next line there is permutation of first N natural numbers. In next K lines there are two integers A, B ( 1 <= A, B <= N ).
Output
Output permutation rank after applying each of K operations.
Example
Input:5 31 5 4 2 31 32 32 5Output:917790
Added by: Ivan Katani Date: 2010-06-23 Time limit: 8s Source limit:50000B Languages: All except: TECS Resource: Modified task from Croatian IOI Team Selection Test
Input
The input contains several test cases. Each test case is described in a single line that contains two non-empty words, each of them of at most 1000 lowercase letters, separated by a single space. The last line of the input contains two asterisks separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with an integer representing the advanced edit distance of the two input words.
Example
Input:pantera aortazero zero* *Output:40
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 180s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
Input
The input contains several test cases, each one described in several lines. The first line of each test case contains an integer N (3 <= N <= 500), the number of edges of the original polygon. Each of the next N - 2 lines describes one triangle in the triangulation of the polygon. Each triangle is given by six integers X1 , Y1 , X2 , Y2 , X3 and Y3 separated by single spaces, where Xi and Yi are the coordinates in the XY plane of the i-th vertex of the triangle (-1000 <= Xi , Yi <= 1000). The triangles and their vertices are not given in any specific order. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with 2N integers separated by single spaces. These integers must represent the coordinates in the XY plane of the vertices of the original polygon, in clockwise order. To make the output unique, the first vertex to be listed is the one with the smallest X coordinate, and if there are many of those, the one with the smallest Y coordinate among them.
Example
Input:50 0 10 9 10 010 9 0 9 0 010 9 0 9 5 1330 1 1 1 1 010-1 -2 2 -2 2 -1-1 -2 0 -1 -2 3-2 3 2 3 1 20 -1 2 1 1 2-1 -2 2 -1 0 -12 1 0 -1 2 02 3 2 2 1 20 -1 -2 3 1 2-1Output:0 0 0 9 5 13 10 9 10 00 1 1 1 1 0-2 3 2 3 2 2 1 2 2 1 2 0 0 -1 2 -1 2 -2 -1 -2
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
Input
The input contains several test cases, each one described in several lines. The first line of each test case contains five integers J, B, C, N and S separated by single spaces. The value J is the number of junctions in the city (3 <= J <= 5000); each junction is identified by an integer number between 1 and J. The values B, C and N are the identifiers of the junctions where the bar, Charlys home and Nitos home are located, respectively (1 <= B, C, N <= J); these three junction identifiers are different. The value S is the number of streets in the city (2 <= S <= 150000). Each of the next S lines contains the description of a street. Each street is described using three integers E1 , E2 and L separated by single spaces, where E1 and E2 identify two distinct junctions that are endpoints of the street (1 <= E1 , E2 <= J), and L is the length of the street (1 <= L <= 10 4 ). You may assume that each street has a different pair of endpoints, and that there exist paths from junction B to junctions C and N . The last line of the input contains the number -1 five times separated by single spaces and should not be processed as a test case.
Output
For each test case output a single line with three integers T , C and N separated by single spaces, where T is the maximum distance that Charly and Nito can walk together, C is the distance that Charly walks alone, and N is the distance that Nito walks alone.
Example
Input:5 3 2 1 63 4 104 5 105 1 35 2 41 3 232 3 248 1 7 8 81 2 12 4 12 3 14 5 13 5 15 6 16 8 16 7 1-1 -1 -1 -1 -1Output:20 4 34 1 1
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 5s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
Input
The input contains several test cases, each one described in exactly two lines. The first line of each test case contains two integers L and N separated by a single space, where L is the maximum number of lines the textarea can have (1 <= L <= 10 8 ), and N is the number of words the text to show is made of (1 <= N <= 10 5 ). The second line contains the text to show, formed by N non-empty words of at most 25 lowercase letters each, separated by an arbitrary number of spaces. The last line of the input contains the number -1 twice separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with an integer W representing the minimum linewidth such that the textarea has at most L lines.
Example
Input:1 2hello 106 word2 2racing club-1 -1Output:
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
7107. G Key
Problem code: GK
Leandro and Fede are traveling by train and to spend some time they decided to start playing the guitar. They want to play together some songs, but Fedes memory is not working well because he caught a little cold. To work it out, Leandro wants to show to Fede some music scores of several punk rock songs. A punk rock song is a sequence of notes, and there are twelve possible notes, divided in two groups. The first group has seven natural notes called A, B, C, D, E, F and G, while the second group has five alterations called A#, C#, D#, F# and G#. The way to draw a music score is as follows: you start with an empty one, and then you draw note by note from left to right in the same order they appear in the song. In the following picture you can see an empty music score with two lines. The symbol at the beginning of each line is called G key. Each line is divided in four groups, each group having room for four notes. <img src=https://www.spoj.pl/content/pabloh:pentagrama-ex.png> In this figure, the song "E, F, F#, G, G#, A, A#, B, C, C#, D, D#" is depicted. Can you help Leandro writing a program for drawing punk rock songs given the sequence of notes?
Input
The input contains several test cases. Each test case is described in a single line that contains the number of notes N (1 <= N <= 100), followed by the sequence of N notes. Each note is one of A, A#, B, C, C#, D, D#, E, F, F#, G and G#. Values in each line are separated by single spaces. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output the music score of the input song and print a blank line after each test case (even after the last one). You have to follow the sample input and output for drawing the music scores. Every score line has the same background formed by the characters "|" (pipe) and "-" (hyphen). They differ in the borders (first and last borders are doubled), and of course in the notes they have inside. Each eighth note is drawn consecutively as in the sample, and the different heights are those shown. Alterations are preceded by a character "#" (sharp sign). There must be no trailing spaces at the end of printed lines, neither empty score lines (without notes inside).
Example
Input:36 E F F# G G# A A# B C C# D D# E F F# G G# A A# B C C# D D# E F F# G G# A A# B C C# D D#-1Output:|| | | | |||------------------------|------------------------|--------------|\----|\--|------------------------||| | | |\ |\ | | | |||------------------------|--------------------|\--|--|-----|----x|---#x|---|------------------------||| | |\ |\ | | x| #x| | |||--------------------|\--|--|\----|-----|----x|---|------------------------|--------------------|\--||| |\ |\ | | | x| #x| | | |\ |\ | |||--|\----|-----|----x|---|#x|---------------------|------------------------|--|\----|-----|----x|---||| | x| #x| | | | | x| #x| |||-x|---------------------|------------------------|------------------------|-x|---------------------||| | | | || | | | ||------------------------|--------------|\----|\--|------------------------|------------------------|| | |\ |\ | | | | ||--------------------|\--|--|-----|----x|---#x|---|------------------------|--------------------|\--|| |\ |\ | | x| #x| | | |\ |\ | ||--|\----|-----|----x|---|------------------------|--------------------|\--|--|\----|-----|----x|---|| | x| #x| | | |\ |\ | | | x| #x| ||#x|---------------------|------------------------|--|\----|-----|----x|---|#x|---------------------|| | | | x| #x| | ||------------------------|------------------------|-x|---------------------|------------------------|| | | | || | | | |||--------------|\----|\--|------------------------|------------------------|------------------------||| |\ |\ | | | | | |||--|-----|----x|---#x|---|------------------------|------------------------|------------------------||| x| #x| | | | |||------------------------|------------------------|------------------------|------------------------||| | | | |||------------------------|------------------------|------------------------|------------------------||| | | | |||------------------------|------------------------|------------------------|------------------------||| | | | ||
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
Input
The input contains several test cases. Each test case is described in a single line that contains two non-empty strings of at most 10 5 heptadecimal digits, separated by a single space. The last line of the input contains two asterisks separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with the sign "<" if the first heptadecimal number is smaller than the second one, the sign ">" if the first heptadecimal number is greater than the second one, or the sign "=" if both heptadecimal numbers are equal.
Example
Input:006F B3B0000 0* *Output: <=
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
Input
The input contains several test cases. Each test case is described in a single line that contains two integers M and N as explained above (0 <= M <= N <= 10 9 and N != 0). These values are separated by a single space. The last line of the input contains the number -1 twice separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with exactly 20 characters representing the mentioned display.
Example
Input:2 52 60 10-1 -1Output:********-40%--------*******--33%-----------------0%---------
Added by: Pablo Ariel Heiber Date: 2010-08-13 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2007
12 8 9 0 10 91 10 1 00 Sample output: 3 2 1 0 Added by: Pfifing Date: 2010-08-14 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: SWERC 2009
Input
The input contains several test cases, each one described in several lines. The first line of each test case contains an integer N indicating the number of points in the set (3 <= N <= 1000). Each of the next N lines describes a different point of the set using two integers X and Y separated by a single space (-2000 <= X, Y <= 2000); these numbers represent the coordinates of the point in the XY plane. You may assume that no two points of each test case have the same location. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with an uppercase "Y" if there exists at least one axis of symmetry for the provided set of points, or an uppercase "N" otherwise.
Example
Input:4-10 010 010 1010 -104-10 010 110 1010 -106-1000 30-100 20-10 101000 30100 2010 10-1Output:YNY
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 6s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases. Each test case is described in a single line that contains eight integers E, F , S, M , E , F , S and M separated by single spaces. Values E and E are numbers of eggs, F and F are grams of flour, S and S are grams of sugar, and M and M are centiliters of milk. For each ingredient, X is the amount John has (0 <= X <= 1000), while X is the amount needed to make a single cake (1 <= X <= 1000). The last line of the input contains the number -1 eight times separated by single spaces and should not be processed as a test case.
Output
For each test case output a single line with four non-negative integers separated by single spaces, representing the amount of each ingredient John needs to buy, in the same order and units as the input.
Example
Input:2 3 4 5 1 1 1 13 6 9 0 1 2 3 4-1 -1 -1 -1 -1 -1 -1 -1Output: 3 2 1 00 0 0 12
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Pascals triangle is infinite, of course, and contains the value 1 an unbounded number of times. However, any other value appears a finite number of times in the triangle. In this problem you are given an integer K >= 2. Your task is to calculate the number of values in the triangle that are different from 1 and less than or equal to K.
Input
The input contains several test cases. Each test case is described in a single line that contains an integer K (2 <= K <= 10 9 ). The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with an integer indicating the number of values in Pascals triangle that are different from 1 and less than or equal to K.
Example
Input: 26-1Output:110
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 6s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases, each one described in several lines. The first line of each test case contains three integers N , W , and H separated by single spaces. The value N is the number of dinosaurs in the lab (1 <= N <= 300). The values W (width) and H (height) are the size of the lab on the x and y coordinates, respectively (2 <= W, H <= 10 6 ). This means that the starting position of Jeff is at (0, 0), while the exit of the lab is located at (W, H). Each of the next N lines contains two integers X and Y separated by a single space, representing the coordinates of a different dinosaur (1 <= X <= W - 1 and 1 <= Y <= H - 1). Note that no dinosaur is located on the border of the lab. You may assume that no two dinosaurs have the same location. The last line of the input contains the number -1 three times separated by single spaces and should not be processed as a test case.
Output
For each test case output a single line with the maximum possible distance to the closest dinosaur. Write the result rounded to the closest number with exactly three decimal places, using the highest in case of ties, as usual.
Example
Input:1 2 21 13 5 41 34 11 22 5 41 34 1-1 -1 -1Output: 1.0001.5811.803
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 9s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases, each one described in several lines. The first line of each test case contains three integers N , K, and M separated by single spaces. The value N is the number of chambers in the prison (4 <= N <= 10 5 ); each chamber is identified by an integer number between 1 and N . The value K is the number of doors and keys (1 <= K <= N/2), while M is the number of corridors (1 <= M <= 10 5 ). Each of the next K lines describes a door and its corresponding key using two integers A and B separated by a single space, with the following meaning: chamber A cointains the key that opens the door in chamber B (2 <= A, B <= N - 1). The last M lines of the test case describe the corridors. Each of these lines cointains two integers C and D separated by a single space, indicating that there is a corridor connecting chambers C and D (1 <= C < D <= N ). You may assume that no two corridors connect the same pair of chambers. The last line of the input contains the number -1 three times separated by single spaces and should not be processed as a test case.
Output
For each test case output a single line with an uppercase "Y" if it is possible for Harry to escape from the prison, or an uppercase "N" otherwise.
Example
Input:4 1 42 33 42 31 32 46 2 55 43 22 62 51 41 53 44 1 13 22 3-1 -1 -1Output: NYN
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 9s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases. Each test case is described in a single line that contains six values N1 , S1 , N2 , S2 , N3 , and S3 separated by single spaces. Each pair (Ni , Si ) describes a card in the hand of the cheater (1 <= i <= 3), where Ni is the number of the card (1, 2, 3, 4, 5, 6, 7, 10, 11 or 12), and Si is its suit (espada, basto, copa or oro). You may assume that the three cards are different. The last line of the input contains three times the number -1 and an asterisk, with the six values separated by single spaces, and should not be processed as a test case.
Output
For each test case output a single line with an integer representing the maximum increase in the envido score that can be obtained by replacing exactly one card of the input hand.
Example
Input:12 espada 10 basto 11 basto7 espada 1 oro 2 oro7 espada 1 oro 6 espada-1 * -1 * -1 *Output: 7100
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases. Each test case is described in a single line that contains a non-empty string of at most 20 characters. The string is formed entirely of uppercase letters "Y" and "N", and represents the clues given so far, in order from left to right. The last line of the input contains a single asterisk and should not be processed as a test case.
Output
For each test case output a single line with the minimum positive integer that satisfies all the clues, or -1 if there is no such a number.
Example
Input:YYNYYYYYNNN*Output: 20-1
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 3s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Input
The input contains several test cases. Each test case is described in a single line that contains an integer N representing the size of the board (1 <= N <= 20). The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output the hexagonal board of the required size, and a line with exactly three asterisks. You have to follow the sample input and output, as well as the example given above. Use only regular spaces, underscores (" "), slashes ("/") and backslashes ("\"). There must be no trailing spaces at the end of printed lines, neither empty lines.
Example
Input: 13-1Output: _/ \\_/*** _ _/ \_ _/ \_/ \_/ \_/ \_/ \\_/ \_/ \_// \_/ \_/ \\_/ \_/ \_// \_/ \_/ \\_/ \_/ \_/ \_/ \_/ \_/***
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
Given a set of N different values for x, and a set of N values for y, we want to pair them to form N points on the plane such that the integral of the polygonal line defined by the points is as large as possible.
Input
The input contains several test cases, each one described in exactly three lines. The first line of each test case contains an integer N indicating the number of points in the set (2 <= N <= 10 4 ). The second line contains N different integers Xi separated by single spaces (1 <= Xi <= 10 4 for 1 <= i <= N ); these integers represent the values of x and are given in increasing order (Xi < Xi+1 for 1 <= i <= N - 1). The third line contains N integers Yi separated by single spaces (1 <= Yi <= 10 4 for 1 <= i <= N ); these integers represent the values of y and are not given in any particular order. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with the maximum integral of a polygonal line formed by pairing the input values, using exactly one decimal digit. Notice that one decimal digit is always enough to represent the exact value of the integral of a polygonal line defined by points with integer coordinates.
Example
Input:21 21 242 3 5 61 2 1 2-1Output: 1.57.0
Added by: Pablo Ariel Heiber Date: 2010-08-19 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2008
7207. Alchemy
Problem code: ALCHE
Alchemy is a discipline that is believed to span at least 2500 years of human history. It is most known for its intention of transforming matter, typically trying to come up with a recipe to make gold based on much less valued metals, aided by some non-metal components. Most scientists and scholars think that alchemy has failed. They surely do not know that a particular alchemist named Albert Ainstain, managed to create gold from a simple combination of ordinary iron (much more common and cheap than gold) and some goodold-fashioned water. However, the combination must have the exact proportion of grams of iron and centiliters of water to work, otherwise the alchemist would end up with useless rusty iron. Many alchemists and bussinessman had tried to recreate Albert Ainstains findings to achieve recognition, fame, prestige or economical welfare, but none of them have suceeded. Since you know very little about chemistry, alchemy and ancient practices, you believe that your chances for success in this task are bounded to using a computer in your benefit. Therefore, you decide to create a program that automatically tests a given combination of iron and water, and informs whether that combination has the correct proportion to produce gold. Of course, once you find the right proportion, you can double both amounts and get double the gold, cut both in half and get half the gold, or multiply both by any other real number to obtain the amount of gold you want. Your task is then, given the number of grams of iron and the number of centiliters of water, say whether the proportion between both components is the right one.
Input
The input contains several test cases, each one described in a single line. The line contains two integers I and W separated by a single space, representing grams of iron and centiliters of water, respectively (1 <= I, W <= 10 6 ). The last line of the input contains the number -1 twice separated by a single space and should not be processed as a test case.
Output
For each test case output a single line containing an uppercase "Y" if the combination produces gold, or an uppercase "N" otherwise.
Example
Input:1000 37999 3710000 37010001 370-1 -1Output:YNYN
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in exactly two lines. The first line contains an integer N indicating the number of elements in the sequence (1 <= N <= 200). The second line contains N integers Xi separated by single spaces, representing the sequence to paint (1 <= Xi <= 10 6 for 1 <= i <= N ). The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with an integer representing the minimum number of unpainted elements of the sequence, when the sequence is painted optimally following the rules described above.
Example
Input:81 4 2 3 3 2 4 1127 8 1 2 4 6 3 5 2 1 8 7-1Output: 02
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 120s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in several lines. The first line contains an integer N indicating the number of points in the set (3 <= N <= 3000). Each of the next N lines describes a different point of the set using two integers X and Y separated by a single space (1 <= X, Y <= 10 6 ); these values represent the coordinates of the point in the XY plane. You may assume that within each test case no two points have the same location. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with a real number representing the sum of the distances between each pair of points of any closest triplet of the set of points. Round the result to the closest rational number with three decimal places. In case of ties, round up. Always use exactly three digits after the decimal point, even if it means finishing with a zero.
Example
Input:41 14 11 51000 10009100000 200000200000 200000150000 28660360000 140000240000 140000150000 3400001 340000300000 340000150000 87087-1Output: 12.000300000.796
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 150s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in exactly two lines. The first line contains an integer C indicating the number of columns of the skyline (1 <= C <= 70). The second line contains C + 1 integers Hi separated by single spaces representing the sequence of heights (0 <= Hi <= 30 for 1 <= i <= C + 1). You may assume that there exist an height Hi = 0, and that the difference between succesive heights is at most 1 (i.e. |Hi - Hi+1 | <= 1 for 1 <= i <= C). The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output the correponding skyline, followed by a line with exactly three asterisks ("***"). While writting the skyline, use only regular spaces, newlines, and the three characters mentioned in the statement. Ths skyline must be left aligned and it must contain exactly C columns. There must be no trailing spaces at the end of printed lines, neither empty lines.
Example
Input:81 2 3 2 3 3 2 1 031 0 0 1-1Output: _/\/ \/ \ \***\_/***
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 2s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in several lines. The first line contains an integer N indicating the number of circles to connect (2 <= N <= 3000). Each of the next N lines describes a different circle using three integers X, Y and R separated by single spaces (1 <= X, Y, R <= 10 6 ). The values X and Y represent the coordinates of the center of the circle in the XY plane, while the value R indicates its radius. You may assume that within each test case no two circles overlap or touch each other. The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line containing a real number representing the minimum total length of elastic band needed to connect all the circles. Round the result to the closest rational number with three decimal places. In case of ties, round up. Always use exactly three digits after the decimal point, even if it means finishing with a zero.
Example
Input:32 2 21 6 16 1 121 1 11 4 1-1Output: 35.82912.283
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 240s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in a single line. The line contains a non-empty string S of at most 10 5 characters, entirely formed of digits and lowercase letters. The last line of the input contains a single asterisk ("*") and should not be processed as a test case.
Output
For each test case output a single line with the greatest integer N such that there exists a string T that concatenated N times is equal to S.
Example
Input:abcabcabcabcabcdefgh012aaaaaaaaaa*Output: 4110
Added by: Pablo Ariel Heiber Date: 2010-08-22 Time limit: 2s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in a single line. The line contains two integers R and C separated by a single space, representing the number of rows and cubicles per row, respectively (1 <= R, C <= 100). The last line of the input contains the number -1 twice separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with an integer representing the minimum number of seconds that the robot needs to complete the cleaning process.
Example
Input:4 23 3-1 -1Output: 460549
Added by: Pablo Ariel Heiber Date: 2010-08-24 Time limit: 1s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
7231. Homework
Problem code: HOMEW
When trying to clean your old room, you find out your old notes from high school. Reading the homeworks you were given then, you start thinking how much easier they would have been today. However, there is a particular one that still seems to maintain its difficulty. When the solution to a problem involved solving the square root of an integer, to keep a fancy and clean expression, you were asked to express it as the integer part and the root part. This means that if you had as solution N you were asked to express it as SQRT N = A SQRT B with the part A being as high as possible. For instance, 180 can be expressed as 1 SQRT 180, 2 SQRT 45, 3 SQRT 20 or 6 SQRT 5. Of course, the last expression is the correct one. Now that you are grown up, you decide to write a program to perform this task for you.
Input
The input contains several test cases, each one described in a single line. The line contains an integer N (1 <= N <= 10 18 ). The last line of the input contains a single -1 and should not be processed as a test case.
Output
For each test case output a single line with two integers A and B separated by a single space such that SQRT N = A SQRT B and A is maximum.
Example
Input:180171000000000000000000-1Output: 6 51 171000000000 1
Added by: Pablo Ariel Heiber Date: 2010-08-24 Time limit: 100s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
Input
The input contains several test cases, each one described in a single line. The line contains two strings C and D separated by a single space, representing the current and desired orders of the music albums, respectively. Each of the strings has exactly 10 characters and contains the characters of "abcdefghij" in some order. The last line of the input contains two asterisks ("*") separated by a single space and should not be processed as a test case.
Output
For each test case output a single line with an integer representing the minimum number of inversions needed to transform the current order given by C, into the desired order given by D.
Example
Input:abcdefghij adcbefghijabcdefghij abcdefghijbcdaefghji beagfcdhji* *Output: 102
Added by: Pablo Ariel Heiber Date: 2010-08-24 Time limit: 240s Source limit:50000B Languages: All except: PERL 6 TECS Resource: FCEyN UBA ICPC Selection 2009
7239. Cells
Problem code: IPCELLS
Tim loves spreadsheets. Everything he does on a computer, he does in a spreadsheet. Track his expenses? Create a spreadsheet! Decide which car to buy? Create a spreadsheet to compare them! Make an inventory of his games? Create a spreadsheet! Decide which girl he loves most? ... Unfortunately his spreadsheet software just crashed and he needs some of the data right now and does not have the time to install a competing office suit. Given the formulas used in the cells of a spreadsheet, calculate the values of all the cells.
Input
The first line of the input file contains an integerTspecifying the number of test cases. Each test case is preceded by a blank line. Each test case starts a single numberNgiving the number of expression. Each of the followingNlines contains a single cell formula of the form "CELL = EXPRESSION", whereCELLis the name of the cell andEXPRESSIONis a mathematical expression consisting of cell names and the operators+,-,*and/. A cell name is a non-empty sequence of letters followed by a positive integer. Each test case is correct: there are no cycles, and all cells referenced in expressions have definitions. Evaluating expressions When evaluating an expression, usual priorities apply: first we evaluate all*and/(left to right), and only then all+and-(again, left to right). You may assume that the expressions are such that when evaluating the expression in correct order, the result and also all intermediate values will fit into 32-bit signed integer variables. The operator/represents integer division which is always roundeddown. The dividend will always be non-negative and the divisor will always be positive.
Output
For each test case output the calculated values of cells, one per line, in the form "CELL = VALUE". The rows in the output should be ordered alphabetically. (To compare two rows, take a look at the first character where they differ. The one with a smaller ASCII value goes first.) Optionally, output a blank line between test cases.
Example
Input: 23A47=5+ZZ22ZZ22=3A9=13+A47*ZZ222A1=4/7+4/7B2=3*3/7 Output: A47=8A9=37ZZ22=3A1=0B2=1
Added by: Mohammad Kotb Date: 2010-08-27 Time limit: 5s Source limit:50000B Languages: All except: TECS Resource: IPSC
7240. Playground
Problem code: PLYGRND
George has K <= 20 steel wires shaped in the form of half-circles, with radii a1 , a2 , . . . , aK . They can be soldered (connected) at the ends, in any angle. Is it possible for George to make a closed shape out of these wires? He does not have to use all the wires. The wires can be combined at any angle, but may not intersect. Beware of floating point errors. George has K <= 20 steel wiresshaped in the form of half-circles,with radii a1 , a2 , . . . , aK .Theycan be soldered (connected) at theends, in any angle. Is it possiblefor George to make a closed shapeout of these wires? He does nothave to use all the wires.The wires can be combined atany angle, but may not intersect.Beware of floating point errors.
Input
Each data set consists of a number 0 < K <= 20 on a line by itself, followedby a line of K space-separated numbers ai . Each number is in the range0 < ai < 10^7 , and has at most 3 digits after the decimal point. The input will be terminated by a zero on a line by itself.
Output
For each test case, there should be one word on a line by itself; "YES" ifit is possible to make a simple connected figure out of the given arcs, and"NO" if it isnt.
Example
Input: 1 4.000 2 1.000 1.000 3 1.455 2.958 4.424 7 1.230 2.577 3.411 2.968 5.301 4.398 6.777 0
Added by: Mohammad Kotb Date: 2010-08-27 Time limit: 1s Source limit:50000B Languages: All except: TECS Resource: NCPC 2005
7249. Perfume
Problem code: PERFUME
One of the largest perfume shops is making perfumes by mixing fragrant essential oils with other compounds. The shop representative told you that what really matters in the mixture is the percentages of two main components (call them A and B), all other stuff is complementary. For example their first sold perfume had 10% of component A and 35% of component B, while the most successful one had 16% of A and 20% of B. Sometimes the store needs to create a new mixture with specific percentages of A and B and they wonder if this can be achieved by mixing some of the mixtures they already have and this is where they need your help. For example a new mixture which has 12% of A and 30% of B can be created by mixing the two mixtures above in the ratio 2:1, while it is impossible to create a mixture which has 13% of A and 22% of B using the same two mixtures. One of the largest perfume shops is making perfumes by mixing fragrantessential oils with other compounds. The shop representative told you that whatreally matters in the mixture is the percentages of two main components (callthem A and B), all other stuff is complementary. For example their first soldperfume had 10% of component A and 35% of component B, while the mostsuccessful one had 16% of A and 20% of B. Sometimes the store needs tocreate a new mixture with specific percentages of A and B and they wonder ifthis can be achieved by mixing some of the mixtures they already have and thisis where they need your help. For example a new mixture which has 12% of Aand 30% of B can be created by mixing the two mixtures above in the ratio 2:1,while it is impossible to create a mixture which has 13% of A and 22% of Busing the same two mixtures.
Input
The first line contains T <= 100, the number of test cases. The first line of eachtest case contains an integer (1 <= N <= 200), the number of mixtures the shopalready has. The next N lines each contain two floating point numbers (0 <= A,B <= 100, A+B <= 100) representing the percentages of components A and B ineach mixture. The next line contains an integer (1 <= Q <= 5151) the numberof mixtures to verify. The next Q lines each contain two floating point numbers(0 <= A, B <= 100, A+B <= 100) representing the percentages of componentsA and B in each new mixture. Test cases are separated by one or more emptylines.
Output
For each mixture query print "Yes" if the new mixture can be created from thealready existent ones or "No" otherwise. Print a blank line between test cases.
Example
Input: 2 2 10.0000 35.0000 16.0000 20.0000 2 12.0000 30.000013.0000 22.00003 10 35 16 20 7 15 1 13 22 Output: Yes NoYes
Added by: Mohammad Kotb Date: 2010-08-31 Time limit: 5s Source limit:50000B Languages: All except: TECS Resource: ENC09
Input
Input consists of LED patterns. Each pattern is given in set of fixed number of lines. You have to read input till EOF.
Output
Print the number corresponding to each pattern.
Example
Input: _ _ _ _ _ _ _| _| _|| ||_||_ |_ _||_ |_| | _| _ _ _ ||_ |_||_ || | ||_| ||_| ||_| _ _ _ _ _ ||_||_||_ ||_| | | | _| ||_|Output:232095164610799518
Added by: XeRon!X Date: 2010-09-05 Time limit: 1s Source limit:50000B Languages: All
Input
The first line of the input file contain number n - the amount of tests. The next n lines consist of three integers a, b i k (0 <= a <= b < 10^12, 1 <= k <= 100000). Integers a, b and b+k consist of the same amount of digits which is equal to the amount of digits in the number of each ticket. They may start with zeroes. The amount of digits in a and b is always even.
Output
Output the expected quantity of lucky tickets in the pack in the form of irreducible fraction. In case the result is an integer, no slash should appear in the output.
Example
Input: 3 0123 4567 150 10 10 20 4000 4999 11 Output: 6519/635 2 103/125
Added by: Spooky Date: 2010-09-12 Time limit: 15s Source limit:50000B Languages: All Resource: Open All-Ukrainian Collegiate Contest Final, 2010
Input
Input begins with a integer t, followed by t lines. Each line has the no. of pegs n.
Output
For each test case, output the minimum no. of move required to transfer the n disks from peg A to peg C.
Example
Input:412510Output:2824259048
Added by: lost Date: 2010-09-28 Time limit: 2s Source limit:50000B Languages: All Resource: IIITM Local Contest
7490. Biology
Problem code: BIO
It was no later than 1869 that Jules Verne succeeded to vulgarize interest in the depths of the oceans through his science-fiction novel "Twenty thousand leagues under the sea". On board the Nautilus manoeuvred by captain Nemo, the crew visits the lost city of Atlantis and gets to know strangest kinds of sea dwellers. Nearly a century later, one of the deepest points on Earth, the Challenger Deep was visited by Piccard and Walsh and a Swiss flag was dibbled at 10924 metres below sea level. The ridership of the Trieste submarine was amazed by the animal life in these depths.
Recently a team of biologists decided to investigate these depths of the Mariana Trench and especially their So Weird Exotic Rare Citizens (SWERC). To this goal a preliminary study was performed, which showed that the species in the Mariana Trench have very local biotopes, which if projected onto the sea surface, can be described by convex polygons. All the biotopes are located at the same depth and some may overlap. The biologists now want to install racks and cameras in each biotope in order to attract and film them. As delicious as the food at the racks might be, no species would ever take the risk to transgress the borders of its habitat. As these cameras and the associated telecommunication system are extremely expensive, their number is to be minimized. Can you tell the biologists for how
many cameras they need to account in their budget planning in order not to miss any species if they choose the locations in a clever way? You may consider each camera-rack couple as a mathematical point which must lie strictly inside the biotope in order to attract the related species. INPUT The input consists of several test-cases separated by an empty line. Each test-case starts with the number of species S (0<=S<=20) . Each of the next S lines describes one biotope. The first entry indicates the number n i of vertices of the convex polygon. Then follow their coordinates in the order x1 y1 x2 y2 ... xn i yn i (|xi|,|yi|<=1000). Input terminates on a test-case with S=0, which must not be evaluated. OUTPUT For each test-case, output the minimum number of camera-rack couples necessary to screen all the species listed in the input. SAMPLE INPUT 3 3 11.00 0.00 -2.50 7.79 -2.50 -7.79 4 4.00 -3.00 -3.00 4.00 -10.00 -3.00 -3.00 -10.00 4 4.00 2.00 3.00 3.00 2.00 2.00 3.00 1.00 10 7 -317.00 99.00 -330.55 127.15 -361.01 134.10 -385.43 114.62 -385.43 83.38 -361.01 63.90 -330.55 70.85 6 -99.00 93.00 -238.50 334.62 -517.50 334.62 -657.00 93.00 -517.50 -148.62 -238.50 -148.62 4 113.00 -134.00 42.00 -63.00 -29.00 -134.00 42.00 -205.00 3 90.00 -68.00 -261.00 134.65 -261.00 -270.65 7 218.00 -342.00 147.22 -195.02 -11.83 -158.71 -139.38 -260.43 -139.38 -423.57 -11.83 -525.29 147.22 -488.98 6 131.00 -286.00 38.00 -124.92 -148.00 -124.92 -241.00 -286.00 -148.00 -447.08 38.00 -447.08
4 -170.00 -247.00 -172.00 -245.00 -174.00 -247.00 -172.00 -249.00 4 -332.00 -102.00 -395.00 -39.00 -458.00 -102.00 -395.00 -165.00 6 -52.00 -224.00 -196.50 26.28 -485.50 26.28 -630.00 -224.00 -485.50 -474.28 -196.50 -474.28 5 -101.00 163.00 -210.87 314.22 -388.63 256.46 -388.63 69.54 -210.87 11.78 0 SAMPLE OUTPUT 2 5
Sample input 1 Sample input 2 Added by: Christian Kauth Date: 2010-10-05 Time limit: 15s Source limit:50000B Languages: All
Input
First line of input contains a single positive integer T denoting number of test cases. T <= 20. Next T lines contains value of n.
Output
Output value of P corresponding to each n in separate lines.
Example
Input:238Output:27PS : Source Code Limit changed to 700B.
Added by: XeRon!X Date: 2010-10-19 Time limit: 20s Source limit:700B Languages: All
7628. Mathematics
Problem code: MATHS
One could define mathematics as the study of quantity, structure, space and change and as the science of infinity. Sometimes very abstract, mathematics finds nevertheless applications in many engineering domains. The figure below shows so-called Ford circles. These circles are disjoint or tangent and fill the space in a very compact way! Starting with large circles, the space between these circles can be filled with circles of smaller diameter, and so on and so forth.
Mathematicians observed that the diameters and positions of the centers of these circles follow a given scheme, which can be described with the help of Farey sequences. The Farey sequence of order N is the sequence of completely reduced fractions between 0 and 1, which have denominators less than or equal to N, arranged in increasing size. Thus each Farey sequence starts with the value 0, denoted by the fraction 0 / 1 , and ends with the value 1, denoted by the fraction 1 / 1 . The Amazing Circle Mathematicians (ACM) are interested in the number of terms contained in such a Farey sequence as well as in certain precise terms, which they name Interesting and Curious Position In Circle (ICPC). Your job is to provide the ACMs with this abstract information, which helps them to
better understand the Ford circles. INPUT The input consists of several test-cases, one per line. Each test-case consists of two numbers, the first is the order N (2<=N<=10 6 ) of the Farey sequence the ACM is interested in and the second is the ICPC P (1<=P<=10 4 ) . Input terminates on a line containing 0 0 which must not be processed. OUTPUT For each test-case, output first the ICPC, then the total number of terms in the given Farey sequence. SAMPLE INPUT 22 6 12 14 35 00 SAMPLE OUTPUT 1/2 3 5/6 13 6/11 65 Added by: Christian Kauth Date: 2010-10-22 Time limit: 7s Source limit:50000B Languages: All
7632. Architecture
Problem code: ARCHI
Architecture, a tightrope walk between engineering and art! There are probably few invariants shared by the architectural styles around the world and throughout time. Precisely this diversity makes the domain so interesting and challenging.
Any domains may serve as sources of inspiration, mathematical shapes, nature, organisms and even arched slices of Swiss cheese J. Some of our university friends from architecture plan to participate in the prestigious Erect a Palace From Lines (EPFL) contest. This contest is about designing a huge single-floor palace by building horizontal and vertical walls inside the preset square fundament. The students just finished their creative prototypes, and you are to revise their projects before they enter the contest. Some were obviously overwhelmed by the cryptographic protocol required for the palace description and do not know how many rooms their palace has. Walls are one unit thick and are described by their horizontal and vertical start and end positions. As the palace is huge, these coordinates are expressed in a base 26 system (the latin alphabet). Having overlapping walls is not a problem. For the encryption, read A as zero and Z as twenty-five. All other letters cover the remaining range in the conventional lexicographic order.
INPUT The input consists of several test-cases, separated by an empty line. Each test-case starts with the side length of the square palace n (A<=n<=Z Z ) and the number of walls w (0<=w<=500) the student placed inside the palace. The palaces interior spreads thus from 0 to n-1, vertically and horizontally. The following w lines each describe a wall in the form x1 y1 x2 y2, the horizontal and vertical endpoints of the wall such that (0<=x1,y1,x2,y2<=n-1). Input terminates on a test-case with n=A and w=0, which must not be processed. You may safely assume that no student placed walls that transgress the fundaments of the palace and that no palace has more than 10000 rooms. OUTPUT For each test-case, output the number of rooms in the palace. SAMPLE INPUT P 17 GNGF FGCG FOFK GMNM CFCM IEKE OCOE BLBN JMJE MOJO HOCO LHLI NFKF MEOE
NDOD ECEL GOGL ZZZZZZZZZZZZZZZZ 4 A GH ZZZZZZZZZZZZZZZY GH POLYPROG SELECTION POLYPROG CONTEST TOBE ORNOT TOBE THATSTHEQUESTION LEADINGZEROS NO LEADINGAS NO SAMPLE OUTPUT 4 2 Added by: Christian Kauth Date: 2010-10-23 Time limit: 10s-30s Source limit:50000B Languages: All
7666. Telecommunications
Problem code: TELECOM
From beacons over telegraphs and telephones towards radio and television and ultimately computer networks and internet - telecommunication systems knew a tremendous evolution within the last century! This was also clear to Richard Hamming, who was bothered by erroneous data transmission. As the transmission channel is often very noisy, the received information is not necessarily the information that was sent out. Looking at digital data transmission, a straight-forward way to check for errors would be a supplementary bit of information, a so-called parity bit. Each package of data on n-1 bits is completed by 1 parity bit, whose value is chosen such that the number of ones in the n-bit package is even. Although there is little overhead, parity checking is not very robust. If an even number of bits is flipped during transmission, the check bit remains valid and the error will not be detected. Moreover, although parity can detect errors, it provides no indication on the position of the flipped bit. The data must be discarded entirely and re-transmitted.
If more error-correcting bits are included with a message, and if those bits can be arranged such that different incorrect bits produce different error results, then bad bits could be identified and corrected! Among others, Hamming invented the following algorithm that generates a single-error correcting code for any number of bits.
Hamming Codes: 1. Number the bits starting from 1: bit 1, 2, 3, 4, 5, etc. 2. Write the bit numbers in binary. 1, 10, 11, 100, 101, etc. 3. All bit positions that are powers of two (have only one 1 bit in the binary form of their position) are parity bits. 4. All other bit positions, with two or more 1 bits in the binary form of their position, are data bits. 5. Each data bit is included in a unique set of 2 or more parity bits, as determined by the binary form of its bit position. a) Parity bit 1 covers all bit positions which have the least significant bit set: bit 1 (the parity bit itself), 3, 5, 7, 9, etc. b) Parity bit 2 covers all bit positions which have the second least significant bit set: bit 2 (the parity bit itself), 3, 6, 7, 10, 11, etc. c) Parity bit 4 covers all bit positions which have the third least significant bit set: bits 4-7, 12-15, 20-23, etc. d) Parity bit 8 covers all bit positions which have the fourth least significant bit set: bits 8-15, 24-31, 40-47, etc. e) In general each parity bit covers all bits where the binary AND of the parity position and the bit position is non-zero. Imagine you want to transmit the data 42. Its binary representation is 101010. According to the above algorithm, some of these data bits must shift their position and will be interlaced by parity bits. We obtain 10-101-0--, where each hyphen is a placeholder for a parity bit. To get an even number of ones on positions 1,3,5,7,9, parity bit 1 must be 0. Setting parity bit 2 to 0 ensures an even number of ones on positions 2,3,6,7,10. For similar reasons on positions 4,5,6,7, parity bit 4 must be 0 and parity bit 8 must be 1 because of positions 8,9,10. Thus the Hamming code for data 42 is 1011010000 i.e. 720. Lets suppose the transmission channel is noisy and the received code is 724, i.e.1011010100. Then the parity check for parity bit 1 counts an odd number of ones and so does the check for parity bit 2. Parity bit checks 4 and 8 result in an even value. Thus the bit that occurs in parity checks 1 and 2 (i.e. position 3) is wrong and can be corrected! We found back the 720 code. Removing the parity overhead (bits 1,2,4,8) yields the correct data 42! Assuming that the noise in the channel is not sufficient to flip more than one bit per package, you are to write a program that extracts the data from a received Hamming code. INPUT The input consists of several test-cases, one per line. Each test-case consists of a single decimal number C (0<=C<2 64 ), which is the received Hamming code. The last line is -1, which is obviously not a Hamming code and terminates the test sequence. OUTPUT
For each test-case, output the correct data that was transmitted, assuming the above algorithm was used to generate the Hamming code. SAMPLE INPUT 7 28 109 -1 SAMPLE OUTPUT 1 3 5 From beacons over telegraphs and telephones towards radio and television and ultimately computer networks and internet - telecommunication systems knew a tremendous evolution within the last century! This was also clear to Richard Hamming, who was bothered by erroneous data transmission. As the transmission channel is often very noisy, the received information is not necessarily the information that was sent out. Looking at digital data transmission, a straight-forward way to check for errors would be a supplementary bit of information, a so-called parity bit. Each package of data on n-1 bits is completed by 1 parity bit, whose value is chosen such that the number of ones in the n-bit package is even. Although there is little overhead, parity checking is not very robust. If an even number of bits is flipped during transmission, the check bit remains valid and the error will not be detected. Moreover, although parity can detect errors, it provides no indication on the position of the flipped bit. The data must be discarded entirely and re-transmitted. If more error-correcting bits are included with a message, and if those bits can be arranged such that different incorrect bits produce different error results, then bad bits could be identified and corrected! Among others, Hamming invented the following algorithm that generates a single-error correcting code for any number of bits. Added by: Christian Kauth Date: 2010-10-24 Time limit: 1s Source limit:50000B Languages: All
Input
There are going to multiple test cases. Each test case consists of a single line which is the initial bit-string.
Output
Output corresponding to the each test case in the following format : "Game #x: y", where x indicates the test case number and y is the minimum number of steps required for your program to solve the game.
Example
Input: 0101 10000 00 Output: Game #1: 3 Game #2: 2 Game #3: 0
Added by: Siddharth Kothari Date: 2010-10-25 Time limit: 3s Source limit:50000B Languages: All Resource: Own problem
Input
Two space-separated integers 0 <= a <= b <= 10 9 . Program terminates if a and b are -1.
Output
The sum of the digits of numbers a through b.
Example
Input:1 10100 777-1 -1Output:468655
Added by: Tii Date: 2010-10-25 Time limit: 1s Source limit:50000B Languages: All Resource: http://cs.ikiu.ac.ir/cms/icpc/training/7-contest/86-contest1
Serious effort is thus put on researching transient and dynamic phenomena in power grids. You are offered a position in the lab for linear and planar distribution networks. Given a description of the distribution networks line impedances Z i , you are to find the equivalent impedance between some couples of nodes. The knowledge of such equivalent impedances may speed up the network analysis considerably! Impedances are complex number whose real part represents the resistive line behaviour while the imaginary part stands for the capacitive (negative) or inductive (positive) characteristic. Lines are bidirectional, that is impedance(a,b) equals impedance (b,a). It was proven that any linear and planar graph (can be drawn in a way that its edges intersect only at their endpoints) can be reduced into a single equivalent edge that represents the equivalent impedance between its ending nodes, using the following six transformations:
Now that you have all the necessary operations available, are you able to determine the equivalent impedance between several couples of nodes? INPUT The input consists of several test-cases separated by an empty line. Each test-case starts with the number of nodes N (1<=N<=100), the number of bidirectional connections C (0<=C<=1000) and the number of equivalent impedances to compute Z (0<=Z<=10) on a line. Then follow C lines, each describing one bidirectional connection in the form EndPoint_1 EndPoint_2 Impedance. EndPoint_1 and EndPoint_2 are in the range 1 to N and impedance has the format re im where re and im designate the real and imaginary parts respectively, both being real numbers d such that 10 -3 < |d| < 10 3 . The next Z lines each hold two integers, the indices of the nodes between which you are to compute the equivalent impedance. Input terminates on a test-case with N=C=Z=0, which must not be evaluated.
OUTPUT For each couple of endpoints, output the equivalent impedance in the form re im where re and im designate the real and imaginary parts respectively. If the nodes are not connected, output no connection. Electrical engineers will consider your result as correct if the absolute error on the real and imaginary parts is below 10 -2 . Finish each test-case on a blank line. SAMPLE INPUT 5 10 3 3 1 12.317 -0.779 5 3 30.107 0.289 5 1 27.447 -22.649 4 2 15.351 24.371 5 5 19.63 -3.549 2 2 11.841 18.757 4 5 4.834 -16.542 3 5 5.022 -22.387 2 5 24.768 -22.356 5 2 27.351 12.053 12 23 33 10 10 4 9 8 6.36 17.411 1 3 27.596 -6.484 9 10 4.735 -8.282 8 8 6.901 27.939 8 4 14.894 3.729 5 4 14.311 -2.422
10 10 11.009 6.225 4 4 3.196 -32.703 10 9 15.282 -14.799 3 9 20.473 27.158 10 9 81 29 96 SAMPLE OUTPUT
23.37 -7.26 19.61 -6.97 0.00 0.00
Sample input 1 Sample input 2 Added by: Christian Kauth Date: 2010-10-25 Time limit: 30s Source limit:50000B Languages: All
7692. Chemistry
Problem code: CHEM
The story started some 5000 years ago in Ancient Egypt, was continued by the Greeks and Arabs, reached France, Europe, and finally conquered the world. The studies on the compositions of waters, the humans greed for purified materials, millions of experiments and many brilliant minds made chemistry what it is today: No more the quest of the Philosophers stone, but the study of matter and the changes it undergoes.
There remain nevertheless still groups of stout-hearted followers of ancient believes, so-called alchemist. Keeping their research top-secret, they meet once a year for a conference where they share their recent findings. This years location is Lausanne and Extremely Purified Fluorescent Liquids (EPFL) is the topic. The idea is that the chemists brew together some new EPFLs. As we speak about state of the art EPFLs, it is necessary that certain chemists put their very specific knowledge together. Thus for a certain EPFL E 1 , the presence of chemists C 1 , C 2 and C 3 may be required. For another E 2 , chemists C 1 and C 4 might be necessary. Although chemists are generally very patient people, as their reactions might take long times, they get very impatient if they are to observe experiments in which they are not involved. As an example, chemist C 4 would go crazy if he had to assist to the brewage of E 1 . To ensure a pleasant stay in Lausanne to every chemist, you are to arrange their departure and arrival dates so that each chemist is available whenever his knowledge is required, but is not in Lausanne when other EPFLs are created. To this purpose, you are given a schedule with ones and zeros. Each column stands for one EPFL, each row for one chemist. There is a 1 at position (C i ,E i ) if chemist C i is needed for EPFL E i , and a zero otherwise. Your task boils now down on rearranging the columns in a way that all ones are consecutive in every line. For traditional reasons, the organizers EPFL is always brewed first and corresponds to the first column of the input schedule (E 1 ).
INPUT The input consists of several test-cases separated by an empty line. Each test-case starts with the number of chemists C (1<=C<=400), followed by the number of EPFLs E (1<=E<=400). Then follow C lines of E characters, 1 or 0. You may assume that there exists exactly one order of EPFLs (initiated by E 1 ) that meets the above constraints. Input terminates on a test-case with C=E=0, which must not be processed. OUTPUT Print each output on a line by itself, which holds E numbers, corresponding to the initial position in the planning, arranged such that all chemists are available when necessary and away from Lausanne otherwise. (the first number must always be 1 as a tribute to the host). SAMPLE INPUT 65 00010 01000 10101 10100 00011 00101 00 SAMPLE OUTPUT 13542
Added by: Christian Kauth Date: 2010-10-27 Time limit: 2s Source limit:50000B Languages: All
Each pipeline has two terminals, starting at a location with water abundance and ending in a region with water scarcity. As drilling the Earth on so long distances is not a reasonable option, all pipelines will be above Earth. Further are there dedicated ducts for the pipelines at different heights. That is, a pipeline grows vertically into the sky until one of the allowed heights is reached, makes a 90 angle, and follows the duct at constant height until it is above the depletion region, where it forms another 90 angle to descent vertically to ground. As all pipelines projection to ground must follow the same circle, the ICPC faces a serious problem. They must make sure that no pipelines cross each other in this 2D plane! Further they are concerned about the total length of the pipes, which theyd like to minimize. Your task is to calculate the minimal total length of all the pipes, knowing that the allowed duct heights are non-zero integer multiples of the distance between two adjacent locations (measured along the circle on surface level), which for our purpose has a value of 1. INPUT The input consists of several test-cases separated by an empty line. Each test-case starts with the number of locations N (0<=N<=500), followed by a line containing N numbers (0 or 1) and describing the locations along the circle. A 0 stands for a location with water depletion, a 1 for a region with water abundance. You may safely assume that there are as many 0 as 1. Input terminates on a test-case with N=0, which must not be evaluated.
OUTPUT For each test-case, output the minimum total length (to a precision of 10 -2 ) of the pipes so that each abundance region connects to exactly one depletion region. SAMPLE INPUT 4 1001 8 11110000 0 SAMPLE OUTPUT 9.14 31.00
Sample input 1 Sample input 2 A larger test-case Added by: Christian Kauth Date: 2010-10-27 Time limit: 10s Source limit:50000B Languages: All
7696. Encryption
Problem code: CENCRY
Marko is going to write a secret letter to a friend. He thought it is better to encrypt letter so that no other person can read it. After long thought he came up with an encryption scheme which was lame but he thought it will work anyways. To encrypt a text he first wrote two infinite strings of characters first string consists only of vowels and second string consists of consonants only. aeiouaeiouaeiouaeiouaeiou.................... bcdfghjklmnpqrstvwxyzbcdfghjklmnpqrstvwxyz... Following is the scheme for encryption : 1. let c be any character to be encrypted. 2. let k be the count of number of times c character occured in text to be encrypted till now. 3. first find which of two infinite string contains that character. 4. then look for kth occurence of that character in that string. 5. replace charcter c by corresponding character in second string. For example encrypted text of "baax" will be "abho".
Input
First line of input will contains t, number of test cases. Then t test case follows each test case in a line. Each test case will be a string of small latin alphabets. Length of string will be less than 5*10^4
Output
For each test case print encrpyted text. Sample : Input: 2 baax aaa Output: abho bhn
Added by: divyanshu Date: 2010-10-27 Time limit: 1s Source limit:50000B Languages: All
In this task, you take the role of a civil engineer who is to build a tunnel through a mountain. Unfortunately, you have a very limited budget, and must construct the cheapest possible tunnel. Because engineers have a habit of simplifying things, we will model the mountain and the tunnel using basic geometric shapes. First of all, consider that the earth is flat, and two-dimensional. On this flat surface stands a mountain of height h and width w. Each side of the mountain is parabolic (i.e. satisfies y = ax^2 + bx + c for some a, b, c). You also know that the base of the mountain is smooth, which means that its steepness at the base is zero.
The tunnel is modeled as a horizontal line through the mountain. The best possible tunnel is the one which minimizes construction cost. This cost is proportional to the length of the road which leads to the tunnel, plus the length of the tunnel itself. Consider that each meter of the tunnel is a factor f times as expensive as a meter of road.
Input
The input file consists of several test cases. Each case is given on a line by itself and consists of the three numbers h, w and f, separated by a space. All these are strictly positive floating point numbers. The input file ends with a test case where all numbers are zero (which must not be processed).
Output
Print for each test case a single number, the optimal height t of the tunnel. Always print three digits after the decimal point. You may assume that it is always cheaper to build some tunnel than to drive over the top of the mountain.
Example
Input: 1 2 1.5 9033.66 29752.4 1.56382 0 0 0Output:0.3138852.956
Added by: Jonas Wagner Date: 2010-10-29 Time limit: 1s Source limit:50000B Languages: All
Input
First line of input: T (Number of test cases) In next T lines, each have one pair A B (0<A,B<=10^6)
Output
One integer describing number of common divisors between two numbers.
Example
Input:3100000 10000012 24747794 238336 Output:
3662
Added by: Mir Wasi Ahmed Date: 2010-10-31 Time limit: 6s Source limit:50000B Languages: All Resource: Own problem, used in UODA TST
TASK
Write a program that given an integer N, determines whether it is a happy number or not.
CONSTRAINTS
2 <= N <= 2,147,483,647
Input
* A single line containing a single integer N.
Output
* A single line containing a single integer T which is the number of times the process had to be done to determine that N is happy, or -1 if N is not happy.
Example
Input:19Output:41) 19
: 1
+ 9
= 822) 82
: 82 + 2
= 683) 68
: 6
+ 8
= 1004) 100 : 1
+ 0
+ 0
= 1The solution is 4 because we discovered that the integer 19 is happy after we repeated the process 4times.
Example
Input:204Ou
204 -> 20 -> 4 -> 16 -> 37 -> 58 -> 89 -> 145 -> 42 -> 20 -> 4 -> 16 -> 37 -> 58 -> 89 -> 145 ........
204 is not a happy number because after breaking it several times the results start repeating so wecan deduce that if we continue breaking it, the result will never reach 1.
Added by: Rofael Emil Date: 2010-11-03 Time limit: 0.5s Source limit:50000B Languages: All Resource: Egyptian Olympiad in Informatics ( EOI ) 2009, August 14 - 21, Cairo
7737. Escape
Problem code: BOI7ESC
A group of war prisoners are trying to escape from a prison. They have thoroughly planned the escape from the prison itself, and after that they hope to find shelter in a nearby village. However, the village (marked as B, see picture below) and the prison (marked as A) are separated by a canyon which is also guarded by soldiers. These soldiers sit in their pickets and rarely walk; the range of view of each soldier is limited to exactly 100 meters. Thus, depending on the locations of soldiers, it may be possible to pass the canyon safely, keeping the distance to the closest soldier strictly larger than 100 meters at any moment. You are to write a program which, given the width and the length of the canyon and the coordinates of every soldier in the canyon, and assuming that soldiers do not change their locations, first determines whether prisoners can pass the canyon unnoticed. If this is impossible then the prisoners (having seen enough violence) would like to know the minimum number of soldiers that have to be eliminated in order to pass the canyon safely. A soldier may be eliminated regardless of whether he is visible to any other soldier or not.
Input
The first line contains three integers L, W , and N - the length and the width of the canyon, and the number of soldiers, respectively. Each of the following N lines contains a pair of integers Xi and Yi the coordinates of i-th soldier in the canyon (0 <= Xi <= L, 0 <= Yi <= W ). The coordinates are given in meters, relative to the canyon: the southwestern corner of the canyon has coordinates (0, 0), and the northeastern corner of the canyon has coordinates (L, W ), as seen in the picture above. Note that passing the canyon may start at coordinate (0, ys ) for any 0 <= ys <= W and end at coordinate (L, ye ) for any 0 <= ye <= W . Neither ys nor ye need to be integer.
Output
In the first and only line of the output file the program should print the minimum number of soldiers that have to be eliminated in order for the prisoners to pass the canyon safely. If the prisoners can escape without any elimination, the program should print 0 (zero).
Constraints
1 <= W <= 50,000 1 <= L <= 50,0001 <= N <= 250
Example
Input:130 340 510 50130 13070 1700 18060 260Output:1
Added by: Race with time Date: 2010-11-04 Time limit: 3s Source limit:50000B Languages: All Resource: Baltic Olympiad 2007
Input
Line 1 contains one integer T (1 <= T <= 100) number of test cases. Then T next lines contains one number K (1 <= K <= 10 1000 ), the number of prisoners.
Output
Output contains K lines, contains the probability of freed prisoners about all prisoners. the probabilty accuration is 10 -500 with bankers rounding method.
Example
Input:25100Output (splitted to readibility) :0.400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000Whitespace Explanation:If there no input in any line, then do not print any line :)) Sorry for inconvenience. >:)
Added by: Lukmanul Hakim Date: 2010-11-09 Time limit: 20s-60s Source limit:1024B Languages: All Resource: My Own Problem
Input
The first line of input contains the number of test cases nTest (1<= nTest <= 400). Each test case contains: The first line contains the number of nodes N. Each of next N-1 lines contain two integers A, B, denoting that there is an edge in T1 between nodes A and B (1 <= A, B <= N). Each of next N-1 lines contain two integers A, B, denoting that there is an edge in T2 between nodes A and B (1 <= A, B <= N). The sum of N over all test cases will not exceed 100,000.
Output
For each test case print YES if T1 and T2 are isomorphic and NO otherwise.
Example
Input: 244 24 12 34 22 34 153 43 23 53 13 44 22 52 1 Output: YESNO
Added by: Andrey Naumenko Date: 2010-11-10 Time limit: 3s Source limit:50000B Languages: All
Input
There are about 100 test cases. Each test case consists of two lines. In first, there is n and m, position of Uncle Muscle and number of anti-Tom number, respectively. Follows, m space separated anti-Tom number in the next line. Read test cases upto end of file.
Output
For each test case, if the path is possible, print the minimum number of jumps required to reach Cousin Muscle, followed by the stops (including starting and final position) in the next line.If there are more than one path, print the lexicographically smallest one. If no such path exists, print -1.
Example
Input:12 22 310 32 3 513 62 4 6 8 10 12Output:31 2 4 1221 2 10-1Explanation for Test case:12 22 3There minimum no. of stops are 3.But there are more than one path with 3 steps,a) 1 2 4 12b) 1 2 6 12c) 1 3 6 12Since the lexicographically smallest term has to be printed:a) 1 2 4 12 is the answer.
Added by: lost Date: 2010-11-18 Time limit: 6s Source limit:50000B Languages: All Resource: IIITM Local Contest
Input
The first line of input contains a single integer N ( 1 <= N <= 200000 ). Each of the next N lines contain a pair of real numbers, x i and y i ( 0 <= |x i |, |y i | <= 100000) , representing the i-th vector. x i and y i will be rounded to 3 decimal places.
Output
Output N lines, i-th one containing the maximal dot product for the i-th vector from the input rounded to 3 decimal places.
Example
Input: 40.000 1.0000.000 2.0001.000 1.0000.000 0.000Output:2.0004.0002.0000.000
Explanation: Pair the first vector with the second, the second with itself, third with itself or with the second, and the last one with any of them. Added by: Gustav Matula Date: 2010-12-23 Time limit: 1s-5s Source limit:50000B Languages: All Resource: own problem
Input
T number of test cases each case follow p n m . probability of clearing level for each player, number of player, number of levels in game
Output
T line each probability that gold medal is given round off to 4 significant digits limit: 1<=T<10000 1<=n<1000 1<=m<100 0<=p<=1.0
Example
Input:60.43 3 20.5 3 40.2 3 40.1 4 50.9 3 31.0 4 4Output: 0.44900.62440.41840.30140.02750.0000
Added by: pankaj Date: 2011-02-13 Time limit: 1s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 Resource: own, DOPE 2011
Input
T number of test cases next T test cases follow each contains: N number of balls next line contains N mass of ball ( positive or negative) next line Q number of operation and query next Q lines contain cab c =0 change the color of balls in range a, b inclusively c =1 print the maximum extra mass of red bass over green in the range a,b inclusively
Output
each line for print query limit: 1<=T<10 1<=N<100000 1<=Q<100000 0<=a<=b<N c = 0 or 1 abs(individual mass )<1000
Example
Input: 1 5 2 -3 4 5 -2 4
002 102 113 011 Output: 3 5 [you have to choose a range, if all balls are green in the range you have to print (-)ve answer] Added by: pankaj Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: own, DOPE 2011
Input
T number of test cases. Each case consists of two lines. first line N number of white balls. Next line contains a b c use to generate N mass using mass = (a*i+b)%c; for 1<=i<=N
Output
single line for each case the amount you need to pay limit: 1<=T<1000 1<=N<10000 1<=a,c<1000 0<=b<1000
Example
Input:231 0 1042 1 10Output: 210explanation:case1: 3 mass = 1 2 3; output = 2case2: 4 mass=3 5 7 9;output=10
Added by: pankaj Date: 2011-02-13 Time limit: 1s-2s Source limit:50000B Languages: C C++ 4.0.0-8 C++ 4.3.2 Resource: own, DOPE 2011
8319. GLJIVE
Problem code: GLJIVE
In front of Super Mario there are 10 mushrooms, arranged in a row. A certain amount of points is awarded for picking each of the mushrooms. Super Mario must pick mushrooms in order they appear, but is not required to pick them all - his goal is to score a number of points as close as possible to 100. In case there exist two such numbers which are equally close to 100 (e.g. 98 and 102), Mario will pick the greater one (in this case 102). Help Super Mario and tell him how many points he will score.
Input
Input consists of 10 lines, each of which contains one positive integer less than or equal to 100, denoting the scores awarded for picking each mushroom, in the order that Mario can pick them in.
Output
The first and only line of output must contain the required number of points.
Example
Input:
Added by: akaki Date: 2011-02-13 Time limit: 1s Source limit:50000B Languages: All Resource: coci
Input
The first line of the input contains the integer T (<=20), the number of test cases to follow. The description of each test case begins with a line containing 3 integers N(<=10^8), K(<=10^8) and M(<=50000) as defined in the problem. Following this are M lines giving the row numbers from which values have to be read sequentially.
Output
Output two space separated integers in a line per test case : The minimum number of scrolls required and the minimum scroll length required for the minimum number of scrolls.
Example
Input: 2 20 10 2 10 20 20 10 2 10 7 Output: 1 10 0 0
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the input contains the number of test cases, T (<=1000) Following this are T lines, each describing a test case with four integers M,N,P,Q separated by spaces (1<=M<=N<=100000000, 1<=P<=Q<=1000)
Output
Output T lines, each containing an integer : The number of children that can be fed using the chocolate in the carton
Example
Input: 2 1 2 1 2 3 4 4 5 Output: 6 14
Added by: Raziman T V Date: 2011-02-13 Time limit: 1s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of input contains an integer T (<=10), the number of test cases to follow. Following this are the descriptions of T test cases. Each test case description begins with an integer N (<=50000), the number of points. Following this are N lines, each giving the x and y coordinates of a point (0<=x i ,y i <=10 8 ) separated by a space.
Output
Output T lines, each containing the number of ordered triplets of distinct points in every test case with the given property
Example
Input: 2 3 0 0 1 1 2 2 3 0 0 1 2 2 1 Output: 2 0
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
First line of the contains T, the number of test cases (T<=10) This is followed by the descriptions of the T testcases. The first line of the description contains two integers N and R, the number of cities and one way roads respectively (N<=200,R<=10000). The cities are numbered 1,2,3,...N This is followed by R lines, each representing a one way road by 3 integers N 1 , N 2 and D : the start city, the end city and the length of the road respectively ( N 1 !=N 2 , 1<=D<=1000000). You are assured that there is no more than one one way road from any N 1 to N 2
Output
For each test case output one line. If the patrol can be done, output the minimum total distance that the patrol vehicles have to travel. Otherwise output Impossible
Example
Input: 2 3 3 1 2 1 2 3 1 1 3 1 4 6 1 2 2 2 3 2 3 4 2 4 1 2 1 4 1 3 2 1 Output: Impossible 6
Added by: Raziman T V Date: 2011-02-13 Time limit: 2s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of input contains T(<=4), the number of test cases. Following this are the descriptions of the T test cases. The first line in the description of each test case gives K(<=100). Following this are 4*K+5 lines giving the x and y coordinates of each point separated by a space (0<=x,y<=10 6 )
Output
For each test case output in a different line the minimum sum of absolute values of the cotangents of the central angles, with six digits after the decimal point. If the division cannot be done in the manner explained, print Impossible
Example
Input:200 00 11 11 02 300 02 00 12 11 2Output:4.500000Impossible
Added by: Raziman T V Date: 2011-02-13 Time limit: 6s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the input contains the number of test cases T (<=10). For each test case, the first line has four numbers R, C, N and M (1<=R,C<=100, 1<=M,N<=20, M+N<=R*C). This is followed by N lines, each giving the location and leak direction of an existing container by 3 integers r (row number), c (column number) and d (1 if leakage is N-S, 0 if E-W). Numbering of rows and columns begins with 1.
Output
For each test case, output on a different line the smallest number of holders that will get corroded after rotating the existing containers and placing the newly arrived containers.
Example
Input: 2 4 6 4 4 1 2 0 2 4 0 3 2 1
3 5 1 50 50 5 10 1 35 1 17 44 0 17 46 1 42 35 1 42 46 0 Output: 12 148
Added by: Raziman T V Date: 2011-02-13 Time limit: 2s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of input contains T (<= 100), the number of testcases. This is followed by the description of the testcases. The description of each testcase consists of a single integer N (1 < N <= 1000000).
Output
For each testcase, output modulo 100000007 the number of progressive progressions such that a 1,1 =1 and a k,n k = N
Example
Input: 2 5 10 Output: 1 6
Added by: Raziman T V Date: 2011-02-13 Time limit: 7s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the Input contains T (<=50), the number of test cases. Following this are the descriptions of the T test cases The first line in the description of each test case contains two space separated integers N (<=1000) and K (<=10 8 ). Following these are N lines, each containing the location of a book. The book positions are given in increasing order and will each fit in a 32 bit signed integer.
Output
For each test case output the Kth lexicographically smallest pair of integers that will assure Lenard a win. The two integers should be separated by a space and pairs for each test case should be output on a new line. If for any test case there are less than K pairs of integers that assure Lenard a win, on the line for that test case output Impossible
Example
Input: 1 1 1 1 Output: 1 1
Added by: Raziman T V Date: 2011-02-13 Time limit: 1s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of input contains T (<=10), the number of test cases. Following this are the descriptions of the testcases The first line in the description of each test case contains two space integers N (<=50000) and C (<=10 8 ). This is followed by N lines, each containing an integer. The integer on the ith line is the distance from A 0 to A i and is <= 10 8 . The distances are in increasing order. This is followed by N more lines, each containing an integer. The integer on the ith line is the cost of one unit of fuel at the filling station A i-1 and is <= 10 8 .
Output
Output one integer per test case, the minimum total amount that needs to be spent on fuel to complete the journey
Example
Input: 2 5 10 10 20 30 40 50 1 2 1 2 1 5 15 10 20 30 40 50 1
2 1 2 1 Output: 70 60
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the input contains T (<=10), the number of test cases. Following this are the descriptions of the test cases. The first line of the description of a test case contains space separated integers N (<=2x10 8 ), K (<=2000) and M (<=10 4 ). Following this are K lines, each containing a space separated pair of integers. These are the (l i ,c i ) pair as explained in the problem statement. Here l 1 + l 2 + ... l K = N and c i <= 10 8 . This is followed by M lines, each containing a space separated triplet of integers. These are (s i ,e i ,w i ) as explained in the problem statement. 1 <= s i <= e i <= N and w i <= 10 6
Output
For each test case output a space separated pair of integers : The total amount of water that has overflowed to the tank and the number of levels of the fountain that are completely filled.
Example
Input: 1 10 2 1 5 6 5 3 3 9 5 Output: 5 5
Added by: Raziman T V Date: 2011-02-13 Time limit: 2s Source limit:50000B Languages: All Resource: IOPC2011
Input
First line of the input contains T (<=10), the number of test cases. This is followed by the description of the test cases. The description of each test case begins with a line containing 3 space separated integers N (<400), R (<10000) and K (<400). Following these are R lines, each representing a road in Utopia. The line will contain two different space separated integers N 1 and N 2 implying that there is a two way road between N 1 and N 2 . You are assured that the road network has the property as described in the problem statement.
Output
For each test case, output modulo 100000007 the number of ways of selecting K pairs of sister cities satisfying the conditions in the problem statement.
Example
Input: 2 3 2 1 1 2 2 3 6 5 2 1 2
2 2 4 4
3 4 5 6
Output: 2 4
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of input gives the number of test cases T(<=20). This is followed by the descriptions of the test cases For each test case, the first line of input gives the number of flats, N (N <= 1000), and the number of slopes, R (R <= 20000), connecting them respectively. Each of the next R lines describes a slope by giving: the numbers of the flats at the top and the bottom of the slope, the maximum advisable speed for the slope (<= 100), and the length of the slope (<= 1000) respectively.
Output
For each test case, output a single number (with four places after the decimal point, rounded up) that gives the minimum average effort per unit distance that needs to be expended to ski down from the mountain top to the base. The output for each test case should be on a separate line.
Example
Input: 2 4 5 1 4 30 1 2 50 1 3 60 2 4 60
60 40 20 50
3 3 1 1 2
4 3 2 3 3
50 50 50 40 40 20 20 30
Added by: Raziman T V Date: 2011-02-13 Time limit: 3s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the input contains N (<=1000), the number of cities. This is followed by N lines, each containing the name of a city in Dystopia. Each city name will begin and end with a consonant, and will contain at least 2 and at most 10 letters.
Output
Output modulo 100000007 the number of ways Anaximander can choose 21 city names out of the N with the intended properties.
Example
Input: 23 BBBB CCCC DDDD FFFF GGGG HHHH JJJJ KKKK LLLL MMMM NNNN PPPP QQQQ
RRRR SSSS TTTT VVVV WWWW XXXX YYYY ZZZZ BAAC CAAB Output: 2
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
The first line of the input contains T (<=1000), the number of test cases. This is followed by T lines, each containing an integer N(<=10 11 ).
Output
For each value of N, output separated by space the numerator and denominator (in lowest terms) of the Nth fraction in the enumeration
Example
Input:236Output:1 41 6
Added by: Raziman T V Date: 2011-02-13 Time limit: 5s Source limit:50000B Languages: All Resource: IOPC2011
Input
First line of the input contains T(<=100), the number of test cases. Following this are T lines, each containing an integer N(2<=N<=10 12 ).
Output
For each N, output the expectation value of the number of groups formed. Output 6 digits after the decimal point while printing the expectation value
Example
Input: 2 3 4 Output: 1.000000 1.333333
Added by: Raziman T V Date: 2011-02-13 Time limit: 4s Source limit:50000B Languages: All Resource: IOPC2011
8349. BRODOVI
Problem code: BRODOVI
Mirko lives in a small town with a harbour: once in a blue moon a ship passes by. However, to this day Mirko remembers the day when all the ships who had ever visited the harbour showed up. He denoted this day by index 1. Many days have passed since, but Mirko noted each day when at least one ship visited the harbour, naming these days entertaining. Additionally, Mirko has noticed that each ship visits the harbour periodically, at regular intervals. For instance, an interval of length 3 implies that some ship visited the harbour on days 1, 4, 7, 10 etc. Given Mirkos list of entertaining days (including today which is considered to be an entertaining day as well), compute the minimum possible number of ships visiting his harbour. Notes: All entertaining days appear on Mirkos list. It is guaranteed that the given data is consistent in other words, a solution will always exist.
Input
The first line of input contains an integer N (2 <= N <= 5000), the number of entertaining days. The following N lines contain indices of entertaining days, one per line, in ascending order. The first and the last indices, representing the day from which Mirko started monitoring harbour traffic and today, respectively, will always appear on the list. The first index will always be 1, and the last one (index of today) will be less than 109.
Output
The first and only line of output must contain the required minimum number of ships.
Example
Input:517101319Output:2
Added by: akaki Date: 2011-02-15 Time limit: 0.5s Source limit:50000B Languages: All Resource: coci
8351. KOSARK
Problem code: MIDO
Slavko has started to follow the NBA league. The game duration is exactly 48 minutes. When a game ends, the statistics are shown. Slavko has written down whenever a team scored. He is curious about how long each team was in the lead. INPUT The first line of input contains one integer N (1 <= N <= 100). The following N lines describe events when a team scored. Each description consists of a team that scored, which is either 1 or 2, and a timestamp in format MM:SS (minutes:seconds), the time when a team scored. Minutes and seconds are zero padded and from ranges [00, 47] and [00, 59] (inclusive). The given timestamps are unique. OUTPUT The first line of output must contain the duration that the first team was in the lead. The second line of output must contain the duration that the second team was in the lead. All durations should be in MM:SS format, with leading zeros Slavko has started to follow the NBA league. The game duration is exactly 48 minutes. When a game ends, the statistics are shown. Slavko has written down whenever a team scored. He is curious about how long each team was in the lead. INPUT The first line of input contains one integer N (1 <= N <= 100). The following N lines describe events when a team scored. Each description consists of a team that scored, which is either 1 or 2, and a timestamp in format MM:SS (minutes:seconds), the time when a team scored. Minutes and seconds are zero padded and from ranges [00, 47] and [00, 59] (inclusive). The given timestamps are unique. OUTPUT The first line of output must contain the duration that the first team was in the lead. The second line of output must contain the duration that the second team was in the lead.
All durations should be in MM:SS format, with leading zeros. SAMPLE TESTS input 3 1 01:10 2 21:10 2 31:30 output 20:00 16:30 Added by: kawmia institutes problem setters Date: 2011-02-16 Time limit: 1s Source limit:50000B Languages: All Resource: COCI
Input
There are 100-150 test cases. Each test case is composed of four space separeated integers.The first two numbers, a, b, are the starting position of the Knight and the next two, c, d, are the destination of the Knight. Read upto End Of File.
Output
For each test case, print the minimum amount of bucks they had to pay in separate line. If its impossible to reach the destination then print -1.
Example
Input:2 5 5 24 7 3 21 2 3 4Output:427818Explanation for test case #1:2 5 5 2For moving Knight from (2, 5) to (5, 2) in minimum cost, one of the path is (2, 5) -> (3, 3) ->(5, 2)Bucks paid:(2, 5) = 0(2, 5) -> (3, 3) = 0 + (2*3 + 5*3) = 21(3, 3) -> (5, 2) = 21 + (3*5 + 3*2) = 42 To infinity and beyond...
Added by: lost Date: 2011-02-18 Time limit: 0.5s Source limit:50000B Languages: All Resource: IIITM Local Contest
Constriants: - Volume will be between 1 and 100000, inclusive. - Volume will always be a integer.
Input
Input begins with a integer t, number of test cases. Then follows t lines, each one containing an integer, V, given volume.
Output
For each volume, print the minimum surface area required to produce the can in separate line.
Example
Input:51051002455421Output:30.387283708919.1427891970141.0452767471256.33186866112020.2796324002Explanation for test case 1: Volume = 10 a = 3.41995 h = 1.97451 Minimum Surface Area = 30.3872837089
Added by: lost Date: 2011-02-18 Time limit: 1s Source limit:50000B Languages: All Resource: IIITM Local Contest
Input
The first line of input contains a single integer N. Each of the next N lines contain an element of s.
Output
Print the solution for each possible sum in the following format: sum_value : number_of_triples Smaller sum values should be printed first.
Example
Input:5-12305Output: 1 : 12 : 14 : 25 : 16 : 17 : 28 : 110 : 1
Explanation: 4 can be obtained using triples ( 0, 1, 2 ) and ( 0, 3, 4 ). 7 can be obtained using triples ( 0, 2, 4 ) and ( 1, 3, 4 ). Note: a triple is considered the same as any of its permutations. Added by: Gustav Matula Date: 2011-02-18 Time limit: 5s Source limit:50000B Languages: All Resource: own problem, used for a contest on codechef
8373. AVION
Problem code: AVION1
Mirko and Slavko are USKOK agents tracking the movements of an unnamed corrupt government official. Anonymous sources have tipped them about his upcoming escape attempt. They now know he plans to use his diplomatic liaisons to try and hitch a ride on a CIA blimp leaving from Severin na Kupi blimp port. Its common knowledge that all CIA blimps have the string "FBI" somewhere in their registration codes. They obtained a list of all blimps scheduled for the designated day. There are exactly 5 blimps on the list. Write a program that will point out all CIA blimps. INPUT There are exactly 5 rows of input, each row representing one blimp registration code from the list. A registration code is a sequence of at most 10 uppercase letters of the English alphabet, digits 0 to 9, or dashes .. OUTPUT The first and only line of output must contain a space separated list of integers, sorted in increasing order, indicating the corresponding input rows containing registrations of CIA blimps. If there are no CIA blimps, output the string "HE GOT AWAY!" Mirko and Slavko are USKOK agents tracking the movements of an unnamed corrupt government official. Anonymous sources have tipped them about his upcoming escape attempt. They now know he plans to use his diplomatic liaisons to try and hitch a ride on a CIA blimp leaving from Severin na Kupi blimp port. Its common knowledge that all CIA blimps have the string "FBI" somewhere in their registration codes. They obtained a list of all blimps scheduled for the designated day. There are exactly 5 blimps on the list. Write a program that will point out all CIA blimps. INPUT
There are exactly 5 rows of input, each row representing one blimp registration code from the list. A registration code is a sequence of at most 10 uppercase letters of the English alphabet, digits 0 to 9, or dashes .. OUTPUT The first and only line of output must contain a space separated list of integers, sorted in increasing order, indicating the corresponding input rows containing registrations of CIA blimps. If there are no CIA blimps, output the string "HE GOT AWAY!" input N-FBI1 9A-USKOK I-NTERPOL G-MI6 RF-KGB1 output 1 input N321-CIA F3-B12I F-BI-12 OVO-JE-CIA KRIJUMCAR1 output HE GOT AWAY!
Added by: kawmia institutes problem setters Date: 2011-02-18 Time limit: 1s Source limit:50000B Languages: All Resource: COCI
8374. PARKET
Problem code: PARKET1
Ivica has set up a new parquet flooring in his room. The room is L decimeters long and W decimeters wide. The blocks are of quadratic shape and each has an area of one quadratic decimeter. Once Ivica had set up the flooring, which consists of brown.colored blocks, he decided to paint the blocks on the edge of the room red. The picture below illustrates the scenario from the test case #2 - outer blocks are red, while the remaining two inner blocks are brown: Marica has come to visit Ivica. While Ivica was serving her cookies, she counted the number of blocks of each color. When she returned home, she recalled of the two numbers and wished to calculate the dimensions of Ivicas room. Help her! INPUT The first and only line of input contains two integers separated by a space, R (the number of red blocks) and B (the number of brown blocks). The following constraints will apply: 8 <= R <= 5000, 1 <= B <= 2 000 000. OUTPUT The first and only line of output must contain the dimensions of the room, L and W, respectively. If the numbers differ, output the greater one first. The test data will ensure that a unique solution always exists Ivica has set up a new parquet flooring in his room. The room is L decimeters long and W decimeterswide. The blocks are of quadratic shape and each has an area of one quadratic decimeter. Once Ivica had setup the flooring, which consists of brown.colored blocks, he decided to paint the blocks on the edgeof the room red. The picture below illustrates the scenario from the test case #2 - outer blocks are red, while theremaining two inner blocks are brown:
Marica has come to visit Ivica. While Ivica was serving her cookies, she counted the number of blocksof each color. When she returned home, she recalled of the two numbers and wished to calculate thedimensions of Ivicas room. Help her! INPUT The first and only line of input contains two integers separated by a space, R (the number of red blocks) and B (the number of brown blocks). The following constraints will apply: 8 <= R <= 5000, 1 <=B <= 2 000000. OUTPUT The first and only line of output must contain the dimensions of the room, L and W, respectively. If the numbers differ, output the greater one first. The test data will ensure that a unique solution always exists. input 81 output 33 input 10 2 output 4 3
Added by: kawmia institutes problem setters Date: 2011-02-19 Time limit: 1s Source limit:50000B Languages: All Resource: COCI
Input
In the first line of input, there is an integer N (the number of conveyor belts, 1 <= N <=100000). In each of the next N lines, there are integers X1, Y1, Z (X1 <=X2, 0 < X1, X2, Y < 10 9 ) reprezenting the belt. Imagine the belt as a segment of which the bounding unit squares are (X1, Y) and (X2, Y). The belts thickness is zero and it lies on the bottom of the given unit squares. The belts will not touch or overlap each other. In the next line, there is an integer Q (the number of falling balls, 1 <= Q <=100000). In the next Q lines there is an integer less than 10 9 , reprezenting the x-coordinate of the unit square Frane drops the ball from.
Output
For each of the Q queries, output the greatest possible number of the conveyor belts visited by the ball.
Example
Input:
3 1 4 3 5 7 2 2 4 1 4 1 4 5 6
Output: 3 3 2 2 Input:
3 5 20 20 15 30 15 10 14 11 3 5 30 516546 Output:
3 2 0
Added by: Adrian Satja Kurdija Date: 2011-02-21 Time limit: 2s Source limit:50000B Languages: All Resource: Frane Kurtovi
8392. Youtube
Problem code: YOUTUBE
N students are bored in computer class so they watch funny video clips on YouTube. The site contains K popular clips, numbered 1 through N. When a video clip is watched, a list of similar video clips is displayed on the side. Every student picks a video clip from the main page and starts watching it. After exactly one minute every student gets bored of his or her video clip, so he opens the first video clip from the list of similar clips on the side (even if he already watched that clip). Write a program that determines for each student which video clip he will be watching during the M-th minute of the class.
Input
The first line contains three integers N, K and M (1 <= N, K <= 100 000) (1 < M <= 1 000 000 000), the numbers of students, video clips and minutes. The second line contains N integers, each between 1 and K, the indices of video clips the students start watching. The third line contains K integers, each between 1 and K, the index of the first similar clip for each video clip.
Output
Output N integers, the indices of video clips that students will be watching during the M-th minute.
Example
Input:4 5 21 2 4 35 5 1 2 3 Output: 5 5 2 1Input:2 6 51 62 3 4 1 4 5Output:1 2
Added by: Stjepan Glavina Date: 2011-02-21 Time limit: 3s Source limit:50000B Languages: All Resource: Croatian Nationals 2009
Input
In the first line no of test cases is given(T<=10). Then T lines follows each containing a quadratic equation in the form a*x*x + b*x+c=0 ,where a,b,c are constants 0<a<1000 and -10000<= b,c<=10000.
Output
For each test case output "Equal roots." ,"Imaginary roots." or "Distinct real roots." according to nature of the roots as explained above.
Example
Input: 2 x*x-2*x+1=0 2*x*x+5*x-3=0 Output: Equal roots. Distinct real roots.
BF C C# C++ 4.0.0-8 C++ 4.3.2 C99 strict LISP clisp LISP sbcl F# HASK JAVA JS PAS fpc PERL PERL 6 PHP PRLG PYTH 2.5 PYTH 3.1.2 RUBY SCALA TEXT Resource: Manohar Singh
The through it Tirumala and it gets temple is closed the most immediately visited after that. place of worship in the world. As the number of pilgrims who visit the temple each day is very high, the head of the temple should keep monitoring the queue system. Today is another lovely day and he has started his work. There are N queues at the entrance of the temple and some of them are already filled with pilgrims. Each queue has a metal door at the beginning, which leads to the temple. When the door is opened, it allows only one pilgrim to get
New pilgrims are rushing in to the queues and the head needs to monitor the current sizes of the queues and decide which doors to be opened. At any time, he wants to know how many queues currently have at least X pilgrims. He also decides an integer Y and wants to open the doors of all the queues having at least Y pilgrims at that time. You are the controller of the queue system and are following his instructions. Respond quickly and win yourself a big laddu (sweet) from him :) . Read the input section for rest of the details.
Input
The first line contains two integers N and Q. N - The number of queues [ 1 <= N <= 100,000 ], Q The number of queries [ 0 <= Q <= 500,000 ] . The second line contains N integers, which are the initial sizes of the queues. ith integer ( 1-based ) is the initial size of queue i [ 0 <= initial size <= 100,000,000 ] Each of the next Q lines is one of the following 1 A [ One pilgrim enters the queue# A ( 1 <= A <= N ) ] 2 X [ Find the number of queues having atleast X pilgrims currently ( 0 <= X <= 1,000,000,000 ) ] 3 Y [ Open the doors of all the queues having atleast Y pilgrims ( 1 <= Y <= 1,000,000,000 ), and thus allowing only one pilgrim to enter the temple from each of them ]
Output
For each query of type "2 X" , print the answer in a new line.
Example
Input:5 620 30 10 50 402 311 22 313 112 202 50Output:2330Note : Ideal time limit should be 2s. It has been increased to 7s, to let Java solutions pass, as the i/o is huge.* There are multiple test sets, and the judge shows the sum of the time taken over all test sets of your submission, if Accepted.
Added by: Anil Kishore Date: 2011-02-25 Time limit: 7s Source limit:50000B Languages: All Resource: CodeMutants 2011 , DA-IICT, India
Little Pratya loves collecting candies and she also likes playing games :). Today Pratya is travelling in bus and she has a bag full of N candies. She looks outside the window and notices milestones with numbers written on them. She decides to play a game. She wants to select some initial non-zero number of candies from the bag and call it her collection of candies. When she sees a milestone on the way, she will add or remove some candies from her collection as following. Let the previous milestone number be a1 and the current milestone number be a2.
a2 > a1 : Pratya adds ( a2 - a1 ) candies to her collection (thus, her bag of candies loses them). If the bag doesnt contain at least ( a2 - a1 ) candies, she starts crying. a2 < a1 : Pratya removes ( a1 - a2 ) candies from her collection (thus, her bag of candies gains them). If her collection doesnt contain more than ( a1 - a2 ) candies, she starts crying. a1 = a2 : Pratya is bored to see the same number again and so she eats one of the candies from her collection. Moreover, Pratya always wants her candy collection to have at least one candy, otherwise she starts crying. Given the numbers written on all the milestones in order, find the minimum number of candies Pratya should select in the beginning so that she doesnt have to cry at all. If it is not possible , print -1. Note that no change to the collection happens when she sees the first milestone.
Input
The first line contain the number of test cases T. Each test case has two lines. The first line specifies N and M. N is the number of candies in the bag and M is the total number of milestones. Second line contains M integers, the numbers written on the milestones, in the order Pratya sees them.
^ is used for power. T <= 150 1 <= N <= 10^7 2 <= M <= 10^4 Each milestone number will be between [-10^6,10^6].
Output
For each test case output the minimum number of candies that should be selected from the bag or -1 if its not possible
Example
Input:310 51 5 1 -1 -22 51 5 1 -1 -2100 31 2 3Output:4-11
Note : Large input, prefer using scanf / printf to cin / cout * There are multiple test sets, and the judge shows the sum of the time taken over all test sets of your submission, if Accepted. Added by: Anil Kishore Date: 2011-02-25 Time limit: 2s Source limit:50000B Languages: All Resource: CodeMutants 2011 , DA-IICT, India
Input
First line contains T [ number of test cases, around 10 ]. T cases follow, each having 2 lines, "N A" and "M B" (quotes for clarity only). [ 1 <= N,M <= 100,000 and each character in A, B is either 0 or 1 ]
Output
For each test case, print the maximum value of a path followed by the minimum value of a path, in the same line, separated by a single space. Output of each case should be in a separate line.
Example
1 0 0 1 1 0 0 1 0 0 0 0
1 0 0 1
1 0 0 1
0 0 0 0
Added by: Anil Kishore Date: 2011-02-25 Time limit: 2s Source limit:50000B Languages: All Resource: CodeMutants 2011 , DA-IICT, India
Little old good Princess stories, Rapunzel she wants is keep a to blessed with oflong part her (reallyafter hair looong!) A its cut. hair, favorite which is sub hair golden that colored continuous and has the part of healing hair, power. has which Afterof the each end of a her long favorite happy color story, she beads at marries least once. her lover Flynn. They decide to lead a normal life by getting rid of the mysterious hair, which when cut loses its power and turns brown. There are many colorful beads on her hair in order. Rapunzel has some K favorite colors B[1...K] To remember
For the purpose of this problem, we represent a color as an integer and Hair as an array A[1...N], which has exactly N colored beads in the given order. Could you please tell her the total number of ways she can cut her favorite sub hair (sub-array). Two sub-arrays are different, if their starting or ending index in A differ.
Input
First line contains T [ number of test cases, around 10 ]. Each test case is preceded by a blank line, including the 1st case. [ -2,000,000 <= A[i], B[j] ( colors ) <= 2,000,000 ] Each test case has 4 lines, as described below. N [ 1 <= N <= 100,000 ] < Array A : N integers, separated by spaces > K [ 1 <= K <= 1,000 ] < Array B : K integers, separated by spaces, her favorite colors, without repetition >
Output
For each test case, output the number of different sub-arrays, which has her favorite color appearing at least once, in a separate line.
Example
Input: 3 4 1 2 3 1 2 1 2 6 10 20 30 40 50 60 1 20 5 1 2 3 4 5 2 2 6 Output: 4 10 0 Explanation: Case 1 : Favorite sub-arrays in bold [ 1 2 3 1 ], [ 1 2 3 1 ] , [ 1 2 3 1 ], [ 1 2 3 1 ]
Note: Large input, prefer using scanf / printf to cin / cout There are multiple test sets, and the judge shows the sum of the time taken over all test sets of your submission, if Accepted.
Added by: Anil Kishore Date: 2011-02-25 Time limit: 3s Source limit:50000B Languages: All Resource: CodeMutants 2011 , DA-IICT, India
Input
First line contains T [ number of test cases, around 50 ]. Each of the next T lines contains two integers N M. 1 <= N <= 1,000,000,000 2 <= M <= 1,000,000,007
Output
For each test case, output ( Number of Snaky numbers of length at most N ) % M, in a separate line
Example
Input:31 1012 1073 1001Output:1091616
Hint: You may have to use the mod operator wisely ! * There are multiple test sets, and the judge shows the sum of the time taken over all test sets of your submission, if Accepted.
Added by: Anil Kishore Date: 2011-02-25 Time limit: 2s Source limit:50000B Languages: All Resource: CodeMutants 2011 , DA-IICT, India
Input
Twenty tests with one positive integer < 10^20.
Output
Print the illustrated above number R for each test.
Example
Input: 5778185824586267361855 Output: 103
Added by: HWK Date: 2011-02-25 Time limit: 10s Source limit:50000B Languages: All
Input
The first line of input contains T, the number of test cases. T lines follow, one for each test case. For each test case, the input contains one line denoting the 4 integers xs, ys, xd, yd
Output
Output T lines, one for each test case. For each test case, output "YES" if (xd,yd) is reachable from (xs,ys) and "NO" otherwise. (quotes for clarity)
Example
Input: 1 1 1 2 2 Output: YES Constraints: T <= 25 -10^10 <= xs, ys, xd, yd <= 10^10 Note that, although the input values are constrained by the above inequality, the coordinates of the points at the intermediate steps need not be.
Explanation: Test case 1: We can move in the following manner: (1,1) -> (2,1), using the operation (x,y) -> (2*x,y). Then, move from (2,1) -> (1,2), using the operation (x,y) -> (y,x). Finally use the operation (x,y) -> (2*x,y) to move from (1,2) -> (2,2). Added by: suhash Date: 2011-02-26 Time limit: 1s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains a single integer t, denoting the number of test cases. The first line of each testcase contains two space separated integers n and x. Next line contains n integers k 1 , k 2 , ..., k n . Next line contains n integers a 1 , a 2 , ..., a n . Next line contains n integers y 1 , y 2 , ..., y n .
Output
For each testcase output the least positive value v that can be taken by the expression. To avoid floating point errors, round it off to the nearest integer. For example, 12.6 is rounded off to 13, and 12.4 is rounded off to 12. To avoid ambiguity, there will be no test case for which the fractional part of the answer equals 0.5.
Example
Input: 2 1 4 2 3 3 2 6 1 1 1 1 1 1 Output: 24 5 Constraints: t <= 25 1 <= n <= 20 1 <= x <= 1000000 1 <= k i , a i , y i <=20 xi > 0
Explanation: Test case 1: x 1 2 = 4. Therefore, x 1 = 2 and 3*x 1 3 = 24. Test case 2: x 1 *x 2 = 6. Minimum value of x 1 + x 2 is 2*sqrt(6) = 4.89897. x 1 = sqrt(6) and x 2 = sqrt(6) gives this solution. Answer is 4.89897, which when rounded off to the nearest integer equals 5. Added by: suhash Date: 2011-02-26 Time limit: 1s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains a single integer n, denoting the total number of inequalities. Each of the next n lines contain 2 space separated integers t i and v i . t i denotes the type of inequality and v i denotes the value on the right hand side of the inequality.
Output
Output two space separated integers, the first integer denoting the maximum number of inequalities which are satisfied for some value of x, and the second integer denoting the minimum value of x for which the maximum number of inequalities are satisfied.
Example
Input: 4 1 10 2 9 3 7 4 4 Output: 3 7 Constraints: 1 <= n <= 100000 1 <= t i <= 4 1 <= v i <= 10^18
Explanation:
The given inequalities are: 1) x > 10, 2) x < 9, 3) x = 7, 4) x != 4. For x=7, the inequalities 2), 3) and 4) are satisfied. Added by: suhash Date: 2011-02-26 Time limit: 3s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains an integer t, denoting the number of test cases. For each testcase, the first line contains 2 space separated integers M and N. Each of the next M lines contains N integers. The j th integer on the i th line denotes the value of A ij Each of the next M lines contains N integers. The j th integer on the i th line denotes the value of B ij Each of the next M lines contains N integers. The j th integer on the i th line denotes the value of C ij
Output
For each test case output one value, denoting the maximum profit which Chakra can make in a day. More than one restaurant can be open during a given time slot.
Example
Input: 1 2 3 1 2 3 3 2 1 3 2 1 1 2 3 4 5 2 3 1 6 Output: 16 Constraints: t <= 50 1 <= M,N <= 100 1 <= A ij , B ij <= 5000 0 <= C ij <= 10^9
Explanation: Test case 1: By opening the first restaurant at time slot 2 and second restaurant at time slot 3, Chakra makes a profit = 2*5 + 1*6 = 16. Note that although there are 3 customers for the second restaurant at time slot 3, since there is only 1 waiter, only 1 customer can be served. Added by: suhash Date: 2011-02-26 Time limit: 3s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains an integer t, denoting the number of test cases. For each test case, the first line contains 3 space separated integers n, x 0 , d. The next line contains n+1 space separated integers g 0 , g 1 , g 2 , .....g n .
Output
For each test case output n+1 integers, denoting the coefficients of the polynomial a 0 , a 1 , a 2 ,...... a n . All the coefficients that are printed should be non-negative and should be less than 1000000007. You are required to find coefficients of the polynomial a 0 , a 1 , a 2 ,...... a n , which satisfy the equations: f(x 0 )%1000000007 = g 0 , f(x 0 +d)%1000000007 = g 1 , ....... f(x 0 +n*d)%1000000007 = g n . It is guarenteed that there is a unique solution for every test case.
Example
Input: 1 3 1 1 10 26 58 112 Output: 4 3 2 1 Constraints: t <= 25 1 <= n <= 1000 0 <= x 0 <= 100000 0 < d <= 10000 0 <= g i <= 10^9
Explanation: Test case 1: It can be seen that the polynomial f(x) = x 3 + 2*x 2 + 3*x + 4 satisfies the above input. Added by: suhash Date: 2011-02-26 Time limit: 15s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains an integer N, denoting the number of nodes in the tree. The next N-1 lines contain 2 space separated integers u and v, denoting an edge between vertex u and vertex v. The next line contains an integer Q, denoting the number of inputs (commands and queries) which Nivash wants to give. The next Q lines contain 3 space separated integers x, a, b. If x is 1, it denotes a command to color node a with a color b. If x is 2, it denotes a query and Bhoopathi should answer if the path from node a to node b (both inclusive), is monochromatic or not. All vertices of the tree are 0 based.
Output
For each query, output "YES" or "NO" (quotes for clarity), denoting whether the path from node a to node b (both inclusive), is monochromatic or not. Output "NO", even if all nodes on the path from node a to node b (both inclusive) are uncolored.
Example
Input: 3 0 1 1 2 7 1 0 11 2 0 1 2 0 2 1 2 12 1 1 11 2 0 1 2 0 2
Output: NO NO YES NO Constraints: 1 <= N <= 100000 1 <= Q <= 200000 1 <= color value <= 30.
Explanation: Initially node 0 is colored with color 11, so path between node 0 and node 1 is not monochromatic. Hence, the answer is "NO". The same explanation holds for the path between node 0 and node 2. Then node 2 is colored with color 12 and node 1 with color 11. Now, all nodes on the path between node 0 and node 1 are colored with only one color (11), so the answer is "YES". The path between node 0 and node 2 has 2 colors (11 and 12), hence the answer is "NO". Added by: suhash Date: 2011-02-26 Time limit: 2s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains an integer t, denoting the number of test cases. Each of the next t lines contain 2 space separated integers N and L.
Output
For each test case, output one floating point value denoting the expected number of nodes in the trie. Output the values rounded off to 2 decimal places. Always print 2 digits after the decimal point. To know more about tries visit here.
Example
Input: 2 1 3 2 2 Output: 4.00 4.25 Constraints: t <= 25 1 <= N <= 300 1 <= L <= 300
Explanation: Test case 1: There are 8 possible words of length 3. Which ever word is inserted into the trie, we get only 4 nodes. Added by: suhash Date: 2011-02-26 Time limit: 3s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains 9 integers a 1 , a 2 , ....a 9 . The second line contains a single integer Q, denoting the number of queries. Each of the next Q lines contain 2 numbers u and v.
Output
For each query, output 2 space separted integers denoting the number of distinct paths and sum of weights of all paths respectively. Since the output can be large, output these quantities modulo 1000000007. Two paths (v 1 , v 2 , .... v m ) and (u 1 , u 2 , .... u n ) are distinct if: 1) m != n 2) m = n, there exists some index k (1 <= k <= m) such that v k != u k
Example
Input: 2 0 1 0 0 0 0 0 0 1 311 113 Output: 2 1110 Constraints: 1 <= (a 1 + a 2 + .... a 9 ) <= 500 1 <= Q <= 20 a i >= 0
Explanation: Test case 1: The set S for the above problem is {311, 113, 131}. The edges of the graph are 311->131, 311->113, 131->113. There are 2 distinct paths from 311 to 113, namely (311->131->113) and (311->113). The sum of weights of edges on path-1 = (311+131)+(131+113) = 686. For path-2, the sum of weights of edges = (311+113) = 424. Therefore, answer = 686 + 424 = 1110. Added by: suhash Date: 2011-02-26 Time limit: 15s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Any rotation of above tiles is also permitted. Each tile is available in k different colors, and theres an infinite supply of all tiles. The courtyard has dimensions 2 * n. Vikas wants to tile the courtyard in such a way that no two adjacent tiles have the same color. Two tiles are considered adjacent if they share a common side. Two tilings are considered different if: 1) The arrangement of tiles is different. 2) There is atleast 1 position (1*1 square) which has different colors in the two arrangements. Can you help Vikas find the number of different ways in which he can tile the courtyard, subject to the above conditions?
Input
The first line of input contains a single integer t, denoting the number of test cases. Each of the next t lines contains 2 space separated integers n and k.
Output
For each test case output one integer, denoting the number of different ways in which the courtyard can be tiled. Two tiles are considered adjacent if they share an edge. Two tiles which just share a common point are not considered adjacent. Since the answers can be large, print all the quantities modulo 1000000007.
Example
Input: 2 1 1 1 2 Output:
Explanation: Test case 1: There is only 1 way to tile the courtyard, by using a 2*1 tile. Test case 2: Let 1 and 2 be the available colors. The grid can be tiled in 4 ways - 1) place one 2*1 tile of color 1, 2) place one 2*1 tile of color 2, 3) Place two 1*1 tiles (color 1 above and color 2 below), 4) Place two 1*1 tiles (color 2 above and color 1 below) Added by: suhash Date: 2011-02-26 Time limit: 2s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
Input
The first line of input contains 2 space separated integers n and q. The second line contains n integers a[0], a[1], ....., a[n-1]. Each of the next q lines contain 3 integers v, i, j.
Output
For each query, output a single integer 0, 1, 2 or 3, denoting the answer.
Example
Input: 4 5 3 -2 -5 1 1 1 3 0 0 3 0 0 2 0 2 3 0 0 1 Output: 0 1 2 3 Constraints:
1 <= n <= 100000 1 <= q <= 100000 -5000 <= a[i] <= 5000 -5000 <= v <= 5000
Explanation Initial array is {3, -2, -5, 1}. After first update, the array will be {3, 3, 6, 0}. Now, from indices 0 to 3, it is unsorted. From indices 0 to 2, it is sorted in non-descending order. From indices 2 to 3, it is sorted in non-ascending order. Between indices 0 and 1, the values are equal. Added by: suhash Date: 2011-02-26 Time limit: 2s Source limit:50000B Languages: All Resource: Bytecode 2011, NIT Trichy, India
8434. Kolica
Problem code: KOLICA
A number of shopping carts filled with explosives are floating in a coordinate system, in one of the four main directions (up, down, left or right). All carts are moving at a speed of one unit per second. Movement is continuous; for example, in one third of a second, a cart travels one third of a unit. When two or more carts collide (are at the same place at the same time), there is an explosion and all carts taking part in the collision explode and cease to exist. Write a program that, given the starting points and directions of all carts, determines which carts never explode.
Input
The first line of input contains an integer N (2 <= N <= 500), the number of carts. Each of the following N lines contains two integers and a string. Each pair of integers describes the starting coordinates of one cart (between 0 and 100 000 000, inclusive), and the string describes the direcction in which the cart is moving ("gore" for up, "dolje" for down, "lijevo" for left, or "desno" for right). No two carts will start at the same coordinates.
Output
Output the indices of all carts which never explode, sorted in ascending order, one index per line. The first cart in the input is labeled 1, the second is labeled 2 etc. If no carts survive, output "nema".
Example
Input:45 5 dolje5 6 lijevo5 7 desno5 8 gore Output: 1234Input:53 3 dolje1 1 desno5 1 lijevo100000 500000 desno900000 500000 lijevoOutput:nemaInput:310 0 gore0 10 desno15 5 lijevo Output:2
Added by: Stjepan Glavina Date: 2011-02-28 Time limit: 1s-2s Source limit:50000B Languages: All Resource: Croatian Nationals 2007
8442. Problem 3
Problem code: NOVICE43
When I first learned backtracking I made a program to find all the permutations of the English alphabets in lexicographically increasing. Filled with elation I showed the program to Rohil. Rohil being someone who likes to do stuff off the league was not impressed and gave me the following variation of the problem help me to solve the problem: You have to find the number of permutations of length N(1<=N<=12) such that at whenever an alphabet say($) appears in the permutation all the alphabets smaller than $ should have appeared before it at least once. An alphabet is smaller than another if it appears before the other in the English alphabet. a being the smallest and z being the largest. For example when N=2 then aa,ab are the only valid permutations and ba,bb is invalid since in ba all the alphabets smaller than b have not appeared at least once before it. See example for further clarification. When I first learned backtracking I made a program to find all the permutations of the English alphabets in lexicographically increasing. Filled with elation I showed the program to Rohil. Rohil being someone who likes to do stuff off the league was not impressed and gave me the following variation of the problem help me to solve the problem: You have to find the number of permutations of length N(1<=N<=11) such that at whenever an alphabet (say c ) appears in the permutation all the alphabets smaller than c should have appeared before it at least once. An alphabet is smaller than another if it appears before the other in the English alphabet. a being the smallest and z being the largest. For example when N=2 then aa,ab are the only valid permutations and ba,bb is invalid since in ba all the alphabets smaller than b have not appeared at least once before it. See example for further clarification.
Input
Line 1: T(no. of test cases) Line 2: n1 Line 3: n2 ... ...
Output
Line 1: no. of such permutations of length n1
...... .....
Example
Input: 2 2 3 Output: 2 5 Explanation for N=3, the possible permutations are: abc aba abb aab aaa
Added by: Mahesh Chandra Sharma Date: 2011-03-01 Time limit: 3s Source limit:50000B Languages: All Resource: NSIT Noivce contest #4
8456. PRIMITIVEROOTS
Problem code: PROBLEM4
Problem 4: PRIMITIVEROOTS Introduction to Primitive Roots: a primitive root modulo n is any number g with the property that any number coprime to n is congruent to a power of g modulo n. The number 3 is a primitive root modulo 7. because
Problem Statement: Given a prime number n as input youve to find the (product all the primitive roots of n) % n Input: The first line consists of t the number of test cases followed by t lines. Each line consists of a prime number n. Output:
For each test case print the test case number followed by : followed by (product of all primitive roots of n) % n. If it is not a prime then print "NOTPRIME" Input Specifications 1<=t<=100 10000>=n>=3 Example Sample Input 3 6 7 9 Sample Output 1:NOTPRIME 2:1 3:NOTPRIME Description for test case #2: The primitive roots of 7 are 3 and 5. The product % 7 = 15%7 =1 Added by: cegprakash Date: 2011-03-04 Time limit: 3s Source limit:50000B Languages: C C# C++ 4.0.0-8 C++ 4.3.2 JAVA PERL PERL 6 PHP PYTH 2.5 Resource: Edited question from Kurukshetra 2011
Output
Output is the minimum amount of money that you can spend on gas to get you from Waterloo to the big city. If it is not possible to get from Waterloo to the big city subject to the constraints above, print "Impossible".
Example
Input:500
100 150 200 300 400 450 500 999 888 777 999 1009 1019 1399
Output:
450550
Added by: Fendy Kosnatha Date: 2011-03-05 Time limit: 0.125s Source limit:50000B Languages: All Resource: UVa
3) 5) 3) 5)
FJ cant satisfy all four cows, since there are too many requests for stalls 3 and 4. Noting that Cow 2 requests an interval that includes stalls 3 and 4, we test the hypothesis that cows 1, 3, and 4 can have their requested stalls. No capacity is exceeded, so the answer for this set of data is 3 -- three cows (1, 3, and 4) can have their requests satisfied.
Input
* Line 1: Two space-separated integers: N and M * Lines 2..N+1: Line i+1 contains a single integer: C_i * Lines N+2..N+M+1: Line i+N+1 contains two integers: A_i and B_i
Output
* Line 1: The maximum number of requests that can be satisfied
Example
Input:
5 1 3 2 1 3 1 2 2 4 4
3 5 3 5
Output:
3
Added by: Fendy Kosnatha Date: 2011-03-05 Time limit: 2s Source limit:50000B Languages: All Resource: USACO Gold Division
>=91
10
>=81
9
>=71
8
>=61
7 >50 6
==50
5
<50
0 If the student scores 0 point in any of the subjects then hes declared as FAILED else hes declared as PASSED Mr.Chintumani, a professor of Computer Science department of the college designed a software program to calculate the GRADEPOINTAVERAGE(GPA) of the student and to determine whether the student is "PASSED" or "FAILED" GPA= sum of (credit*points) for all the subjects / total number of credits of all the subjects Input: The first line consists of an integer n, the number of students in the class. Then n test cases follows, in each test case the first line consists of 6 integers a,b,c,d,e and f, the credits of the 6 subjects. Then for the next 6 lines, each line(each subject) consists of 5 numbers(the first three numbers are the assessment marks out off 20, the fourth is the final exam mark and the fifth is the percentage of attendance). Output: Assume you are Prof. Chintumani and print the result and GPA(rounded to two decimal places) per line for each student in the format as given in the example output. Example: Sample Input:
1 111223 19 18 20 70 70 17.33 15 16.66 66 70.66 ab ab ab 0 100 ab ab 10 78 78 17 18.33 19.5 64 87 14 8 ab 60 45 Sample Output: FAILED, 6.30 Explanation of the testcase: There is only 1 student In the Subject 0, he got 19,18 and 20 as internal marks, considering best two of three his internals score is 43.875/45. His final exam score is 35/50 His attendance mark is 3 So the total marks he got in that subject is 81.875 which leads to 9 points. Similarly he gets Subject 1: 74.2387 --> 8 points Subject 2: 0 --> 0 points Subject 3: 52.25 --> 6 points Subject 4: 75.5588 --> 8 points Subject 5: 59.75 --> 6 points Gpa= (9*1 + 8*1 + 0*1 + 6*2 + 8*2 + 6*3 ) / (1+1+1+2+2+3) = 6.30 Since he got 0 points in atleast one of the subjects he is FAILED
The output format is "RESULT,<space>gpa" without double quotes. Added by: cegprakash Date: 2011-03-06 Time limit: 1s Source limit:50000B Languages: All
You may call Adams calculator a headstrong comtemporary, because of its special behaviour: There is no invalid sequence of keystrokes. You can press arbitrary keys one after another, the calculator always knows how to handle it. If more than one operator key (including [=]) is pressed directly after another, only the last of these operators will be processed - all previous ones (in that continuous sequence) are ignored. If more than 8 digit keys are pressed for the input of a single number, only the first 8 digits will be processed - all following digits are ignored. If the actual display value is zero, the typing of the zero key will have no effect, its just ignored like successive keystrokes of the same operator. If a floating point value is typed in, a leading zero directly before the decimal point may be left out, but will be displayed just the same. If the decimal point key is pressed within a number that already has a decimal point typed in or if the input of a number (as a sequence of digit keys) is terminated by a decimal point, that has no effect.
Input
Input starts with a positive integer t (t<1000) in a single line, the number of testcases. Then t lines follow, each line giving the description of an arbitrary sequence of keystrokes on the calculators keypad. Every key is enclosed by square brackets, all keystrokes are separated by a single space. The number of keystrokes per sequence is less than 500 and every sequence will be terminated by [=].
Output
For each sequence of keystrokes print the result the calculator will show on the display after the complete sequence of keystrokes has been processed. The size of the display is 8 digits plus an optional "-"-sign in front of the leftmost digit and a decimal point that will always appear, even if the result is an integer value. If a value has more than 8 decimal digits, it has to be rounded to fit into 8 digits. As the calculators display is filled from right to left, the output has to be adjusted to the right. If the absolute value of a number rounded to an integer needs more than 8 digits, scientific notation is used. Same case, if the absolute value of a number is larger than 10 -100 , but rounding to 8 digits would result in displaying zeros only. If the absolute value is not larger than 10 -100 , it results to zero. In scientific notation a number is expressed as a product of a decimal part and a power of 10. The decimal part has always exactly one non-zero digit before the decimal point, an optional "-" sign in front of the leftmost digit and upto 4 digits after the decimal point, rounded if necessary. If the exponent is negative, a "-" follows, otherwise a space. Then follow two digits representing the exponent; a leading zero is shown in the exponent, if necessary. Notice that there are two cases, where the calculator will display "Error." instead of showing a result. If a (final or interim) result has a rounded absolute value of at least 10 100 or if you divide by zero. After an error has occured, all following keystrokes are ignored unless [C] is pressed. For more clarity of the calculators behaviour and the required input and output format please look at the examples below.
Example
Input: 12 [3] [+] [1] [:] [4] [.] [4] [.] [+] [+] [9] [8] [1] [=] [5] [:] [-] [9] [2] [.] [0] [0] [.] [:] Output: 35. 0.1666667 4.8 0. 1. -76543210. 3. 1.108-13 -1.0089 08 2.345 0. Error. [4] [6] [8] [8] [+] [C] [2] [9] [9] [3] [0] [.] [x] [=] [-] [-] [+] [-] [=] [8] [9] [.] [0] [=] [5] [=] [x] [x] [+] [7] [3] [7] [9] [4] [0] [+] [+] [+] [6] [=] [8] [9] [.] [=] [-] [-] [1] [5] [+] [+] [=] [4] [x] [x] [=] [3] [-] [.] [=] [.] [=] [=] [2] [1] [0] [1] [2] [3] [4] [=]
[9] [8] [9] [8] [7] [8] [8] [:] [4] [5] [6] [7] [8] [9] [=] [9] [9] [9] [-] [-] [-] [-] [8] [8] [8] [8] [8] [8] [=] [5] [=]
Added by: numerix Date: 2011-03-06 Time limit: 2s Source limit:10000B Languages: All Resource: own problem
Input
Input starts with a positive integer t (t<50) in a single line, then t testcases follow. Every testcase starts with one line containing a positive integer n (n<1000), the number of phone list entries, and separated by a space - the area code of Adams hometown. Then n lines follow, each line representing one entry in the phone list.
Output
For each testcase first print the number k of entries in the final list in a single line. Then k lines must follow, the cleaned up phone list. Each line is a single entry that has to look exactly like this: [first name] [last name]: [phone number]. Square brackets only for clarity. The list has to be sorted in alphabetical order according to last names (primary key) and - if necessary - first names (secondary key).
Example
Input: 2 10 0608 Sastre,Carlos 030/64 736 666 Voigt,Jens 07401-4498 A Winokurow 0289-334405 Jan ULLRICH 089-77 98 00 9 089/779 8009 Ullrich,Jan LANCE Armstrong 0608 / 220 4 768 86 Jan Ullrich 089/7798 005 02 89 / 33 44 05 Contador,A ArmStrong,Lance 220476886 Ullrich,JaN 0289 / 334405 5 012 Becker,Franz 1200344 Becker,Boris 034/50005 Boris Becker 012 / 50 005 5000 5 Boris Becker Franz Beckenbauer 332323 Output: 4 Lance Armstrong: 0608-220476886 Carlos Sastre: 030-64736666 Jan Ullrich: 089-7798005 Jens Voigt: 07401-4498 3 Franz Beckenbauer: 012-332323 Boris Becker: 012-50005 Franz Becker: 012-1200344
Added by: numerix Date: 2011-03-07 Time limit: 1s-3s Source limit:10000B Languages: All Resource: own problem
Input
First line contains an integer T which is the number of integers. Following this T-cases exist. Each case starts with a line containing an integer n which is the number of elements in the array. The next line contains n-integers which contain the value of this subset. T <= 20 n <= 50,000 Each element in the array <= 1000,000,000 Output For each test case output the value of the maximum subset and the count of the subsets modulo 1000,000,009 Example
Added by: .:: Pratik ::. Date: 2011-03-07 Time limit: 2s-15s Source limit:50000B Languages: All
Input
The first line contains an integer T, which is the number of test-cases Then follow T lines, each containing 3 integers a, b and d. 1 <= T <= 20,000
1 <= a <= b <= 100,000 0 <= d <= 9 Output Print one integer which is the required number as described in the problem statement. Example
Input: 3 10 40 3 1 100 4 1 100000 7 Output: 10 9 26318
Added by: .:: Pratik ::. Date: 2011-03-07 Time limit: 3s Source limit:50000B Languages: All
Input
The first line of the input denotes the number of test cases t(atmost 10). Each line denotes a test case consisting of N,K,L.
Output
For each test case print the last K digits of the Lth term of the N-Nacci series.
Example
Input: 4 2 1 5 3 6 12 4 1 10 4 2 10 Output: 5 778 6 16
Added by: Saransh Bansal Date: 2011-03-09 Time limit: 1s-4s Source limit:50000B Languages: All Resource: Own problem
Output
configurations are possible at the end of the event. There should be no repetitive configuration and output must be in lexicographical. If there is no configuration, print "Impossible".
Example
Input: 10 1 -1 7 -1 Output: 0000000000 0101010101 0110110110 Explanation :
There is 10 lamps in that event and you have to pressed the button once, and at the end of event, lamp number 7 must be OFF.
Added by: Fendy Kosnatha Date: 2011-03-10 Time limit: 0.050s-0.5s Source limit:50000B Languages: All Resource: Own Problem
Input
The firstlineof input containspositiveintegersN(N<=100)andM(M<2 31 ). The next N lines describe the process of generating each new belt. In the A th of these lines there are five distinct integers from the interval [1, N], denoting the cells of a previous belt from which the packets are added to the A th cell of a new belt. The nextlinecontains Nintegersdescribing thestate oftheM th belt(modulo10007).
Output
PrintNintegersdescribing thestate ofthe first belt(modulo10007).Auniquesolution will exist in all of the test data.
Example
Input:
6 1 1 1 1 1 2 3 2 2 2 2 3 3 3 3 3 4 4 4 4 4 5 5 5 5 5 6 6 6 6 6
13 12 12 12 14 12
Output:
1 0 0 0 2 0
(1 0 0 0 2 0) - (3 1 3 3 3 2) - (13 12 12 12 14 12)
Added by: Adrian Satja Kurdija Date: 2011-04-17 Time limit: 2s Source limit:50000B Languages: All Resource: own problem
8747. Substrings II
Problem code: NSUBSTR2
You are given a string T which consists of 40000 lowercase latin letters at most. You are also given some integers A, B and Q. You have to answer Q queries. For i-th query you are given a string S i and you need to output how many times S i appears in T. Immediately after answering the current query you need to add ((A*ans+B) modulo 26+1)-th lowercase symbol of the English alphabet to the end of T where ans is the answer to this query.
Input
The first line of input contains a string T. The next line consists of three integers Q (1<=Q<=40000), A (0<=A<=27) and B (0<=B<=26). The following Q lines contain Q query strings, S i-2 on i-th line. Input will not exceed 600 kb.
Output
Output Q lines. Output the answer to the i-th query on the i-th line output.
Example
Input:aaaaa2 0 0aaaOutput:55
Added by: Sergey Kulik Date: 2011-04-18 Time limit: 6.666s Source limit:44444B Languages: All Resource: Immagination
Input
The first line of the input contains the number of test cases T (atmost 50). Each testcase consists of 5 integers in order (1) N : The length of each of the two strings. 1<=N<=1000 (2) m1 : The allowed number of changes in the first string. 0<=m1 <= min(100,N/2) (3) m2 : The allowed number of changes in the second string. 0<=m2 <=min(100,N/2) (4) H(S1,S2): The hamming distance between the two strings. 0<=H <=min(100,N/2) (5) |SUM | : The size of the vocabulary. 2<=|SUM |<=1000000
Output
For each test-case output the required number of strings in the intersection modulo 1000000007 in a seperate line.
Example
Input:36 1 2 2 210 2 2 3 520 3 4 5 7Output:3241925Explanation (for the first test case)
The length of each string is 6. We are allowed to perturb atmost one element from the first string and atmost two elements from the second. Since their hamming distance needs to be two, let S1=000000 be the first string and S2=000011 be the second. The set D(S1,1) is {000000,000001,000010,000100,001000,010000,100000}. Without enumerating D(S2,2), we can see that the only set of strings in D(S1,1) that can be obtained by perturbing atmost two elements in S2 are {000000,000001,000010}. Thus |D(S1,m1) * D(S2,m2)| =3.
Added by: Balakrishnan Date: 2011-04-26 Time limit: 25s Source limit:50000B Languages: All Resource: The problem was stated in a technical talk.
Input
Input consists of several cases, each one defined by a line containing a positive integer number n (representing the length in micras of the silver bar and the number of days of the amortization period). You may assume that 0 < n < 20000. The end of the input is recognized by a line with 0.
Output
For each given case, output one line with a single number: the minimum number of cuts in which to cut a silver bar of length nu to guarantee the debt during n days.
Example
Input: 1530Output: 021
Added by: John Mario Date: 2011-04-29 Time limit: 1s Source limit:50000B Languages: All Resource: XXIV Colombian Programming Contest ACIS REDIS 2010 - ACM ICPC
Input
[N <=100, the number of dominoes] in the next N lines: [a string of size between 1 and 100, representing the domino]
Output
The length of the longest chain.
Example
Input:
4 CB BCC BBCC BCBBC
Output:
11
Added by: Adrian Satja Kurdija Date: 2011-05-01 Time limit: 1s Source limit:50000B Languages: All Resource: own problem
Input
The first line of input contains the number of initial single-vertex trees N and the number of queries M (1 <= M <= 100,000). The following M lines contain queries.
Output
For each lca query output the lowest common ancestor (vertex number between 1 and N).
Example
Input:59lca 1 1link 1 2link 3 2link 4 3lca 1 4lca 3 4cut 4link 5 3lca 1 5Output:1232
Added by: Andrey Naumenko Date: 2011-05-02 Time limit: 5s Source limit:50000B Languages: All
In this problem, given a set of points with their colors and positions, you are requested to decide whether there exists a straight line that separates black and white points.
Input
The input is a sequence of datasets, each of which is formatted as follows. nm x1 y1 . . . xn yn x n+1 y n+1 . . . x n+m y n+m The first line contains two positive integers separated by a single space; n is the number of black points, and m is the number of white points. They are less than or equal to 100. Then n + m lines representing the coordinates of points follow. Each line contains two integers x i and y i separated by a
space, where (x i , y i ) represents the x-coordinate and the y-coordinate of the i-th point. The color of the i-th point is black for 1 <= i <= n, and is white for n + 1 <= i <= n + m. All the points have integral x- and y-coordinate values between 0 and 10000 inclusive. You can also assume that no two points have the same position. The end of the input is indicated by a line containing two zeros separated by a space.
Output
For each dataset, output "YES" if there exists a line satisfying the condition. If not, output "NO". In either case, print it in one line for each input dataset.
Example
Input: 3 3 100 700 200 200 600 600 500 100 500 300 800 500 3 3 100 300 400 600 400 100 600 400 500 900 300 300 3 4 300 300 500 300 400 600 100 100 200 900 500 900 800 100 1 2 300 300 100 100 500 500 1 1100 100 200 100 2 2 0 0 500 700 1000 1400 1500 2100 2 2 0 0 1000 1000 1000 0 0 1000 3 3 0 100 4999 102 10000 103 5001 102 10000 102 0 101 3 3 100 100 200 100 100 200 0 0 400 0 0 400 3 3 2813 1640 2583 2892 2967 1916 541 3562 9298 3686 7443 7921 0 0Output: YES NO NO NO YES YES NO NO NO YES
Added by: John Mario Date: 2011-05-03 Time limit: 1s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest Asia Regional Contest, Tokyo 2009
Input
The input is a sequence of datasets. Each dataset is formatted as follows. n t1 c1 ... tn cn n is an integer (1 <= n <= 50) that represents the number of swimmers. t i and c i are integers (1 <= t i <= 300, 1 <= c i <= 250) that represent the natural pace in times to swim from one end to the other and the number of planned laps for the i-th swimmer, respectively. t i and c i are separated by a space.
Output
For each dataset, output the time required for all the swimmers to finish their plans in a line. No extra characters should occur in the output.
Example
Input: 2 10 30 15 20 2 10 240 15 160 3 2 6 7 2 8 2 4 2 4 7 2 8 2 18 1 0 Output: 600 4800 36 40
Added by: John Mario Date: 2011-05-03 Time limit: 2s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest Asia Regional Contest, Tokyo 2009
Input
The input is a sequence of multiple datasets. Each dataset begins with a line which consists of two integers, m and n: the number of features, and the number of ob jects, respectively. You can assume 0 < m <= 11 and 0 < n <= 128. It is followed by n lines, each of which corresponds to an object. Each line includes a binary string of length m which represent the value ("yes" or "no") of features. There are no two identical objects. The end of the input is indicated by a line containing two zeros.
Output
For each dataset, minimize the maximum number of questions by which every object is identifiable and output the result.
Example
Input: 8 1 11010101 11 4 00111001100 01001101011 01010000011 01100110001 11 16 01000101111 01011000000 01011111001 01101101001 01110010111 01110100111 10000001010 10010001000 10010110100 10100010100 10101010110 10110100010 11001010011 11011001001 11111000111 11111011101 11 12 10000000000 01000000000 00100000000 00010000000 00001000000 00000100000 00000010000 00000001000 00000000100 00000000010 00000000001 000000000009 32 001000000 000100000 000010000 000001000 000000100 000000010 000000001000000000 011000000 010100000 010010000 010001000 010000100 010000010 010000001 010000000 101000000 100100000 100010000 100001000 100000100 100000010 100000001 100000000 111000000 110100000 110010000 110001000 110000100 110000010 110000001 110000000 0 0Output: 0 2 4 11 9
Added by: John Mario Date: 2011-05-03 Time limit: 1s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest Asia Regional Contest, Tokyo 2009
The front view (resp., the side view) indicates the maximum heights of piles of cubes for each column line (resp., row line) of the grid.
There are several ways to install this proposal of artwork, such as follows.
In these figures, the dotted lines on the ground indicate the grid lines. The left figure makes use of 16 cubes, which is not optimal. That is, the artwork can be installed with a fewer number of cubes. Actually, the right one is optimal and only uses 13 cubes. Notice that swapping columns of cubes does not change the side view. Similary, swapping rows does not change the front view. Thus, such swaps do not change the costs of building the artworks. For example, consider the artwork proposal given in Figure 2.
An optimal installation of this proposal of artwork can be achieved with 13 cubes, as shown in the following figure, which can be obtained by exchanging the rightmost two columns of the optimal installation of the artwork of Figure 1.
Input
The input is a sequence of datasets. The end of the input is indicated by a line containing two zeros separated by a space. Each dataset is formatted as follows. wd h 1 h 2 ... h w h 1 h 2 ... h d The integers w and d separated by a space are the numbers of columns and rows of the grid, respectively. You may assume 1 <= w <= 10 and 1<= d <= 10. The integers separated by a space in the second and third lines specify the shape of the artwork. The integers h i (1<= hi <= 20, 1<= i <= w) in the second line give the front view, i.e., the maximum heights of cubes per each column line, ordered from left to right (seen from the front); The integers h i (1<= h i <= 20, 1<= i <= d) in the third line give the side view, i.e., the maximum heights of cubes per each row line, ordered from left to right (seen from the right-hand side).
Output
For each dataset, output a line containing the minimum number of cubes. The output should not contain any other extra characters. You can assume that for each dataset there is at least one way to install the artwork.
Example
Input:5 51 2 3 4 51 2 3 4 55 52 5 4 1 34 1 5 3 25 51 2 3 4 53 3 3 4 53 37 7 77 7 73 34 4 44 3 44 34 2 2 44 2 14 42 8 8 82 3 8 310 109 9 9 9 9 9 9 9 9 99 9 9 9 9 9 9 9 9 910 920 1 20 20 20 20 20 18 20 2020 20 20 20 7 20 20 20 200 0Output:1515212115133290186
Added by: John Mario Date: 2011-05-03 Time limit: 1s Source limit:50000B Languages: All Resource: ACM International Collegiate Programming Contest Asia Regional Contest, Tokyo 2009
8816. Mravograd
Problem code: MRAVOGRA
The hard working ants have built a town called Ant Town. They modeled their town after Manhattan, with H horizontal and V vertical streets which cross in VO intersections. As ants dont like water, with the first raindrops comes chaos in Ant Town. Town authorities have placed umbrellas under which any number of ants can hide, but only on N intersections. When the rain starts, each ant on an intersection starts running, using streets, to the nearest intersection with an umbrella. But, if an ant can choose from more than one such intersection, it panics and, not knowing where to go, stays on its starting intersection and gets wet. Town authorities use the name "wet intersections" for such starting intersections. For example, if Ant Town has 10 horizontal and 10 vertical streets, and if there are 4 intersections with umbrellas, then the question marks in the figure represent "wet intersections":
Picture represents first example. We count streets from left to right from 1 to V and from down upwards from 1 to H. Write a program which, given the locations of intersections with umbrellas, determines the number of "wet intersections" in Ant Town.
Input
The first line contains two integers H and V (1 <= H, V <= 30 000), the numbers of horizontal and vertical streets in Ant Town.
Horizontal streets are numbered 1 to H, vertical streets 1 to V. The second line contains an integer N (1 <= N <= 10), the number of intersections with umbrellas. Each of the following N lines contains two integer h and v, meaning that there is an umbrella on the crossing of horizontal street h and vertical street v. The locations of all umbrellas will be distinct.
Output
Output the number of "wet intersections" in Ant Town.
Example
Input: 10 1044 44 66 49 9Output:19Input:9 932 25 58 8Output:36Input:100 100250 5050 51Output:0
Added by: Stjepan Glavina Date: 2011-05-05 Time limit: 1s Source limit:50000B Languages: All Resource: Croatian National 2007
8820. Okret
Problem code: OKRET
There is a text consisting of N characters. At each step Mirko chooses two numbers A and B and then reverses the subsequence consisting of characters between indices A and B, inclusive. Indices are 1-based. Write a program that prints the final text after all operations are made.
Input
The first line of input contains the initial text of length N (1 <= N <= 2500000). It consists only of lowercase letters of the English alphabet. The second line contains integer M (1 <= M <= 2500), the number of steps. Each of the following M lines contain two integer A and B (1 <= A <= B <= N).
Output
In the first and only line output the final text.
Example
Input: lukakuka31 45 81 8Output:kukalukaInput:kukulelebodumepcele53 710 122 105 185 15Output:kubeeludomepcelluke
Added by: Stjepan Glavina Date: 2011-05-06 Time limit: 1.5s Source limit:50000B Languages: All Resource: Croatian Student 2010
Input
First line contains t, the number of testcases. Each of the next t lines contains a number n.
Output
For every case, print the nth term of the sequence.
Example
Input: 2 5 12 Output: 3 6 Added by: Paranoid Android Date: 2011-05-09 Time limit: 1s Source limit:50000B Languages: All
Input
First line of the input contains N A and N B , the sizes of the sequences A and B. Then follow two lines, the sequences A and B. (1 <= N A , N B <= 1000 and all values in the sequence will lie between -1e9 and 1e9).
Output
Print one line, the length of the LCDS as described above.
Example
Input: 43 1583 3 10 5 Output: 3 Input: 12 5 68 Output: 1 Added by: Paranoid Android Date: 2011-05-09 Time limit: 1s-40s Source limit:50000B Languages: All
Input
The first line contains T (T <= 1000), the number of test cases. T lines follow, each contains a single positive integer N(N <= 500).
Output
For each test case, output a single line, which should begin with the case number counting from 1, followed by all the possible passwords sorted in increasing order. If no such passwords exist, output Impossible instead. See the sample for more format details.
Example
Input: 2 2 1 Output: Case #1: 25 76 Case #2: 0 1 5 6
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by Blue Mary
Input
The first line contains T (T <= 2500), the number of test cases. T lines follow. Each line contains a positive integer N (N < 80), followed by N integers - a permutation of 1 to N. The permutation indicates the insert order for the BST.
Output
For each test case: Output the case number counting from 1 in the first line. The next lines should be the image described above without any trailing spaces. See the sample for more format details. Notice that no trailing whitespaces after the last visible characters of each line are allowed.
Example
Input: 3 3 3 1 2 6 4 5 6 1 3 2 5 3 4 5 2 1 Output: Case #1: +-o | o+ | o Case #2: +--o+ | | o-+ o+ | | +o o | o Case #3: +o+ | | +o o+ | | o o
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by Blue Mary
Input
The input contains several test cases. The total number of test cases is less than 1100. Each test case begins with a line containing an integer n (n > 1). The following line contains n integers a i (0 <= a i < 2 16 ), the remaining integers on the parchment. The integers are distinct.
Output
For each test case, output one line containing a single integer, the minimal number of additional integers to make the set complete. If these numbers are already a complete set, print 0.
Example
Input: 4 5 0 1 3 5 7 2 2 4 3 3 7 11 3 1 2 4 Output: Case #1: Case #2: Case #3: Case #4:
0 2 1 5
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by cuiaoxiang
Input
The first line contains T, the number of test cases (T <= 200). Most of the test cases are relatively small. T lines follow, each contains a string of only small latin letters a - z, whose length N is less than 1000, without any leading or trailing whitespaces.
Output
For each test case, output a single line, which should begin with the case number counting from 1, followed by N integers. The X-th (1-based) of them should be the maximum length of the substring which can be written as a concatenation of X same strings. If that substring doesnt exist, output 0 instead. See the sample for more format details.
Example
Input: 2 arisetocrat noonnoonnoon Output: Case #1: 11 0 0 0 0 0 0 0 0 0 0 Case #2: 12 8 12 0 0 0 0 0 0 0 0 0
Hint
For the second sample, the longest substring which can be written as a concatenation of 2 same strings is "noonnoon", "oonnoonn", "onnoonno", "nnoonnoo", any of those has length 8; the longest substring which can be written as a concatenation of 3 same strings is the string itself. As a result, the second integer in the answer is 8 and the third integer in the answer is 12.
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, By Blue Mary
8845. Entertainment
Problem code: TENNIS
Maryanna and Lucyanna play tennis every Sunday afternoon since 10 years ago. A tennis match is determined through 5 sets. Typically the first player to win 3 sets wins the match. A set consists of games, and games, in turn, consist of points. A game consists of a sequence of points played with the same player serving. A game is won by the first player to have won at least four points in total and at least two points more than the opponent. The running score of each game is described in a manner peculiar to tennis: scores from zero to three points are described as "love", "fifteen", "thirty", and "forty" respectively. If at least three points have been scored by each player, and the scores are equal, the score is "deuce". If at least three points have been scored by each side and a player has one more point than his opponent, the score of the game is "advantage" for the player in the lead. During informal games, "advantage" can also be called "ad in" or "ad out", depending on whether the serving player or receiving player is ahead, respectively. A set consists of a sequence of games played with service alternating between games, ending when the count of games won meets certain criteria. Typically, a player wins a set by winning at least six games and at least two games more than the opponent. The first servers of two consecutive sets are different. Maryanna has found out when she is the server, her winning probability of this point is M%; otherwise, Y%. She wants to know her winning probability of the whole match if she serves first.
Input
The first line contains T (T <= 10000), the number of test cases. T lines follow. Each line contains two space-separated positive integers M, Y (0 < M, Y < 100).
Output
For each test case, output a single line, which should begin with the case number counting from 1, followed by Maryannas winning percentage accurate to 4 decimal places. See the sample for more format details.
Example
Input: 2 50 50 51 51 Output: Case #1: 50.0000% Case #2: 63.5654%
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by Blue Mary
Input
The input contains multiple test cases. The number of test cases is in the first line of the input file. For each test case, there are 10 lines, describing the web page and the relevance. Each line contains a character string without any blank characters denoting the URL of this web page and an integer V i denoting the relevance of this web page. The length of the URL is between 1 and 100 inclusively. (1 <= V i <= 100)
Output
For each test case, output several lines which are the URLs of the web pages which are possible to be chosen. The order of the URLs is the same as the input. Please look at the sample output for further information of output format.
Example
Input: 2 www.youtube.com 1 www.google.com 2 www.google.com.hk 3 www.alibaba.com 10 www.taobao.com 5 www.bad.com 10 www.good.com 7 www.fudan.edu.cn 8 www.university.edu.cn 9 acm.university.edu.cn 10 www.youtube.com 1
www.google.com 2 www.google.com.hk 3 www.alibaba.com 11 www.taobao.com 5 www.bad.com 10 www.good.com 7 www.fudan.edu.cn 8 acm.university.edu.cn 9 acm.university.edu.cn 10 Output: Case #1: www.alibaba.com www.bad.com acm.university.edu.cn Case #2: www.alibaba.com
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by g201513
8848. Herbicide
Problem code: HERBICID
Professor Z. has a courtyard beside his house. In the past, he loved to clean it and prune the flowers in his yard. However, with the JavaFF class taught by Professor Z. being offered, he indulged in assigning boring homework to the students and had no time for caring his yard. Consequently, weeds begin to grow up and then his yard becomes overgrown. In the last weekend, after Professor Z. assigned a mass of boring homework again, he suddenly brought his yard to mind. And after he saw the weedy ground, he decided to remove the weeds. But he did not have much time to deal with the gardens problem because of the uncompleted plans of further boring homework in the next JavaFF class. He sprayed herbicide on the ground optionally and, strangely, herbicide was sprayed as several simple polygons on the ground. In order to determine whether he should continue his work or not, Professor Z. needed to know how many weeds were covered by the herbicide. Notice that we assume that the weeds were not killed by the herbicide applied before. In the other words, a single weed can be counted several times in different polygon of herbicide. It seems that counting this number is quite a tough job. Then he asked Maryanna, one of his students in JavaFF class, for help. But Maryanna has no time because her boring homework had never been finished. Please help her!
Input
The very first line of input contains an integer T (T <= 100) indicating the number of test cases. The first line of each test case is an integer N (N <= 1000), which is the number of weeds in Professor Zs yard. In the following N lines, each line has a pair of integers (X i , Y i ) denoting the coordinate of a weed (-10000 <= X i , Y i <= 10000). You can assume all the coordinates are unique. The next line is an integer M (M <= 1000) which denotes the number of polygons covered by herbicide, all these polygons vertices are located on one of the N weeds, then M polygons descriptions are following. Each polygon P i has two lines, the first line of ith polygon has an integer S i (3 <= S i <= N) denoting the number of vertices in this polygon. The following line contains Si integers, describing the vertices of this polygon in clockwise or counter-clockwise order. In detail, each integer in this line is an index of the coordinates of the N weeds listed before. Notice that the indexes start from 1. See the sample input for further details.
Output:
For each test case, output M lines, each line has a single integer indicating the number of weeds covered by the corresponding polygon. If a weed lies on the edge of a polygon, then we consider such a weed as being covered.
Example
Input: 1 6 1 1 3 2 2 3 1 -1 -1 -2 -1 1 3 3 5 4 3 3 1 5 6 5 5 4 2 3 6 Output: Case #1: 4 3 6
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 15s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by lcosvse
8849. Imitation
Problem code: IMITATE
Iris is a student of ethology studying the animal behavior. She is interested by the imitation behavior of animals. Imitation is an advanced behavior whereby an individual observes and replicates anothers. Iris is such a good researcher that she builds a mathematical model to describe the body figure of animals. She describes the body as a number of joints. And the figure or the status of animal body can be denoted as a set of ordered pairs of two different joints. To study the imitation of the animals, Iris defines the correlation of joints. She defines the correlation as the transitive closure of the ordered pairs of body status with its reflexive pairs eliminated. That is to say, the correlation is an anti-reflexive relation. In this case, we could say that one body status is imitating the other one when the correlations of both body statuses are the same. For example, for the joint set {J1, J2, J3}. The first body status contains the ordered pair (J1, J2), (J2, J3). And the second body status contains the ordered pair (J1, J2), (J2, J3), (J1, J3). We could say that the first body status is imitating the other one because both of the correlation sets are (J1, J2), (J2, J3), (J1, J3) since the definition of the correlation is the transitive closure of body status. For a given body status, that is, a given set of ordered pairs of joints, Iris want to get another body status, which is imitating the given one. At the same time, the desired body status must contain the minimum number of ordered pairs or the maximum number of ordered pairs. Your task is to calculate the minimum number and the maximum number.
Input
There are several test cases. The first line of the input contains a single integer denoting the number of test cases. There are about 100 test cases, but 90% of them are relatively small. For each test case, the first line contains two integers N and M where N is the number of joints of both the given body status and the desired body status, M is the number of ordered pairs of the given body status. (1 <= N <= 1000, 0 <= M <= 10000) Next M lines, each line denoting an ordered pair (X i , Y i ). The X i and Y i are integers between 1 and N. Note that we consider the joints as the number between 1 and N.
Output
For each test case, output two integers denoting the minimum and maximum number of ordered pairs of the desired set. Two integers are separated by a single space.
Example
Input: 3 3 3 1 2 2 3 1 3 3 3 1 2 2 3 3 1 9 9 1 2 2 3 3 1 4 5 5 6 6 4 7 8 8 9 9 7 Output: Case #1: 2 3 Case #2: 3 6 Case #3: 9 18
Hint
In mathematics, the transitive closure of a binary relation R on a set X is the transitive relation R+ on set X such that R+ contains R and R+ is minimal. If the binary relation itself is transitive, then the transitive closure will be that same binary relation; otherwise, the transitive closure will be a different relation. A relation R on a set X is transitive if, for all x, y, z in X, whenever x R y and y R z then x R z. Examples of transitive relations include the equality relation on any set, the "less than or equal" relation on any linearly ordered set, and the relation "x was born before y" on the set of all people. Symbolically, this can be denoted as: if x < y and y < z then x < z. (From Wikipedia::transitive closure) Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by g201513
Input
There are several test cases; the first line of the input contains a single integer T, denoting the number of the test cases. (T <= 200) For each test case, the first line contains an integer N, denoting the total number of fruits. (1 <= N <= 1000) The next N lines, each line describe a fruit. For each line, there are two integers X i and Y i , where X i is the appearing time of the fruit and Y i is the disappearing time of this fruit. (0 <= X i <= Y i <= 1000000000)
Output
For each test case, output a single integer denoting the maximum scores that Jerry could possibly gain. See the sample for further details.
Example
Input: 1 10 1 10 2 11 3 12 4 13
13 14 13 20 21 22
14 15 19 22 23 24
Added by: [Trichromatic] XilinX Date: 2011-05-10 Time limit: 2s Source limit:50000B Languages: All Resource: Fudan University Local Contest #2, by g201513
Input
The first line tells the number of test cases. Each test case consist of 2 lines. In the first line of the test case we have P the number of prata ordered. In the next line the first integer denotes the number of cooks L and L integers follow in the same line each denoting the rank of a cook.
Output
Print an integer which tells the number of minutes needed to get the order done.
Example
Input:3104 1 2 3 481 188 1 1 1 1 1 1 1 1Output:12361
Added by: Saransh Bansal Date: 2011-05-14 Time limit: 1s Source limit:50000B Languages: All Resource: Own problem- NTU IEEE codejam 2011
Input
The first input line contains in one integer t (about 1000). Each of the following t lines contains three numbers: i, j, k (1 <= i < j <= 1000; 2 <= k <= 10 9 ).
Output
If the required number exists, output consists in two integers -- numerator and denominator of a non-reducible fraction setting required number. Otherwise output is "NO SOLUTION".
Example
Input: 1 1 4 13 Output: 2997 40000
Added by: Ruslan Sennov Date: 2011-05-15 Time limit: 5s-15s Source limit:50000B Languages: All Resource: RCC 2011
Input
Input will consist of a series of lines, each line containing a day and date (such as Friday 25 December 1992). Dates will be in the range 1 January 1600 to 31 December 2099, although converted dates may lie outside this range. Note that all names of days and months will be in the style shown, that is the first letter will be capitalised with the rest lower case. The file will be terminated by a line containing a single #.
Output
Output will consist of a series of lines, one for each line of the input. Each line will consist of a date in the other style. Use the format and spacing shown in the example and described above. Note that there must be exactly one space between each pair of fields. To distinguish between the styles, dates in the old style must have an asterisk (*) immediately after the day of the month (with no intervening space). Note that this will not apply to the input.
Example
Input: Saturday 29 August 1992 Saturday 16 August 1992 Wednesday 19 December 1991 Monday 1 January 1900 # Output: Saturday 16* August 1992 Saturday 29 August 1992 Wednesday 1 January 1992 Monday 20* December 1899
Added by: Andres Tellez Date: 2011-05-17 Time limit: 10s Source limit:50000B Languages: All
Input
Input will consist of a series of lines, each line containing the number of regions (N) with 13 <= N < 100. The file will be terminated by a line consisting of a single 0.
Output
Output will consist of a series of lines, one for each line of the input. Each line will consist of the number m according to the above scheme.
Example
Input: 17 0 Output: 7
Added by: Andres Tellez Date: 2011-05-17 Time limit: 10s Source limit:50000B Languages: All
Input
Every two lines of the input is a pattern-matching problem. The first line is a regular expression,and the second line is the string to be matched. Any line will be no more than 80 character. A linewith only an eEvery two lines of the input is a pattern-matching problem. The first line is a regular expression,and the second line is the string to be matched. Any line will be no more than 80 character. A linewith only an end will terminate the input.nd will terminate the input.
Output
For each matching problem, you should give an answer in one line. This line contains the string tobe matched, but the leftmost substring that can match the regular expression should be bracketed.If no substring matches the regular expression, print the input string.
Example
Input: .* asdf f.*d. sefdfsde [0-9]+ asd345dsf [^\*-\*] **asdf**fasd b[a-z]*r[s-u]* abcdefghijklmnopqrstuvwxyz [T-F] dfkgjf end Output: (asdf) se(fdfsde) asd(345)dsf **(a)sdf**fasd a(bcdefghijklmnopqrstu)vwxyz dfkgjf
Added by: Andres Tellez Date: 2011-05-17 Time limit: 10s Source limit:50000B Languages: All
8910. Probablistic OR
Problem code: PROBOR
Everyone knows OR operation. Let us define new operation which we will call Probablistic OR. We will denote this operation as #. For given real number p (0 <= p <= 1) and two bits a and b: if a = 1 and b = 1, then #(a, b) = 1; if a = 0 and b = 0, then #(a, b) = 0; else #(a, b) = 0 with probability p, #(a, b) = 1 with probability 1-p. Now for two given non-negative integers x and y we can define bitwise Probablistic OR operation. The result of this operation is a number received by performing # operation for each pair of bits of x and y in same positions. For example, for p= 0.5, x = 2, and y = 4, we will get 0, 2, 4 or 6 each with probability 0.25. You will be given a list of non-negative integers. You have to implement a program which will calculate the expected value of the result of performing bitwise probablistic OR operation on all these numbers given some p. The numbers will be taken from left to right.
Input
Input file starts with real number p (0 <= p <= 1) with exactly two digits after the decimal point. Integer n follows (1 <= n <= 100). Next line contains n numbers ai in the order they are taking pert in the operation (0 <= ai <= 10 9 ).
Output
Output the expected value of performing Probablistic OR operation on the given numbers for given p. Print the result with two digits after the decimal point.
Example
Input: 0.25 4 1 2 3 4 Output: 5.11
Added by: Spooky Date: 2011-05-19 Time limit: 1s Source limit:50000B Languages: All Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2011
Input
In the first line there are integers N <= 1000 and M <= N 2 . In the next M lines there are two integers from the interval [1, N] representing the village from the left and the village from the right side connected by this ship.
Output
Print the required number of ways to choose villages for the festival.
Example
Input: 3 51 11 21 32 22 3Output: 1(the only possibility is to choose the villages 1, 2 from the left and 2, 3 from the right side)
Added by: Adrian Satja Kurdija Date: 2011-05-21 Time limit: 1s Source limit:50000B Languages: All Resource: Croatian junior team selection test 2011
Input
In the first line there is an integer N <= 2000, dimenzion of the square matrix. The next N lines are the rows of the matrix.
Output
Print the number of plusses appearing in the matrix.
Example
Input: 80001000000010000000100001111111100010000000100100001011100010010Output: 3
Added by: Adrian Satja Kurdija Date: 2011-05-21 Time limit: 1s-6s Source limit:50000B Languages: All Resource: Croatian junior team selection test 2011
8930. Party!
Problem code: PAAAARTY
Kate is preparing a party. She have bought a very strange garland for it. The garland is a closed chain of bulb. Each bulb can be in one of the following states: N - dont glow, R - glow red, G - glow green, B - glow blue. Each second the state of each bulb changes according to the following table: N R G B N N R G B
R<td> R N B G G<td> G B N R B B G R N
where row is chosen by the current state of the bulb and column is chosen by the state of the bulb on the right. The value at the intersection of the chosen row and column gives the new state of the bulb. For example, if the bulb glows red (R) and the bulb on its right glows green (G) then in the next second the bulb will glow blue (B). And if the bulb and its right neighbour both glow blue then the bulb wont glow at all in the next second. Also all the bulbs change their states simultaneously. Such behaviour should (theoretically) lead to constant twinkling of the garland. Unfortunately it turns out that sometimes eventually the garland goes into such a state that all bulb dont glow. So the garland stops twinkling. Kate is rather worried that this can spoil the party. She is going to set the initial states of each bulb as she like. Help her determine for how long the garland will twinkle starting from this initial state.
Input
The input file consists of a single string containing characters N, R, G and B, which describes the initial state of the garland. Each character defines the initial state of some bulb. The bulbs are listed from left to right. There is the first bulb on the right of the last one. The length of the string will be no more than 1234567 characters.
Output
Print the number of seconds during which the garland will twinkle. If the garland wont stop twinkling (at least until the power is turned off) print "Party!" (quotes for clarity).
Example
Input: RGBG Output: 4
Explanation
The garland will change the state in such a way:
RGBG BRRB GNGN GGGG NNNN
Added by: Spooky Date: 2011-05-22 Time limit: 1.5s Source limit:50000B Languages: All Resource: Open All-Ukrainian Collegiate Contest Semi-Final, 2011
Input
In the first line the number T (T<10000) of test cases. Then T lines with the space-separated n (1<=n<=1000000), x1 and y1.
Output
For each test case the space-separated x2 and y2.
Example
Input: 31 1 15 3 2100 97 98 Output: 1 05 398 99
Added by: HWK Date: 2011-05-24 Time limit: 1s-10s Source limit:50000B Languages: All
8951. brownie
Problem code: XIXO
Bessie has baked a rectangular brownie that can be thought of as an RxC grid (1 <= R <= 500; 1 <= C <= 500) of little brownie squares. The square at row i, column j contains N_ij (0 <= N_ij <= 4,000) chocolate chips. Bessie wants to partition the brownie up into A*B chunks (1 <= A <= R; 1 <= B <= C): one for each of the A*B cows. The brownie is cut by first making A-1 horizontal cuts (always along integer coordinates) to divide the brownie into A strips. Then cut each strip *independently* with B-1 vertical cuts, also on integer boundaries. The other A*B-1 cows then each choose a brownie piece, leaving the last chunk for Bessie. Being greedy, they leave Bessie the brownie that has the least number of chocolate chips on it. Determine the maximum number of chocolate chips Bessie can receive, assuming she cuts the brownies optimally. As an example, consider a 5 row x 4 column brownie with chips distributed like this: 1 3 2 1 1 2 1 0 1 1 2 1 1 1 1 1 1 3 1 1
Bessie must partition the brownie into 4 horizontal strips, each with two pieces. Bessie can cut the brownie like this: 1 2 | 2 1 --------3 | 1 1 1 --------2 0 1 | 3 --------1 1 | 1 1 1 1 | 1 1 Thus, when the other greedy cows take their brownie piece, Bessie still gets 3 chocolate chips.
Input
5 1 3 2 1 1
4 2 1 0 1 1
4 2 1 1 1 1
2 1 1 3 1 1
Output
3probm was added from USACO.
Added by: nika Date: 2011-05-25 Time limit: 1s Source limit:50000B Languages: All except: BASH C99 strict Resource: ...
Input
Every test case contains N and M (N<=50000) (M<=50000), number of intervals and number of balls. In next line theres N numbers H(H<=10^9) separated by one space. In next M lines numbers A and B (1<=A,B<=N), number of city from which we want to catapult the ball and number of city to which we want to catapult the ball.
Output
Write one number - number of magic balls that Bob can catapult successfully.
Example
Input:7 32 3 5 4 2 1 63 52 54 6Output:2Bob can catapult ball number 1 and 3.
Added by: Krzysztof Lewko Date: 2011-05-25 Time limit: 1s Source limit:50000B Languages: All
8980. Cost
Problem code: KOICOST
You are givenan undirected graph with N verticies and M edges, where the weights are unique. There is a functionCost(u,v), which is defined as follows: While there is a path between vertex u and v, delete the edge with the smallest weight. Cost(u,v) is the sum of the weights of the edges that were deleted in this process.
For example, from the graph above (same as the sample input), Cost(2,6) is 2+3+4+5+6 = 20. Given an undirected graph, your task is to calculate the sum of Cost(u,v) for all vertices u and v, where u<v. Since the answer can get large, output the answer modulo 10^9.
Input
The first line of the input consists of two integers, N and M. (1<=N<=100,000, 0<=M<=100,000) The next M lines consists of three integers, u, v, and w. This means that there is an edge between vertex u and v with weight w. (1<=u,v<=N, 1<=w<=100,000)
Output
Output the sum specified in the problem statement.
Example
Input: 6 71 2 102 3 24 3 56 3 153 5 44 5 32 6 6 Output: 256
Added by: Joon Young Seo Date: 2011-06-01 Time limit: 1s-5s Source limit:50000B Languages: All Resource: 2011 KOI Regional
8982. Representatives
Problem code: KOIREP
There are N classes in a school, each with M students. There is going to be a raceof 100m dash, and a representative fromeach classwill be chosen toparticipate in this race. You were assigned a task to choose these representatives. Since you did not want the race to be one sided, you wanted to choose the representatives such that the difference between theability ofthe bestrepresentative and theworst representativeis minimal. For example, if N = 3 and M = 4, and each class hasstudents with following abilities: Class 1: {12,16,67,43} Class 2: {7,17,68,48} Class 3: {14,15,77,54} it is best to choose the student with ability 16 from Class 1, 17 from Class 2, and 15 from Class 3. Thus, the difference in this case would be 17-15 = 2. Your task is to calculate the minimal possible difference you can achieve by choosing a representative from each class.
Input
The first line of the input consists of two integers, N and M. (1<=N<=1000, 1<=M<=1000). The next N lines will have M integers. The jth element of ith line is the ability of the jth student in ith class. The number is between 0 and 10^9, inclusive.
Output
Output the minimal difference one can achieve by choosing the representative from each class.
Example
Input: 3 412 16 67 437 17 68 4814 15 77 54Output: 2
Added by: Joon Young Seo Date: 2011-06-01 Time limit: 1s-5s Source limit:50000B Languages: All Resource: 2011 KOI regional
8985. Line up
Problem code: KOILINE
N people are lined up in astraight line to enter a concert. Each personin this line knows how many people in fronthaveshorter or same heights. Lets call the sequencerepresenting these numbers S. So in other words, S[i] means that there are S[i] people in front of the ith person who have shorter or same heights than that ofperson i. Given theheights of N people and a sequence S, determine the correctorder of people lined up. (left is front)
Input
The first line of the input is an integer N. (1<=N<=100,000) The next N lineseach consists of one integerH. (1<=H<=2*10^9) These N integers are the heights of people lined up. Then,sequence S is given in a singleline, separated by a space.
Output
Determine the correct ordering of people lined up. Total of N lines should be output.Theinteger on the ith line representsthe height of the ith person in the line.
Example
Input: 121201671631721451341821551671201191560 1 0 0 3 2 6 7 4 6 9 4Output: 134167120119156120167182155163172145
Added by: Joon Young Seo Date: 2011-06-02 Time limit: 1s-5s Source limit:50000B Languages: All Resource: 2011 KOI Regional
Specification
The script runs on server works like this, the URL contains 12 digits, first 6 digits represents SEED generated by random number generator, and it wont change during a guessing session. The last 6 digits represents GUESS, which is the number user just typed. The unknown part (for you, of course) is an integer function f which is a bijection from [0,999999] to [0,999999]. The server first generate TARGET = f(SEED), then it compares TARGET and GUESS and give response back to user. for more details on f, its in format (expr(x) % 1000000), and expr (x) is a expression contains only operation add, subtract, multiply, division, modulo, each exactly once, and every constants are in [0,999999], every variable is x(of course), brackets are allowed. for example, expr(x) could be "x/12-34%(x+1)*56", but its invalid since f is not a bijection. the modulo/division operations here works well if left side is a negative number, for example, -2 % 5 = 3, -2 / 5 = -1. but its undefined if the number on the right side is not positive.
Input
each line contains a link in format "http://www.spoj.pl/problems/GUESSING/XXXXXXYYYYYY/", where XXXXXXYYYYYY contains exactly 12 digit.
Output
The servers response, in format "XAYB".
Example
Input: http://www.spoj.pl/problems/GUESSING/123456123456/ http://www.spoj.pl/problems/GUESSING/000000000000/
Added by: Bin Jin Date: 2011-06-06 Time limit: 1s Source limit:50000B Languages: All
8995. CANDY
Problem code: LQDCANDY
John had a chocolate bar with the size of 2^i. At his birthday party, he shared this chocolate bar to his friend. But his friend just wanted to taste a piece of this chocolate bar which had the length of N (1<=N<=10^18) so that John had to break this chocolate bar into pieces to get the piece for his friend.Unfortunately, this chocolate bar was so breakable that John just can break it into half each time. Help him find the smallest length of the chocolate bar that he needs and the minimum times of breaking the chocolate bar to get the piece for his friend.
Input
T - the number of test cases In each of the next T lines, there is one numbers N
Output
For every test case, print one line the length of the chocolate bar and the minimum number of times to break the bar.
Example
Input: 3857 Output: 8 08 38 3
Added by: TMB Date: 2011-06-07 Time limit: 0.5s Source limit:50000B Languages: All Resource: COCI
Input
In first line there is number T, number of test cases. In first line of each test case there is number X(X<200), number of verticles of the each kite. Then X pairs of number, xi and yi, coords of each verticle. Left-bottomst corner of paper have (0,0) coords. In next line number N(N<20000), number of holes to make in the kite. Then N number, xi and yi, coords of each hole to make in the kite. Obviously, hole cannot be made on the perimeter of kite. We can assume that no three points are colinear, also there is no point duplicate. Bob always would give you verticles of kite in clockwise order.
Output
For each test case print area ( 10^-3 precision ) of paper which was used to produce each kite, holes which were made successfully, and digit 1 if kite is convex shape, otherwise digit 0. Separate each test case with new line
Example
Input:160 05 04 25 40 41 231 11 25 2Output:32.000 1 0Explaination: 32.000 area of paper to cover the kite. Only 1st hole can be made successfully (2nd is on parimeter, 3rd is out the kite)Kite has non-convex shape
Added by: Krzysztof Lewko Date: 2011-06-09 Time limit: 0.5s-1.5s Source limit:50000B Languages: All
Input
The first and only line of input contains the string s. 2 <= |s| <= 10 5 .
Output
The first line of output contains the maximal m s ( i ) over all i. The second line of output contains all the is for which m s ( i ) reaches maximum.
Example
Input: caccacaa Output: 43Explanation:caccacaa
caccacaa The bold characters indicate the ones that match when shift = 3.
Added by: Gustav Matula Date: 2011-06-10 Time limit: 1s-10s Source limit:50000B Languages: All Resource: own problem
Input
In the first line of the standard input there are two integers separated by a single space: ( ), denoting the number of piles, and ( ), denoting the number of Byteasars requests. The piles are numbered from to . In the second line there are integers separated by single spaces ( ). The number denotes the height of the -th pile. The third line holds integers separated by single spaces ( ). These are the subsequent values of the parameter for which the puzzle is to be solved. That is, the largest number of successive piles of height at least that can be obtained by allowed moves is to be determined for each given value of the parameter .
Output
Your program should print out integers, separated by single spaces, to the standard output - the -th of which should be the answer to the puzzle for the given initial piles set-up and the parameter .
Example
For the input data:
Added by: Krzysztof Lewko Date: 2011-06-14 Time limit: 1s-20s Source limit:50000B Languages: All Resource: XVII POI
Sample Output: Case 1: 1 Case 2: 2 Case 3: 3 Case 4: 4 Case 5: 5 Case 6: 6 Case 7: 7 Case 8: Not Cube Free Case 9: 8 Case 10: 9 Added by: Muhammad Ridowan Date: 2011-06-14 Time limit: 0s-3s Source limit:50000B Languages: All Resource: Own. For alternate thanks Sayef Azad Sakin
Input
First line contains single integer T<=20000 - the number of test cases. Each of the next T lines contains single integer 1 <= n <= 10^9.
Output
For each n output the value [math] S_n [/math] with 11 digits after decimal point.
Example
Input:225Output: 0.708333333330.73809523810
Added by: Efime Date: 2011-06-15 Time limit: 2s Source limit:50000B Languages: All
Input
The input consists of a number of test cases. The first line is the number of test case, T. (1<=T<=200) Each case starts with N (1<=N<=100,000), the totalnumber of people. The next line consists of N integers, separated by a space. The ith integer indicates the strength of the ith person. These integersare less than 100, but larger than 0.
Output
For each test case, output "YES" if it is possible to pick some people from the group and separate into two teams of equal strengths. If not, output "NO". Refer to thesample test cases for further clarifications.
Example
Input: 2410 20 30 40310 18 15Output: YESNO
There are a number of ways to pick teams for the first test case. One example would be {10,20} and {30}.
Added by: Joon Young Seo Date: 2011-06-16 Time limit: 1s-20s Source limit:50000B Languages: All Resource: own problem
Input
First line : number of tests T<=1000 Test: 99 lines where every have a type: i ch where i = 1..99 included and "ch" - a..z or A..Z
Output
Print YES if Ksjuchi might uniquely define symbol that Tohu put forth. Otherwise print NO
Example
Input: 1 1 k 2 q 3 J 4 Q 5 P 6 R 7 e 8 G 9 L 10 c 11 g 12 T 13 w 14 v 15 p 16 P 17 X 18 X 19 p 20 I 21 X 22 z 23 L 24 u 25 K 26 F 27 t 28 H 29 Q 30 r 31 V 32 e 33 F 34 V 35 D 36 u 37 c 38 n 39 z 40 w 41 Z 42 K 43 Y
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
j Y M u U H i n S k q W o L J O S Z G m T P k i b J a E g O P M s M A O P g h V U M G Y u D F h q h a l P d T w
Output: NO
Input
First line contains two integers n and q (1 <= n, q <= 100000). The next line contains n integers a 0 , ... ,a n-1 (0 <= a i <= 100000, for each i (- {0, ..., n-1}) separated by spaces. The following q lines contain one query each, consisting of two integers i and j (0 <= i <= j <= n-1), which indicates the boundary indices for the query.
Output
For each query, print one line with one integer: The number of occurrences of the most frequent value within the given range.
Example
Input:5 31 2 1 3 30 21 20 4 Output: 212NOTE - This problem is similar to a problem Frequent values.
Added by: Dominik Gleich Date: 2011-06-20 Time limit: 1s-5s Source limit:50000B Languages: All Resource: My own problem.
Input
The first line of input contains an integer N. 1<=N<=50000 The second line consists of N numbers. The third line consists of an integer Q. 1<=Q<=100000 The following Q lines will consist of queries of the form described in the task description. All numbers in input will fit in the signed 32-bit type.
Output
Output an answer for every query of the second type.
Example
Input: 51 2 4 2 3 3Q 2 4U 4 7Q 2 4Output: 613
Hint: Time limit is ~ 1.5*(my programs execution time in the worst case) Added by: Sergey Kulik Date: 2011-06-23 Time limit: 6.666s Source limit:44444B Languages: All Resource: Known problem
9067. ng h ct
Problem code: DHCAT
Ca?i tie^n tu+ 1 bai thi UVA. ng h ct c da.ng 2 tam gic e^u chung i?nh, gm 2n-1 dong. Ln lu+o+.t mi dong c n s, n-1 s,....,1,2...,n s (n<21). Mi o+? dong tren chi? c the^? di xung pha?i du+o+i ( R ) hoc tri du+o+i ( L ). YEU cu : Tim u+o+ng i c tro.ng s nho? nht. u+o+ng i u+o+.c m ta? la xut pht o+? hang 1 ( cc u+o+.c nh s tu+ 0 to+i n-1 ) va chui LR m ta? u+o+ng i. Cho s S<=5000, e^m s u+o+ng i c tro.ng s S va m ta? u+o+ng i c thu+ tu+. tu+ ie^?n nho? nht u+ng vo+i S.
Input
Dong u tien la 2 s n va S. 2n-1 dong tie^p theo s a m ta? ng h ct. ( a<=5000) Output Gm 4 dong : Tro.ng s nho? nht tu+ hang 1 to+i hang cui . M ta? u+o+ng i u+ng vo+i tro.ng s nho? nht ( ne^u c nhie^u u+o+ng i, in ra u+o+ng i c thu+ tu+. tu+ ie^?n nho? nht ) S u+o+ng i c tro.ng s la S. Ne^u khng c u+o+ng thi in ra -1. u+o+ng i u+ng vo+i tro.ng s S tho?a man.
Example
Input: 3 17 1 2 3 4 5
Added by: battieudieu Date: 2011-06-24 Time limit: 1s Source limit:50000B Languages: All
where
Byteasar, the mayor of Byteburg, asks your help. Write a program that, for every building , determines the minimum height of a lightning conductor that would protect all the buildings if it were put on top of the building .
Input
In the first line of the standard input there is a single integer ( ) that denotes the number of buildings in Byteburg. Each of the following lines holds a single integer ( ) that denotes the height of the -th building.
Output
Your program should print out exactly lines to the standard output. The -th line should give a non-negative integer denoting the minimum height of the lightning conductor on the -th building.
Example
For the input data:
6 5 3 2 4 2 4
Added by: Krzysztof Lewko Date: 2011-06-25 Time limit: 1s-2s Source limit:50000B Languages: All Resource: XVIII POI
Input
The first line contains t, number of test cases (t<=1500). Each case starts with an integer H, the number of problems solved by Hablu and K, the size of the collection S. The next line contains K space separated integers (the members of S). Remember that the online judge in which they solve has only(!) 10 12 problems. So no number will be greater than 10 12 . And K will be between 0 and 500.
Output
Print a line for east test case containing the number of possible integers which can be the number of solved problems by Bablu.
Example
Input:158 22 3Output:2Note : May be its impossible to pass the time limit in several languages.
Added by: Bidhan Roy Date: 2011-06-26 Time limit: 1s-2s Source limit:25000B Languages: All Resource: Own Problem , Thanks to Muhammad Ridowan for his alternate solution.
Input
The first line of input contains an integer N (2 <= N <= 200000). Each of the next N-1 lines contains a pair of integers a and b (1 <= a < b <= N). The next line contains an integer Q (1 <= Q <= 300000). Each of the next Q lines contains a query as defined above.
Output
For each query of type Q output a single line containing the number of "bad" marriages if snail numbered n was the oldest one.
Example
Input: 51 21 32 42 59Q 1M 3 5Q 1Q 3M 1 4Q 3Q 4D 3 5Q 3 Output: 001211
Added by: Gustav Matula Date: 2011-06-27 Time limit: 1s-3s Source limit:50000B Languages: All Resource: own problem, idea from a yuoi problem
Task
Write a programme which: reads from the standard input the number of space stations, distances between them and the amount of fuel available in each of them, for each of the space stations checks, whether Byteazar can land there i.e. whether by starting in that very station and travelling in a freely chosen direction he is able to visit all of the space stations and return to his spaceship, writes the outcome to the standard output.
Input
The first line of the standard input contains a single integer ( number of space stations on Mars. The space stations are numbered from to ). It denotes the . In the next lines
there is a description of all of the stations and the distances between them. The st line contains , ). The first one denotes the amount of fuel (in litres) available two integers and (
in the th space station. The other denotes the distance (in metres) between the th and st space station (obviously denotes the distance between the th and the st space station). The total amount of available fuel, as well as the sum of all distances between the space stations does not exceed .
Output
The programme should write lines to the standard output. The th line should contain the word TAK (i.e. yes is Polish), if Byteazar can land in the th space station or NIE (i.e. no in Polish) when it is not possible.
Example
For the input data:
5 3 1 5 0 5 1 2 2 1 4
Added by: Krzysztof Lewko Date: 2011-06-28 Time limit: 1s Source limit:50000B Languages: All Resource: XII POI
9085. HIGH
Problem code: C11HIGH
M?t ngay "e.p" tro+i no., Khnh nha ta e?n thch ?u team ILS bng m?t bai ton r?t la... nhu+ sau: Chie^u dai cu?a mt s tu+. nhien la s chu+~ s cu?a s . cao cu?a mt s tu+. nhien la tng cc chu+~ s cu?a s . Cho s tu+. nhien x ghi trong he^. e^m 10, c chie^u dai 5. Tim s tu+. nhien y st sau x c cung chie^u dai, cung cao va cung he^. e^m vo+i x. T?t nhien, team ILS toan nhu+~ng cao thu? (late hero) nen vie?c gia?i bai ton tren khng c gi la kh khn, ho. a thch ? la.i Khnh vo+i gio+i ha.n lo+n ho+n r?t nhie?u : vo+i he? e?m b va s? chu+~ s? la 10 6 ???Khnh ma khng lam u+o+.c thi che?t ngu+o+.c vo+i bo.n n chu+ cha? cho+i u, cc ba.n gip nhanh vo+i khng Khnh se~ bi. h?i ?ng trong 0,5s nu+~a :(
Input
Dong u tien: hai s tu+. nhien b va N, 2 <= b <= 10, 2 <= N <= 10 6 . Dong thu+ hai: s x
Output
Duy nht s y. Ne^u khng c nghie^.m ghi ra 0.
Example
Output: 24089
Added by: Nguye^~n Duy Khnh Date: 2011-06-29 Time limit: 0.5s Source limit:50000B Languages: All Resource: ILS
Input
In first line number N,L,P . Number of bricks in every tower. Number of towers on left arm and Number of towers on right arm. In next L lines: construction of towers on the left arm. In next P lines: construction of towers on the right arm. ( look at picture ) N<=50 L<=25 P<=25 -50<=weight of every brick<=50
Output
Minimal number of moves to balance the scale.
Example
2 2 2 4 3 -1 2 7 3 1 -2
Output: 2
I made timelimit so high because i want all correct solutions to get accepted, but not n! solution.
Added by: Krzysztof Lewko Date: 2011-07-01 Time limit: 1s-15s Source limit:50000B Languages: All Resource: III POIG
Input
First line contains T(1<=T<=100) the number of test cases. Each test case contains two lines. First line contains an integer N(1<=N<=15) denoting total number of elements in the array. Second line contains a space separated list of N integers Ai such that 0<=Ai<N.
Output
For each test case output an integer, the total number of derangements of the array.
Example
Input: 2 5 1 1 2 2 3 6 0 0 0 1 1 1 Output: 4 1
Added by: amit karmakar Date: 2011-07-01 Time limit: 2s Source limit:50000B Languages: All
Input
First line of the input will be N the number of elements of the main sequence. After that line there will be N numbers in one or more lines. Each of this number will be between 0 to 10000(inclusive). Then there will be Q(1<=Q<=5000) the number of query. Then following Q lines will be queries. In each query, start with a number M(0<=M<=5), followed by M numbers also between 0 to 10000(inclusive).
Output
For each query first print the number of elements in the longest common subsequence of the main and query sequences. Then print the subsequence. If there is more then one then print the lexicographically smallest.
Example
Input: 10 5 1 4 3 2 6 5 5 0 7 5 1 5 1 10
4 5 0 4 7 5 4 1 2 3 5 5 2 6 5 0 7
Output: 1 5 0 3 5 0 7 3 1 2 5 5 2 6 5 0 7
Added by: Muhammad Ridowan Date: 2011-07-02 Time limit: 2s Source limit:50000B Languages: All Resource: Own. Thanks msh_shiplu and zobayer for alternate
Input
The first line of the input gives the number of test cases C (0 < C <= 1000). The first line of each such test case holds an integer N (1 <= N <= 1000), denoting the length of the two DNA strings to be tested. The following two lines contain a string of N lower-case letters each, giving the two DNA substrings of the two persons to test.
Output
For each test case print one line. If the GRT is positive, print out POSITIVE. Print NEGATIVE, if the test fails.
Example
Input: 3 4 aaaa bbcc 8 iacdefgh abeaaaaa
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 30s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Moritz Kobitzsch)
Input
The first line of input contains the number of test cases C (C <= 30). For each test case there is one line with the number n (1 <= n <= 10 4 ) of switches/levers on the gate and the number h (0 <= h <= 10 5 ) of hints that Indy has discovered. Then follow h lines, one for each clue, with the numbers a and b (1 <= a,b <= n, a != b), meaning that lever a must be pulled before lever b.
Output
For each test case output one line with the correct sequence of the numbers 1 to n. Separate the numbers with a whitespace. If there is no possible sequence, print recheck hints instead. Otherwise if there are multiple possible sequences, print missing hints instead.
Example
Input: 3 3 2 1 2 3 1 3 1 1 2 3 2 1 2 2 1 Output: 3 1 2 missing hints recheck hints
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 15s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Holger Frydrych)
Input
The input consists of a visualization of the star; the unlabelled fields of the star will be represented by an x character, and labelled fields will contain a letter between A and L, where the i-th letter in the alphabet represents number i. The character . is used to align the fields of the star in the shape of a hexagram. You may assume that each input will use the same alignment of the fields as the one in the sample input.
Output
Print the lexicographically smallest extension of the given partial solution which is a magic star (lexicographically smallest means that the concatenation of the rows should result in a string which is lexicographically smaller than other potential solutions). You may assume that there is always a solution for the given input.
Example
Input: ....x.... .A.I.D.x. ..x...x.. .x.x.x.x. ....x.... Output: ....F....
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 1s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Adrian Kuegel)
Input
The first line of the input gives the number of test cases C (0 < C <= 100). Each test case starts with two integers 0 <= R <= 30, 0 <= L <= 10 on a single line, denoting the set of recipes and the number of lighting effect sequences. The next R lines contain the set of recipes. Each crafting recipe is given on a single line by the magic stones m 1 , m 2 , and m 3 as well as the number d (0 <= d <= 1000) of diamonds necessary for the transformation. The next L lines contain the lighting effect sequences you want to create. Each of these lines contains an integer l (1 <= l <= 100), which represents the length of the lighting effect sequence. The line completes with a single string of length l, consisting only of lower case characters a to z, which represents the sequence of lighting effects you want to create.
Output
For every test case print CASE # followed by the number of the test case, starting with 1, on a single line. For each lighting effect sequence print a single line. If the effect is possible print POSSIBLE WITH X DIAMONDS, with X representing the number of diamonds you will need to achieve the lighting effect sequence. In the case the lighting effect sequence cannot be crafted, print IMPOSSIBLE.
Example
Input: 2 1 4 A A A 2 3 aaa 8 aaaaaaaa 5 ababa 1 a 3 1 A B C 1 C P C 7 B I C 11 4 icpc Output: CASE #1 POSSIBLE WITH POSSIBLE WITH IMPOSSIBLE POSSIBLE WITH CASE #2 POSSIBLE WITH
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 35s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Moritz Kobitzsch)
9122. Diary
Problem code: GCPC11F
Nowadays, people who want to communicate in a secure way use asymmetric encryption algorithms such as RSA. However, my older brother uses another, simpler encryption method for his diary entries. He uses a substitution cipher where each letter in the plaintext is substituted by another letter from the alphabet. The distance between the plaintext letter and the encrypted letter is fixed. If we would define this fixed distance d to 5, A would be replaced by F, B by G, C by H, ..., Y by D, Z by E. With a fixed and known distance d the decryption would be somewhat simple. But my brother uses random distances for each of his diary entries. To decrypt his diary I have to guess the distance d for each entry. Thus, I use the well known phenomenon that the letter E is used more often in English words than other letters. Can you write a program for me that calculates the distance d based on the fact that the most used letter in the encrypted text corresponds to the letter E in plaintext? Of course, I am interested in the decrypted text, too.
Input
The input consists of several test cases c that follow (1 <= c <= 100). Each test case is given in exactly one line containing one diary entry. Diary entries only use upper case letters (A-Z) and spaces. Each diary entry consists of at most 1000 encrypted letters (including spaces).
Output
For each test case, print one line containing the smallest possible distance d (0 <= d <= 25) and the decrypted text. If the decryption is not possible because there are multiple distances conforming to the rules above, print NOT POSSIBLE instead. Spaces are not encrypted.
Example
Input: 4 RD TQIJW GWTYMJWX INFWD JSYWNJX ZXJ F XNRUQJ JSHWDUYNTS YJHMSNVZJ THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG XVIDRE TFCCVXZRKV GIFXIRDDZEX TFEKVJK UVTIPGKZFE XVIDRE TFCCVXZRKV GIFXIRDDZEX TFEKVJK Output: 5 MY OLDER BROTHERS DIARY ENTRIES USE A SIMPLE ENCRYPTION TECHNIQUE 10 JXU GKYSA RHEMD VEN ZKCFI ELUH JXU BQPO TEW 17 GERMAN COLLEGIATE PROGRAMMING CONTEST DECRYPTION NOT POSSIBLE
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 2s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Tobias Werth)
Input
The first line of the input gives the number of test cases C (0 <= C <= 100). The first line of each such test case holds the integer N: the number of objects in the current site (0 < N <= 25). Each of the following N lines holds three integers x i , y i , and r i that describe an object. The coordinates of the i-th object and the radius for the needed security circle for this object. (|x i |,|y i | <= 100, 0 < r i <= 100) (The center of the security circle around an object is the position of the object itself.)
Output
For each test case print one line containing the minimal fence length for this case. Your output should have an absolute or relative error of at most 10 -7 .
Example
Input: 3 3 2 2 1 8 2 1 5 6 1 2 6 4 2 2 4 1 4 2 2 2 6 1 1 5 5 2 1 6 1 Output: 22.2831853072 17.6761051635 25.4247779608
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 10s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Alexander Rass)
9124. Sightseeing
Problem code: GCPC11H
As a computer science student you are of course very outdoorsie, so you decided to go hiking. For your vacation this year, you located an island full of nice places to visit. You already identified a number of very promising tracks, but are still left with some problems. The number of choices is so overwhelming, that you had to select only a "small" subset of at most 10 5 sights. And if that is not enough, you are very picky about the order in which you want to visit the sights. So you have already decided on an order in which you want to visit the preselected tracks. The problem you are left with is to decide in which direction to travel along each single track, and whether you may have to reduce your choice of tracks even further. After identifying the travel time between the endpoints of different tracks, you decide to write a program to figure out if you can make all your trips within the time you have planned for your vacation. Since you also do not want to waste any precious time, you only care about an optimal solution to your problem. Furthermore, the tracks can get pretty challenging. Thats why you do not want to hike along a track more than once.
Input
The first line of the input gives the number of test cases C (0 < C <= 100). The first line of each such test case holds two integers N, T the number of tracks of the current hiker (1 <= N <= 10 5 ) and the maximal time spent hiking throughout the vacation (0 <= T <= 10 6 ). Each of the following N lines holds five integers c p , c bb , c be , c eb and c ee that describe a track (in order of importance). c p gives the length of the track in minutes. c xy gives the travel time of the official begin or end of a track to the beginning or end of the next most important track, where x and y are either b or e. All values given are non-negative integers not greater than 10 6 . Since you have to get back to your car, the list is circular. Furthermore, we will ignore the time it takes you to get to the start of your trip with your car.
Output
For each test case print one line. The output should contain a list of either F or B for every track (in order) indicating whether you have to hike the track in forward direction or backward direction. If you cannot make the full trip within the planned time T, you should print IMPOSSIBLE to indicate that these trips are just too much hiking. You can assume that the optimal solution is always unique.
Example
Input: 3 2 100 4 7 8 2 1 4 6 1 2 20 4 2 3 7 1 1 2 4 3 5 1 2 2 2
3 2 8 6 1
1 1 2 2 2 1 2 2 1 2 Output: FF BB IMPOSSIBLE
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 30s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Moritz Kobitzsch)
Willy the Weaver is in desperate hope to get married to the most beautiful and delightful female weaver Wilmar. Of course, Willy is not the only weaver interested in Wilmar. In order to impress the females, weavers build elaborately woven nests using leaf fibers. Tomorrow is the big day on which Wilmar will inspect all nests. There is a heavy storm at the moment, and no weaver can leave his nest within the hours before sunrise. However, the storm will produce many piles of leaf fibers, so that all weavers will have a chance to improve their nests. Therefore, Willy is curious if he can succeed weaving the most impressive nest, so that Wilmar will finally decide on getting married to him. Since size matters, Willy tries to figure out how large his nest and the ones of his rivals may become. For this purpose, Willy takes into consideration all known places offering leaf fibers suitable for nest construction. Since weavers do not like to leave their known territory, many of these places can be accessed by a subset of all weavers only, and some might even not be reachable by any weaver. To reduce complexity, Willy does not want to set up a flight plan. This implies that he does not consider any particular strategy of his rivals nor does he make any assumptions on how many fibers they can carry at a time or how quick and when they fly. It is therefore possible that a weaver succeeds in picking up all fibers in his territory. Finally, Willy assumes that all weavers are as integer as he is:
they do not steal fibers from nests of their rivals. Is there any chance that no weaver will have a larger nest (number of fibers) than Willy after all leaf fibers have been picked up?
Input
The first line contains the number of testcases T (1 <= T <= 100). Each test case starts with a line containing two integers. The first integer W (1 <= W <= 100) is the number of weavers (including Willy); the second one P (1 <= P <= 400) is the number of places with leaf fibers. Next come W lines describing the nest of each weaver with four integers x, y, f, and r (0 <= x, y, r <= 10000, 1 <= f <= 10000): x and y define the position of the nest, f is the size of the nest in number of fibers, and r is the radius of the territory in which the owner of the nest will search for additional fibers. The first of these W lines describes Willys nest. Thereafter follow P lines defining the places with available leaf fibers with three integers x, y, and f (0 <= x, y <= 10000, 1 <= f <= 10000): x and y define the position of the place, and f is the number of available leaf fibers.
Output
For each test case print one single line containing the string Suiting Success, if Willy has a chance to marry Wilmar after all fibers have been picked up (a tie in nest size is sufficient); else print Lonesome Willy.
Example
Input: 2 3 2 0 0 1 10 10 0 1 10 20 0 1 10 5 0 2 15 0 4 3 2 0 0 1 10 10 0 1 10 20 0 1 10 5 0 2 15 0 5 Output: Suiting Success Lonesome Willy
Adrian Kuegel 2011-07-05 10s 50000B All German Collegiate Programming Contest 2011 (Authors: Christian Renner and Christoph Weyer)
Input
The first line of the input consists of the number of test cases c that follow (1 <= c <= 100). Each test case starts with a line specifying N, the number of computers in this network (1 < N <= 10 5 ). Computers are numbered from 0 to N-1. Then follow N-1 lines, each specifying a network connection by two numbers a and b which means that computer a is connected to computer b and vice versa, of course (0 <= a,b < N).
Output
For each test case in the input, print one line containing the optimal TTL as specified above.
Example
Input: 3 2 1 0 5 3 2 2 1 0 2 2 4 9 3 1 6 5 3 4 0 3 8 1 1 7 1 6 2 3
Output: 1 1 2
Added by: Adrian Kuegel Date: 2011-07-05 Time limit: 15s Source limit:50000B Languages: All Resource: German Collegiate Programming Contest 2011 (Author: Tobias Werth)