S5來襲4/11旗艦上市金豪禮★拿現金最實在!攝影界美人正妹指定相機款學生退場 NHK:馬面...
2012-06-05 17:07:07 人氣(129) | 回應(0) | 推薦(0) | 收藏(0) 上一篇 | 下一篇

[UVA] 146 - ID Codes

0
收藏
0
推薦


 ID Codes 

It is 2084 and the year of Big Brother has finally arrived, albeit a century late. In order to exercise greater control over its citizens and thereby to counter a chronic breakdown in law and order, the Government decides on a radical measure--all citizens are to have a tiny microcomputer surgically implanted in their left wrists. This computer will contains all sorts of personal information as well as a transmitter which will allow people's movements to be logged and monitored by a central computer. (A desirable side effect of this process is that it will shorten the dole queue for plastic surgeons.)

An essential component of each computer will be a unique identification code, consisting of up to 50 characters drawn from the 26 lower case letters. The set of characters for any given code is chosen somewhat haphazardly. The complicated way in which the code is imprinted into the chip makes it much easier for the manufacturer to produce codes which are rearrangements of other codes than to produce new codes with a different selection of letters. Thus, once a set of letters has been chosen all possible codes derivable from it are used before changing the set.

For example, suppose it is decided that a code will contain exactly 3 occurrences of `a', 2 of `b' and 1 of `c', then three of the allowable 60 codes under these conditions are:

      abaabc
      abaacb
      ababac

These three codes are listed from top to bottom in alphabetic order. Among all codes generated with this set of characters, these codes appear consecutively in this order.

Write a program to assist in the issuing of these identification codes. Your program will accept a sequence of no more than 50 lower case letters (which may contain repeated characters) and print the successor code if one exists or the message `No Successor' if the given code is the last in the sequence for that set of characters.

Input and Output

Input will consist of a series of lines each containing a string representing a code. The entire file will be terminated by a line consisting of a single #.

Output will consist of one line for each code read containing the successor code or the words `No Successor'.

Sample input

abaacb
cbbaa
#

Sample output

ababac
No Successor



#include <stdio.h>
#include <string.h>
int cnt[26], flag, len;
char str[100], tmp[100];
void dfs(int idx) {
    if(flag == 2)
        return ;
    if(idx == len) {
        if(flag == 0) {
            flag = 1;
        } else {
            tmp[idx] = '\0';
            puts(tmp);
            flag = 2;
        }
        return ;
    }
    int i;
    for(i = 0; i < 26; i++) {
        if(flag == 0) {
            if(str[idx]-'a' == i) {
                cnt[i]--;
                tmp[idx] = i+'a';
                dfs(idx+1);
                cnt[i]++;
            }
        } else {
            if(cnt[i] > 0) {
                cnt[i]--;
                tmp[idx] = i+'a';
                dfs(idx+1);
                cnt[i]++;
            }
        }
    }
}
int main() {
    int i;
    while(scanf("%s", str) == 1) {
        if(!strcmp("#", str))
            break;
        memset(cnt, 0, sizeof(cnt));
        flag = 0, len = strlen(str);
        for(i = 0; str[i]; i++)
            cnt[str[i]-'a']++;
        dfs(0);
        if(flag != 2)
            puts("No Successor");
    }
    return 0;
}

146ID Codes
台長:Morris
人氣(129) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 不分類 | 個人分類: UVA |
此分類下一篇:[UVA][map] 10815 - Andy's First Dictionary
此分類上一篇:[UVA][sstream使用] 482 - Permutation Arrays

我要回應
是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入以下數字 (ex:123)

(有*為必填)
詳全文