2189 Evil Straw Warts Live

2189    Evil Straw Warts Live

题目描述

A palindrome is a string of symbols that is equal to itself when reversed. Given an input string, not necessarily a palindrome, compute the number of swaps necessary to transform the string into a palindrome. By swap we mean reversing the order of two adjacent symbols. For example, the string "mamad" may be transformed into the palindrome "madam" with 3 swaps:

  • swap "ad" to yield "mamda"
  • swap "md" to yield "madma"
  • swap "ma" to yield "madam"

The first line of input gives n, the number of test cases. For each test case, one line of input follows, containing a string of up to 100 lowercase letters. Output consists of one line per test case. This line will contain the number of swaps, or "Impossible" if it is not possible to transform the input to a palindrome.

输入格式:

Please Input Input Here

输出格式:

Please Input Output Here

输入样例 复制
3
mamad
asflkj
aabb
输出样例 复制
3
Impossible
2

说明

3
3
通过提交
时空限制1000ms/128mb
题目来源
评测方式在线评测
题目类型
难        度