Loading...

Във форума е въведено ограничение, което позволява на потребителите единствено да разглеждат публикуваните въпроси.

kremenka84 avatar kremenka84 1 Точки

09. Anonymous Threat

Здравехте колеги,

бих искала да ви помоля за помощ, ако някой може да ми каже къде греша, не мога да достигна повече от 80/100 и проверих 100 пъти и четох коментари от други колеги и не мога да разбера къде греша.

https://pastebin.com/iYCRrbu3

https://judge.softuni.org/Contests/Compete/Index/1731#8

Условие: 

1.*Anonymous Threat

Anonymous has created a hyper cyber virus, which steals data from the CIA. The virus is known for its innovative and unbelievably clever merging and dividing data into partitions. As the lead security developer in the CIA, you have been tasked to analyze the software of the virus and observe its actions on the data.

You will receive a single input line containing strings, separated by spaces. The strings may contain any ASCII character except whitespace. Then you will begin receiving commands in one of the following formats:

  • merge {startIndex} {endIndex}
  • divide {index} {partitions}

Every time you receive the merge command, you must merge all elements from the startIndex to the endIndex. In other words, you should concatenate them.
Example: {abc, def, ghi} -> merge 0 1 -> {abcdef, ghi}

If any of the given indexes is out of the array, you must take only the range that is inside the array and merge it.

Every time you receive the divide command, you must divide the element at the given index into several small substrings with equal length. The count of the substrings should be equal to the given partitions.

Example: {abcdef, ghi, jkl} -> divide 0 3 -> {ab, cd, ef, ghi, jkl}

If the string cannot be exactly divided into the given partitionsmake all partitions except the last with equal lengths and make the last one - the longest.

Example: {abcd, efgh, ijkl} -> divide 0 3 -> {a, b, cd, efgh, ijkl}

The input ends when you receive the command "3:1". At that point, you must print the resulting elementsjoined by a space.

Input

  • The first input line will contain the array of data.
  • On the next several input lines, you will receive commands in the format specified above.
  • The input ends when you receive the command "3:1".

Output

  • As output, you must print a single line containing the elements of the array, joined by a space.

Constrains

  • The strings in the array may contain any ASCII character except whitespace.
  • The startIndex and the endIndex will be in the range [-1000…1000].
  • The endIndex will always be greater than the startIndex.
  • The index in the divide command will always be inside the array.
  • The partitions will be in the range [0…100].
  • Allowed working time/memory100ms / 16MB.

Examples

Input

Output

Ivo Johny Tony Bony Mony

merge 0 3

merge 3 4

merge 0 3

3:1

IvoJohnyTonyBonyMony

abcd efgh ijkl mnop qrst uvwx yz

merge 4 10

divide 4 5

3:1

abcd efgh ijkl mnop qr st uv wx yz

Тагове:
0
Python Fundamentals
MartinBG avatar MartinBG 4803 Точки

Проблемът е при команда "divide".

Ред №42 трябва да се изпълни само ако "word" не е празен стринг, т.е. добавяме проверка за това:

            if len(word) > 0:
                divided_word.append(word)

Проверката на ред №32 е излишно сложна:

if partitions > 0 and (partitions <= (len(word) // 2)):

Достатъчно е да проверяваме за стойност, по-голяма от 0:

if partitions > 0:

1
kremenka84 avatar kremenka84 1 Точки

Благодаря, това наистина оправи положението!

1
Можем ли да използваме бисквитки?
Ние използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Можете да се съгласите с всички или част от тях.
Назад
Функционални
Използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Използваме „сесийни“ бисквитки, за да Ви идентифицираме временно. Те се пазят само по време на активната употреба на услугите ни. След излизане от приложението, затваряне на браузъра или мобилното устройство, данните се трият. Използваме бисквитки, за да предоставим опцията „Запомни Ме“, която Ви позволява да използвате нашите услуги без да предоставяте потребителско име и парола. Допълнително е възможно да използваме бисквитки за да съхраняваме различни малки настройки, като избор на езика, позиции на менюта и персонализирано съдържание. Използваме бисквитки и за измерване на маркетинговите ни усилия.
Рекламни
Използваме бисквитки, за да измерваме маркетинг ефективността ни, броене на посещения, както и за проследяването дали дадено електронно писмо е било отворено.