f445. 263 - Number Chains
標籤 : CPE UVA
通過比率 : 135人/152人 ( 89% ) [非即時]
評分方式:
Tolerant

最近更新 : 2020-11-23 23:01

內容

給你一個數字n。將它的每一個位的數字按遞增排序生成數a,按遞減排序生成數b,
新的數字為n1=a-b,下次依照相同方法計算n1,直到出現循環,問計算了多少次。

Given a number, we can form a number chain by
1. arranging its digits in descending order
2. arranging its digits in ascending order
3. subtracting the number obtained in (2) from the number obtained (1) to form a new number
4. and repeat these steps unless the new number has already appeared in the chain
Note that 0 is a permitted digit. The number of distinct numbers in the chain is the length of the chain. You are to write a program that reads numbers and outputs the number chain and the length of that chain for each number read.

輸入說明

每筆一個數字N(N<=10^9)

The input consists of a sequence of positive numbers, all less than 10^9, each on its own line, terminated by 0. The input file contains at most 5000 numbers.

輸出說明

請參照範例輸出

The output consists of the number chains generated by the input numbers, followed by their lengths exactly in the format indicated below. After each number chain and chain length, including the last one, there should be a blank line. No chain will contain more than 1000 distinct numbers.

範例輸入 #1
123456789
1234
444
0
範例輸出 #1
Original number was 123456789
987654321 - 123456789 = 864197532
987654321 - 123456789 = 864197532
Chain length 2

Original number was 1234
4321 - 1234 = 3087
8730 - 378 = 8352
8532 - 2358 = 6174
7641 - 1467 = 6174
Chain length 4

Original number was 444
444 - 444 = 0
0 - 0 = 0
Chain length 2
測資資訊:
記憶體限制: 512 MB
公開 測資點#0 (20%): 1.0s , <1M
公開 測資點#1 (20%): 1.0s , <1M
公開 測資點#2 (20%): 1.0s , <1M
公開 測資點#3 (20%): 1.0s , <1M
公開 測資點#4 (20%): 1.0s , <1M
提示 :

2020 5月CPE 第二題

標籤:
CPE UVA
出處:
UVA263 [管理者: DE45A (一葉之秋) ]

本題狀況 本題討論 排行

編號 身分 題目 主題 人氣 發表日期
33624 andrewlee063 ... (Andrew.Σ.Lee) f445
sort
230 2023-01-14 16:45