程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 1302 Blue Gene, Jr.解題報告

POJ 1302 Blue Gene, Jr.解題報告

編輯:C++入門知識

Blue Gene, Jr. Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 394 Accepted: 260

Description

Inspired by IBM's Blue Gene project, the CEO of Universal Biological Machinery (UBM), has called on you, UBM's top software engineer, to develop a program that will calculate the mutation of the Areopagus-virus, a virus discovered on Mars by your company's privately-subsidized (top-secret) space program.

Input

Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets.
A single data set has 3 components:

Start line - A single line, "START N", where 1 <= N <= 20.
Viral code - A sequence of N alphanumeric characters. Alphanumeric characters will consist of an uppercase letter (A-Z) or a digit (0-9).
End line - A single line, "END"

Following the final data set will be a single line, "ENDOFINPUT".

Output

For each data set, there will be exactly one output set, and there will be no blank lines separating output sets.

A single output set consists of a single line of the viral code after it has stabilized (through mutating).

The viral code will mutate according to the following rules:

Initially the first viral segment to mutate begins with the first alphanumeric character of the viral code and ends with the rightmost alphanumeric character of the code.
If the first alphanumeric character of a viral segment is a letter (A-Z), that alphanumeric character is considered "unstable", and will mutate into n, where n is the number of mutations that occur to the viral segment immediately to the unstable alphanumeric character's right (see #5), unless n is greater than 9, in which case the unstable alphanumeric character will mutate into n % 10. Also, if there is no viral segment immediately to the right of the unstable alphanumeric character, the unstable alphanumeric character will mutate into 0.
If the first alphanumeric character of a viral segment, n, is a positive number (1-9), that alphanumeric character is also considered "unstable", and will mutate into n-1. It also causes the viral segment beginning with the alphanumeric character n alphanumeric characters to its right and ending with the rightmost alphanumeric character of the viral code to mutate. If there is no alphanumeric character n alphanumeric characters to its right, then the viral segment immediately to its right (see #5), if one exists, will mutate.
If the first alphanumeric character of a viral segment is 0, that alphanumeric character is considered "stable", and will not mutate (the alphanumeric character will remain a 0 and a mutation will not be considered to have occurred).
A viral segment immediately to the right of an alphanumeric character begins with the alphanumeric character one position to its right and ending with the rightmost alphanumeric character of the viral code.

Sample Input

START 1
A
END
START 4
A1B2
END
START 15
A3B2CCC4AD1232R
END
START 15
0ABCDEFGHIJKLMN
END
START 11
ABCDEFGHIJK
END
START 10
9AAAAAAAAA
END
ENDOFINPUT

Sample Output

0
3011
82B26543AD11310
0ABCDEFGHIJKLMN
09876543210
8AAAAAAAA0
-----------------------------------------------------------
> 大概意思是
> 有一段字符串,如果是字母開頭的,此字母就變成後面變異數的總和
> 如果以數字開頭,此數字變成N-1,然後從後面第N個開始變異
> 如果以0開頭,就不變。
> 
> 是個遞歸的過程
補充一下,
第一種情況是向後移一位,
第二種假設數字為n,就變成n-1,如果後面還有n位,就移到n位再繼續轉變,否則右移一位開始轉變
當前位為0直接結束
這道題o----很坑爹。。。

---------------------------------
#include 
#include 


int n;
char string[21];


int searching(int pos)
{
    if (string[pos] == '0' || pos == n) 
	{
        return 0;
    }
    if (string[pos] >= 'A' && string[pos] <= 'Z') 
	{
        int x = searching(pos+1);
        if (x > 9) 
            string[pos] = (x % 10) + '0';
        else
            string[pos] = x + '0';


        return 1 + x;
    }
    if (string[pos] >= '1' && string[pos] <= '9') 
	{
        if (pos + string[pos] - '0' < n) 
		{
            int x = searching(pos+string[pos]-'0');
            string[pos] -= 1;
            return 1 + x;
        }
        else 
		{
            int x = searching(pos+1);
            string[pos] -= 1;
            return 1 + x;
        }
    }
}


int main()
{
    char str[10];
    while (1) 
	{
        scanf("%s", str);
        if (strcmp(str, "ENDOFINPUT") == 0)
            break;
        scanf("%d\n",&n);
        scanf("%s", string);
        scanf("%s", str);


        searching(0);
        printf("%s\n", string);
    }


    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved