[PYTHON] Project Euler 22

problem

Use the 46K text file filenames.txt with over 5000 names. Sort alphabetically first.

After that, the score of the name is calculated by assigning a value to the alphabet for each name and multiplying it by the number in the order of appearance in the list.

For example, if the list is sorted alphabetically, COLIN is at the 938th position in the list, and COLIN has the value 3 + 15 + 12 + 9 + 14 = 53, so COLIN is 938 × 53 = 49714. Have a score.

Find the sum of the scores for all the names in the file. http://odz.sakura.ne.jp/projecteuler/index.php?cmd=read&page=Problem%2022

Answer

Practice using the reduce function.

dict = {"A":1,"B":2,"C":3,"D":4,"E":5,"F":6,"G":7,"H":8,"I":9,"J":10,"K":11,"L":12,"M":13,"N":14,"O":15,"P":16,"Q":17,"R":18,"S":19,"T":20,"U":21,"V":22,"W":23,"X":24,"Y":25,"Z":26}
def get_point(name,i):
  #if name == 'COLIN':
  #  print reduce(lambda x,y:x+y, map(lambda x:dict[x], name)) * (i+1) 
  return reduce(lambda x,y:x+y, map(lambda x:dict[x], name)) * (i+1) 

def main():
  filename = "names.txt"
  F = open(filename)
  names = F.read()
  namelist = map(lambda x: x.strip('"'), names.split(","))
  namelist.sort()
  ans = 0
  lng = len(namelist)
  for i in range(lng):
    ans += get_point(namelist[i],i)
  print ans

main()

Recommended Posts

Project Euler 37
Project Euler 7
Project Euler 47
Project Euler 31
Project Euler 4
Project Euler 17
Project Euler 26
Project Euler 8
Project Euler 23
Project Euler 22
Project Euler 19
Project Euler 50
Project Euler 42
Project Euler 33
Project Euler 32
Project Euler 43
Project Euler 35
Project Euler 36
Project Euler 24
Project Euler 46
Project Euler 48
Project Euler 45
Project Euler 6
Project Euler 44
Project Euler 39
Project Euler 40
Project Euler 49
Project Euler 29
Project Euler 27
Project Euler 41
Project Euler 18
Project Euler 13
Project Euler 30
Project Euler 16
Project Euler 14
Project Euler 34
Project Euler 25
[Project Euler] problem1
Project Euler15 "Lattice Path"
Project Euler 2 Acceleration 2.21 Save microseconds.
Project Euler Original Method Group 1
What is Project Euler 3 Acceleration?
Functional programming in Python Project Euler 1
Project Euler 10 "Sum of Prime Numbers"
[Note] Project Euler in Python (Problem 1-22)
Functional programming in Python Project Euler 3
Project Euler # 5 "Minimum Multiples" in Python
Project Euler 4 Attempt to speed up
Functional programming in Python Project Euler 2
Project Euler 11 "Maximum product in grid"
Project Euler # 15 "Lattice Path" in Python
Project Euler # 4 "Maximum Palindrome" in Python
Project Euler 9 Retention of calculation results
Project Euler # 3 "Maximum Prime Factors" in Python
Project Euler # 11 "Maximum Product in Grid" in Python
Project Euler # 7 "1000 1st prime number" in Python
Project Euler # 16 "Sum of Powers" in Python
Project Euler # 9 "Special Pythagorean Triple" in Python
Project Euler # 14 "Longest Collatz Sequence" in Python
I wrote Project Euler 1 in one liner.
Project Euler # 2 "Even Fibonacci Numbers" in Python