update 89 93 94 97, add pow_mod

This commit is contained in:
xw_y_am@rmbp 2017-08-29 22:26:21 +08:00
parent d19ee31562
commit 5198fce5b7
5 changed files with 103 additions and 133 deletions

View File

@ -1,42 +1,40 @@
dic = {'I':1, 'V':5, 'X':10, 'L':50, 'C':100, 'D':500, 'M':1000} from functools import reduce
rdic = {1:'I', 2:'II', 3:'III', 4:'IV', 5:'V', 6:'VI', 7:'VII', 8:'VIII', 9:'IX',
10:'X', 20:'XX', 30:'XXX', 40:'XL', 50:'L', 60:'LX', 70:'LXX', 80:'LXXX',
90:'XC', 100:'C', 200:'CC', 300:'CCC', 400:'CD', 500:'D', 600:'DC',
700:'DCC', 800:'DCCC', 900:'CM', 1000:'M'}
def rtoi(ss): dct_n2r = {0: '', 1:'I', 2:'II', 3:'III', 4:'IV', 5:'V', 6:'VI', 7:'VII', 8:'VIII', 9:'IX',
out = dic.get(ss[-1]) 10:'X', 20:'XX', 30:'XXX', 40:'XL', 50:'L', 60:'LX', 70:'LXX', 80:'LXXX', 90:'XC',
for i in xrange(len(ss) - 1): 100:'C', 200:'CC', 300:'CCC', 400:'CD', 500:'D', 600:'DC', 700:'DCC', 800:'DCCC', 900:'CM',
if dic.get(ss[i]) < dic.get(ss[i + 1]): 1000:'M'}
out -= dic.get(ss[i]) dct_r2n = {'I':1, 'V':5, 'X':10, 'L':50, 'C':100, 'D':500, 'M':1000}
else:
out += dic.get(ss[i])
return out
def itor(num): def r2n(r_num):
out = '' last = 0
thousand = num - num % 1000 tale = 0
if num > 0: for digit in reversed(list(map(lambda x: dct_r2n[x], r_num))):
out += rdic.get(1000) * (thousand / 1000) if digit < last:
tale -= digit
else:
tale += digit
last = digit
return tale
def n2r(num):
tale = dct_n2r[1000] * (num // 1000)
num %= 1000 num %= 1000
hundred = num - num % 100 tale += dct_n2r[num - num % 100]
if hundred > 0:
out += rdic.get(hundred)
num %= 100 num %= 100
teen = num - num % 10 tale += dct_n2r[num - num % 10]
if teen > 0:
out += rdic.get(teen)
num %= 10 num %= 10
if num > 0: return tale + dct_n2r[num]
out += rdic.get(num)
return out
ff = open('../roman.txt', 'r') def get_file(fn):
lis = ff.readlines() with open(fn, 'r') as f:
ff.close() return list(map(lambda x: x.strip(), f.readlines()))
count = 0 def item_len(lst):
for i in lis: return reduce(lambda x, y: x + len(y), lst, 0)
new = itor(rtoi(i.rstrip()))
count += abs(len(new) - len(i.rstrip())) def trans(fn):
print count lst = get_file(fn)
return item_len(lst) - item_len(map(lambda x: n2r(r2n(x)), lst))
print(trans('../resource/roman.txt'))

View File

@ -1,60 +1,50 @@
def two(a, b): def two(a, b):
out = set([]) out = set([a + b, a * b, a - b, b - a])
out.add(a + b) if a != 0:
out.add(a * b) out.add(b / a)
'''if a != b: if b != 0:
out.add(abs(a - b))''' out.add(a / b)
out.add(a - b) return out
out.add(b - a)
if a != 0:
out.add(b / float(a))
if b != 0:
out.add(a / float(b))
return out
def three(a, b, c): def three(a, b, c):
out = set([]) out = set([])
for i in two(a, b): for i in two(a, b):
out |= two(i, c) out |= two(i, c)
for i in two(a, c): for i in two(a, c):
out |= two(i, b) out |= two(i, b)
for i in two(b, c): for i in two(b, c):
out |= two(i, a) out |= two(i, a)
return out return out
def four(a, b, c, d): def four(a, b, c, d):
first = two(a, b) pair = two(c, d)
second = two(c, d) out = set([])
out = set([]) for i in two(a, b):
for i in first: out |= three(i, c, d)
out |= three(i, c, d) for j in pair:
for j in second: out |= two(i, j)
out |= two(i, j) for j in pair:
for j in second: out |= three(j, a, b)
out |= three(j, a, b) return out
return out
def calc(a, b, c, d): def calc(a, b, c, d):
tmp = set([]) out = list(sorted(list(filter(lambda x: x == int(x) > 0,
tmp |= four(a, b, c, d) four(a, b, c, d) | four(a, c, b, d) | four(a, d, b, c)))))
tmp |= four(a, c, b, d) for i in range(len(out)):
tmp |= four(a, d, b, c) if i + 1 != out[i]:
out = [] return out[:i]
for i in tmp: return out
if i == int(i) > 0:
out.append(int(i))
return sorted(out)
maxx = [0, 0] def search():
for m in xrange(1, 10): maxi = [0, 0]
for n in xrange(m + 1, 10): for m in range(1, 10):
for s in xrange(n + 1, 10): for n in range(m + 1, 10):
for t in xrange(s + 1, 10): for s in range(n + 1, 10):
tmp = calc(m, n, s, t) for t in range(s + 1, 10):
for i in xrange(len(tmp)): count = len(calc(m, n, s, t))
if i + 1 != tmp[i]: if count > maxi[0]:
break maxi = [count, (m, n, s, t)]
if i > maxx[0]: return maxi
maxx = [i, (m, n, s, t)]
print maxx print(search())

View File

@ -1,31 +1,20 @@
maxx = 1000000000
mul = 3 ** 0.5 def calc(limit):
n = 0 return sum(map(lambda x:
C = 0 sum(map(x[0], filter(x[1], map(x[2], range(1, x[3]))))),
total = 0 [
while 1: (
n += 1 lambda x: 2 * sum(x) ** 2,
m = int((mul + 2) * n) lambda x: 2 * x[0] * x[1] + 1 == (x[0] - x[1]) ** 2,
m += 1 - (m + n) % 2 lambda x: (int((2 + 3 ** 0.5) * x) + 1, x),
C = 2 * (m + n) ** 2 int((limit / (2 + 3 ** 0.5) / 12) ** 0.5)
if C > maxx: break ),
if abs((m - n) ** 2 - 2 * m * n) == 1: (
print 4 * m * n, m ** 2 + n ** 2 lambda x: 4 * x[0],
total += C lambda x: 3 * x[1] + 1 == x[0],
lambda x: (int((3 ** 0.5) * x + 1) ** 2, x ** 2),
int((limit / 12) ** 0.5)
)
]))
n = 0 print(calc(1000000000))
C = 0
while 1:
n += 1
m = int(mul * n)
m += 1 - (m + n) % 2
xx = m ** 2
yy = n ** 2
C = 4 * xx
if C > maxx: break
if abs(xx - 3 * yy) == 1:
print 2 * (xx - yy), xx + yy
total += C
print total

View File

@ -1,19 +1,3 @@
def powmod(x, y, z): from tools import number_theory
ybi = []
while y != 0:
ybi.append(y % 2)
y /= 2
out = 1
ybi.reverse()
for i in ybi:
out = out * out % z
if i == 1:
out = out * x % z
return out
print(str(number_theory.pow_mod(2, 7830457, 10000000000) * 28433 + 1)[-10:])
a = powmod(2, 7830457, 100000000000)
b = a * 28433 + 1
b %= 10000000000
print b

View File

@ -10,6 +10,15 @@ def lcm(x, y):
return x * y // gcd(x, y) return x * y // gcd(x, y)
def pow_mod(base, exp, mod):
result = 1
for digit in bin(exp)[2:]:
result = result ** 2 % mod
if '1' == digit:
result = result * base % mod
return result
def make_prime(limit): def make_prime(limit):
if limit < 5: if limit < 5:
if limit < 2: return if limit < 2: return