0

Project Euler でプログラミングの課題に取り組んでいます。課題は次のとおりです。

Using names.txt (right click and 'Save Link/Target As...'), 
a 46K text file containing over five-thousand first names, 
begin by sorting it into alphabetical order. Then working out 
the alphabetical value for each name, multiply this value by 
its alphabetical position in the list to obtain a name score.

For example, when the list is sorted into alphabetical order,
COLIN, which is worth 3 + 15 + 12 + 9 + 14 = 53, is the 938th name in the list. 
So, COLIN   would obtain a score of 938  53 = 49714.

What is the total of all the name scores in the file?

というわけでコーヒースクリプトで書いていますが、ロジックがわかりやすいように説明します。

fs = require 'fs'

total = 0
fs.readFile './names.txt', (err,names) ->
  names = names.toString().split(',')
  names = names.sort()

  for num in [0..(names.length-1)]
    asc = 0

    for i in [1..names[num].length]
       asc += names[num].charCodeAt(i-1) - 64

    total += num * asc

  console.log total

基本的に、ファイルを読み込んでいます。名前を配列に分割して並べ替えます。それぞれの名前をループしています。ループして、各文字の charCode を (すべて大文字として) 取得します。次に、アルファベットでの位置を取得するために、それを 64 引きます。最後に、total 変数に を追加しますnum of the loop * sum of positions of all letters

私が得た答えは ですが870873746、それは正しくなく、他の答えの数はわずかに高くなっています。

誰でも理由がわかりますか?

4

1 に答える 1

2
 total += num * asc

ここがまずかったと思います。for ループはnum0 から始まります (これがコンピューターが物事を保存する方法です)。ただし、ランキングの場合、開始は 0 ではなく 1 番目から行う必要があります。したがって、totalカウントを設定する場合、コードは次のようになります。

 total += (num+1) * asc
于 2012-10-10T01:32:20.757 に答える