5

私のレッスンでは、入力の文字列を受け取り、文字の頻度を使用して可能な限り最良の文字列を見つけるシーザー暗号デコーダーを作成するという任務を負いました。それがどれほど意味があるかわからない場合は、質問を投稿しましょう:

次のことを行うプログラムを作成します。まず、エンコードされたメッセージである1行の入力を読み取る必要があり、大文字とスペースで構成されます。プログラムは、シフトSの26の可能な値すべてを使用してメッセージのデコードを試行する必要があります。これらの26の可能な元のメッセージのうち、最高の良さを持っているものを印刷します。便宜上、変数letterGoodnessを事前に定義します。これは、上記の度数分布表の値に等しい長さ26のリストです。

文字の頻度

私はこれまでにこのコードを持っています:

x = input()
NUM_LETTERS = 26 #Can't import modules I'm using a web based grader/compiler
def SpyCoder(S, N):
    y = ""
    for i in S:
        x = ord(i)
        x += N
        if x > ord('Z'):
            x -= NUM_LETTERS
        elif x < ord('A'):
            x += NUM_LETTERS
        y += chr(x)
    return y  

def GoodnessFinder(S):
    y = 0
    for i in S:
        if x != 32:
            x = ord(i)
            x -= ord('A')
            y += letterGoodness[x]
    return y 

def GoodnessComparer(S):
    goodnesstocompare = GoodnessFinder(S)
    goodness = 0
    v = ''
    for i in range(0, 26):
        v = SpyCoder(S, i)
        goodness = GoodnessFinder(v)
        if goodness > goodnesstocompare:
            goodnesstocompare = goodness
    return v

y = x.split()
z = ''
for i in range(0, len(y)):
    if i == len(y) - 1:
        z += GoodnessComparer(y[i])
print(z)

編集:CristianCiupituによって提案された変更を加えましたインデントエラーは無視してください。コードをコピーしたときに発生した可能性があります。

プログラムは次のように機能します。

  • 入力を取得し、リストに分割します
  • すべてのリスト値について、私はそれを良さのファインダーに送ります。
  • それは弦の良さを取り、他のすべてを比較し、より高い良さがあれば、より高いものを比較する良さにします。
  • 次に、そのテキストの文字列をi量だけシフトして、良さが高いか低いかを確認します。

問題がどこにあるのかよくわかりません。最初のテスト:LQKP OG CV GKIJV DA VJG BQQ
正しいメッセージを出力します:JOIN ME AT AT BY THE ZOO

ただし、次のテスト:UIJT JT B TBNQMF MJOF PG UFYU GPS EFDSZQUJOH次
のジャンク文字列を指定します:SGHR HR Z RZLOKD KHMD NE SDWS ENQ
CDBQXOSHMF

私は私がしなければならないことを知っています:
すべてのシフト値を試してください
単語の「良さ」を取得し
ます最高の良さを持つ文字列を返します。

私は今かなり混乱しているので、私の説明が理にかなっていることを願っています。

4

4 に答える 4

3

これがうまく機能する私の実装です。

考えられる各メッセージの良さを印刷し、プログラムがそれを出力する理由を確認する必要があります。

letterGoodness = dict(zip(string.ascii_uppercase,
                        [.0817,.0149,.0278,.0425,.1270,.0223,.0202,
                         .0609,.0697,.0015,.0077,.0402,.0241,.0675,
                         .0751,.0193,.0009,.0599,.0633,.0906,.0276,
                         .0098,.0236,.0015,.0197,.0007]))

trans_tables = [ str.maketrans(string.ascii_uppercase,
                 string.ascii_uppercase[i:]+string.ascii_uppercase[:i])
                 for i in range(26)]

def goodness(msg):
    return sum(letterGoodness.get(char, 0) for char in msg)

def all_shifts(msg):
    msg = msg.upper()
    for trans_table in trans_tables:
        txt = msg.translate(trans_table)
        yield goodness(txt), txt

print(max(all_shifts(input())))
于 2012-05-29T02:17:10.787 に答える
2

素晴らしいクリスチャン・シウピトゥのおかげで、私の最終的な解決策はうまくいきました。

x = input()
NUM_LETTERS = 26 #Can't import modules I'm using a web based grader/compiler
def SpyCoder(S, N):
   y = ""
   for i in S:
      if(i.isupper()):
         x = ord(i)
         x += N
         if x > ord('Z'):
            x -= NUM_LETTERS
         elif x < ord('A'):
            x += NUM_LETTERS
         y += chr(x)
      else:
         y += " "
   return y

def GoodnessFinder(S):
   y = 0
   for i in S:
      if i.isupper():
         x = ord(i)
         x -= ord('A')
         y += letterGoodness[x]
      else:
         y += 1
   return y

def GoodnessComparer(S):
   goodnesstocompare = GoodnessFinder(S)
   goodness = 0
   v = ''
   best_v = S
   for i in range(0, 26):
     v = SpyCoder(S, i)
     goodness = GoodnessFinder(v)
     if goodness > goodnesstocompare:
         best_v = v
         goodnesstocompare = goodness
   return best_v


print(GoodnessComparer(x))

よろしくお願いします!

于 2012-05-30T00:05:39.417 に答える
0

私は同じチュートリアルに取り組んでおり、少し異なる方法を使用しました。これにより、関数の作成と呼び出しが回避されました。

inp = input()     #to hold code text
code = list(inp)  #store code as a list
soln = []         #store the 'Goodness' for each of 26 possible answers
y=0               #variable to hold total goodness during calculations
clear = []        #will hold decoded text
pos=0             #position marker for a list

#for every possible value of shift
#note range as 0 to 25 are valid shifts and shift 26 = shift 0

for shift in range(0,26):
   for i in code:                  #loop through each letter in code
      if i == " ":                 #spaces have no score so omit them
         continue
      else:                        #if it's a letter
         x = ord(i)-shift          #apply the test shift
         if x < 65:                #prevent shifting outside A-Z range
            x = x + 26             
         x = x - 64                #turn ord into character position in A-Z with A=1
         x = letterGoodness[x-1]   #turn this into the Goodness score
         y = y + x                 #add this to a running total
   soln.insert(shift-1,y)          #AFTER decoding all letters in code, add total(y) to list of scores
   y = 0                           #reset y before next test value

bestSoln=max(soln)                 #find highest possible score

for i in range(0,26):              #check the list of solutions for this score
   if soln[i]==bestSoln:           #the position in this list is the shift we need
       bestShift = i+1             #+1 as the first solution is 0

for i in code:                     #now decode the original text using our best solution
   if i == " ":                    #spaces are not encoded so just add these to the string
      clear.insert(pos," ")        #pos used to track next position for final string
      pos = pos + 1
      continue
   else:
      x = ord(i)-bestShift         #same operation as before
      if x < 65:
         x = x + 26
   z = chr(x)
   clear.insert(pos,z)             #add the decoded letter to the clear text
   pos = pos + 1
print("".join(clear))              #join the list of clear text into one string and print it

たとえば、このコードの多くの部分を圧縮できる(そして圧縮する必要がある)ことに注意してください。

x = x - 64
x = letterGoodness[x-1]
y = y + x

それらは、チュートリアル演習のために「私の作業を表示する」ために展開されたままになっています。

于 2016-10-11T10:03:11.423 に答える
0
letterGoodness = {'A': 8.17, 'B': 1.49, 'C': 2.78, 'D': 4.25, 'E': 12.70,
                  'F': 2.23, 'G': 2.02, 'H': 6.09, 'I': 6.97, 'J': 0.05, 
                  'K': 0.77, 'L': 4.02, 'M': 2.41, 'N': 6.75, 'O': 7.51, 
                  'P': 1.93, 'Q': 0.09, 'R': 5.99, 'S': 6.33, 'T': 9.06, 
                  'U': 2.76, 'V': 0.98, 'W': 2.36, 'X': 0.15, 'Y': 1.97, 
                  'Z': 0.07} 
                  
# em - input message
em = str(input()) 
em = em.upper()

# dm - guess message
dm = '' 
dmList = []
goodnessList = []
shift = 1

for g in range(25):
   goodness = 0
   dm = ''
   for i in em:
       newL = chr(ord(i) - shift)
       if i == ' ':
            dm += i

       elif ord(newL) < 65:
               A = ord(newL) + 90
               newL = chr(A - 64)
               dm += newL

       else:
            dm += newL

   for h in dm:
      if h != ' ':
         goodness += letterGoodness[h]
   goodnessList.append(goodness)
         
   shift += 1
   dmList.append(dm)  

highestG = max(goodnessList)
dmind = goodnessList.index(highestG)
print(dmList[dmind])
于 2022-01-10T20:03:15.580 に答える