| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 2048 MB | 60 | 46 | 38 | 74.510% |
The edit distance between two strings $u$ and $v$ is the minimum number of edit operations that turns $u$ into $v$. There are three edit operations that can be applied to a string: Insert a character, delete a character, and substitute some character by a different one.
For example, we can turn hello into world with four substitutions, so the edit distance is at most 4ドル$. You can turn wally into walter with two substitutions and one insertion, so the edit distance is at most 3ドル$. Computing the edit distance between two strings is a well-known problem with many applications.
The task at hand is to compute the edit distance of a string to one of the closest palindromes. A palindrome is a string that is the same when read backwards, for example madam.
The edit distance of hello to the closest palindrome is only 2ドル$: We can turn hello into ollo, or hllh, or elle with two edit operations.
Write a program that can find the distance of a word to a closest palindrome.
Each test contains multiple test cases. The first line contains the number of test cases $t$. The description of the test cases follows.
The only line of each test case contains a word $w$ consisting only of lowercase letters.
For each test case, output the edit distance of the input word $w$ to its closest palindrome.
6 aaaaba hello palindrome abba x bababac
1 2 5 0 0 1
ICPC > Regionals > Asia Pacific > Taiwan > Taiwan Online Programming Contest > TOPC 2025 D번