CF1575A.Another Sorting Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Andi and Budi were given an assignment to tidy up their bookshelf of n books. Each book is represented by the book title — a string si numbered from 1 to n , each with length m . Andi really wants to sort the book lexicographically ascending, while Budi wants to sort it lexicographically descending.
Settling their fight, they decided to combine their idea and sort it asc-desc-endingly, where the odd-indexed characters will be compared ascendingly, and the even-indexed characters will be compared descendingly.
A string a occurs before a string b in asc-desc-ending order if and only if in the first position where a and b differ, the following holds:
- if it is an odd position, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b ;
- if it is an even position, the string a has a letter that appears later in the alphabet than the corresponding letter in b .
输入格式
The first line contains two integers n and m ( 1≤n⋅m≤106 ).
The i -th of the next n lines contains a string si consisting of m uppercase Latin letters — the book title. The strings are pairwise distinct.
输出格式
Output n integers — the indices of the strings after they are sorted asc-desc-endingly.
输入输出样例
输入#1
5 2 AA AB BB BA AZ
输出#1
5 2 1 3 4
说明/提示
The following illustrates the first example.