如何不减少分数


13

错误地减少分数

在此代码高尔夫球挑战中,您必须找到可以以错误的方式减少但仍以相同数量结尾的分数。

注意:减少分数的错误方法此处有一个确切的定义,请参阅详细信息。

例:

64/16 = 6 4/1 6 = 4/1 = 4

当然,您不能只击中两个6e,但是在这里您仍然得到正确的值。在这个挑战中,您必须找到这样的例子。

细节

您必须编写一个函数/程序,接受一个正整数n作为输入,然后输出/返回格式的分数列表/数组
numerator1,denominator1,numerator2,denominator2,...

该计划必须找出每个分数a/ba+b=na,b>0它是否可以减少错误的方式。(无论是否可以以常规方式减少排放量,还是有很多减少排放量的可能性,都必须至少以一种方式以错误的方式减少排放量。)

错误方式的定义当且仅当相同的连续数字序列出现在a和b中如果除去子字符串时分数的值保持相同时,分数才能以错误的方式还原。

示例:1536/353可以“减少”为16/3,但是这两个值不相等,因此您不能以错误的方式减少此分数。

请注意,这种减少错误方式的定义也可以包括以正确方式减少的分数:即使110/10 = 11/1在减少错误方式的定义内,它也是有效的步骤。

计分

最少的字节数获胜。您可以编写一个接受整数并返回使用stdin / stdout的数组或程序的函数或程序,也可以考虑将n保存在变量中,并且在程序末尾,列表必须保存在另一个变量中。

测试用例

请包括以下测试用例(告诉我应该添加哪些测试用例,我不知道这些部分有多少/期望有多少示例)

n=80 (64/16 should be in this list)
n=147 (98/49 should be in this list)
n=500 (294/196 should be in this list) WRONG since 294+196 != 500 Thanks Falko

3
考虑为“错误的方式”定义一个术语,例如“愚蠢的”或“怪异的”。我认为该帖子会更容易理解,因为读者会立即认为必须对该术语进行定义。
迈克尔·复活节

3
如果有多种减少分数的方法怎么办,而其中只有一些是错误的呢?1010/10 = 101/1 && 1010/10 /= 110/1
John Dvorak 2014年


1
您的第二个测试用例(n=147)不正确:49/89 != 4/8
Beta Decay

1
如果有多种减少分数的方法,我们可以在结果集中多次包含它吗?
John Dvorak 2014年

Answers:


3

蟒2 - 183 180

r=range
s=lambda a:[(a[i:j],int(a[:i]+a[j:]))for i in r(len(a))for j in r(i+1,len(a)+(i>0))]
l=sum([[a,n-a]for a in r(n)for p,x in s(`a`)for q,y in s(`n-a`)if(n-a)*x==a*y<p==q],[])

输入必须存储在中n,输出将存储在中l

测试用例:

n = 80:

[10, 70, 16, 64, 20, 60, 30, 50, 40, 40, 40, 40, 50, 30, 60, 20, 64, 16, 70, 10]

n = 147:

[49, 98, 98, 49]

n = 490:

[10, 480, 20, 470, 30, 460, 40, 450, 50, 440, 60, 430, 70, 420, 80, 410, 90, 400, 90, 400, 98, 392, 100, 390, 100, 390, 110, 380, 120, 370, 130, 360, 140, 350, 150, 340, 160, 330, 170, 320, 180, 310, 190, 300, 190, 300, 196, 294, 200, 290, 200, 290, 210, 280, 220, 270, 230, 260, 240, 250, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 250, 240, 260, 230, 270, 220, 280, 210, 290, 200, 290, 200, 294, 196, 300, 190, 300, 190, 310, 180, 320, 170, 330, 160, 340, 150, 350, 140, 360, 130, 370, 120, 380, 110, 390, 100, 390, 100, 392, 98, 400, 90, 400, 90, 410, 80, 420, 70, 430, 60, 440, 50, 450, 40, 460, 30, 470, 20, 480, 10]

如果在输出中禁止重复,它将增加10个字符:

r=range
s=lambda a:[(a[i:j],int(a[:i]+a[j:]))for i in r(len(a))for j in r(i+1,len(a)+(i>0))]
l=sum(map(list,{(a,n-a)for a in r(n)for p,x in s(`a`)for q,y in s(`n-a`)if(n-a)*x==a*y<p==q}),[])

3

哈斯克尔, 207 206(209?)个字符

import Data.List
x![]=[x];(w:x)!(y:z)|w==y=x!z;_!_=[]
a@(w:x)%b=a!b++[w:e|e<-x%b];a%b=a!b
h=show
f n=[(c,n-c)|c<-[1..n-1],i<-inits$h c,s<-init$tails i,s/=h c,a<-h c%s,b<-h(n-c)%s,read a*(n-c)==read('0':b)*c]

如果不允许多次返回相同比率(400/400 = 40/40 = 4/4),请使用f n=nub[...将其过滤掉。

返回对列表。包含两个元素的列表的价格相同。实际分数的列表将需要导入Data.Ratio或完全合格Data.Ratio.%(这也会与%此处定义的功能发生冲突)

测试案例(带有nub):

Prelude Data.List> f 80
[(10,70),(16,64),(20,60),(30,50),(40,40),(50,30),(60,20),(64,16),(70,10)]
Prelude Data.List> f 147
[(49,98),(98,49)]
Prelude Data.List> f 500
[(10,490),(20,480),(30,470),(40,460),(50,450),(60,440),(70,430),(80,420),(90,410
),(100,400),(110,390),(120,380),(130,370),(140,360),(150,350),(160,340),(170,330
),(180,320),(190,310),(200,300),(210,290),(220,280),(230,270),(240,260),(250,250
),(260,240),(270,230),(280,220),(290,210),(300,200),(310,190),(320,180),(330,170
),(340,160),(350,150),(360,140),(370,130),(380,120),(390,110),(400,100),(410,90)
,(420,80),(430,70),(440,60),(450,50),(460,40),(470,30),(480,20),(490,10)]

取消评论并评论

import Data.List

-- haystack ! needle - the haystack with the needle removed, wrapped in a single-element list
--                       or an empty array if the haystack does not start with the needle

x ! [] = [x]                        -- case: empty needle = match with the full haystack left
(h:hs) ! (n:ns) | h == n = hs ! ns  -- case: needle and haystack match
_ ! _ = []                          -- case: no match

-- haystack % needle - the haystack with the needle removed 
--                       for all positions of the needle in the haystack

a@(h:hs) % b = a ! b ++ map (h:) (hs%b) -- either remove the needle here, or elsewhere
a % b = a                               -- empty haystack cannot be popped

-- f - the function we are interested in

f total = [ (num, total - num) 
          | num   <- [1 .. total-1],            -- for each numerator in range
            i     <- inits $ show num,          -- for each postfix of the numerator
            sub   <- init $ tails i,            -- for each prefix of the postfix except the last (empty) one
            sub /= show num,                    -- that isn't equal to the numerator
            reNum <- show num % sub,            -- remove the substring from the numerator
            reDiv <- show (total - num) % sub,  -- as well as from the denominator.

                                                -- the resulting ratios must be equal by value:
            (read reNum) ^ (total - num) == (read '0':reDiv) * num]

你可以改变';' 换行符(按高尔夫球代码)?它不会改变字节数,并且使代码更具可读性
骄傲的haskeller

@proudhaskeller这是故意的;我喜欢打高尔夫球的代码行少。而且,这种方式可以使线长更加平衡。你认为我应该改变吗?
约翰·德沃夏克

做任何您想做的事,但我希望这些行能散开,这样我就能更好地阅读代码(而不是诉诸于非高尔夫的代码)
骄傲的haskeller

您对当前版本满意吗?不幸的是,我无法分割最后一行(空格处的空格会降低可读性)
John Dvorak

正如我说的,随您便
骄傲的haskeller 2014年

1

Python 2-236

n=input()
r=range
f=float
l=len
for a in r(n):
 A=`a`;B=`n-a`
 for i in r(l(A)):
  for j in r(i+1,l(A)+1):
   for u in r(l(B)):
    C=A[:i]+A[j:];D=B[:u]+B[u+j-i:]
    if A[i:j]==B[u:u+j-i]and l(C)*l(D)and f(C)==f(A)/f(B)*f(D):print A,B

1

Python 3-302

注意:由于解析困难,没有数字为0的分数(因此,使用正确的方法无法计算分数)。

n=int(input());s=str;r=range
print([[a,b]for a in r(1,n)for b in r(1,a)for i in r(1,n)if i!=a and i!=b and s(i)in s(a)and s(i)in s(b)and s(a).count(s(i))<len(s(a))and s(b).count(s(i))<len(s(b))and not'0'in s(a)and not'0'in s(b)and eval(s(a).replace(s(i),'')+'/'+s(b).replace(s(i),''))==a/b and a+b<=n])

当n = 80时:

[[64, 16]]

n = 147

[[64, 16], [65, 26], [95, 19], [98, 49]]

n = 500

[[64, 16], [65, 26], [95, 19], [98, 49], [136, 34], [192, 96], [194, 97], [195, 39], [196, 49], [196, 98], [231, 132], [238, 34], [238, 136], [242, 143], [253, 154], [264, 165], [268, 67], [275, 176], [286, 187], [291, 97], [291, 194], [294, 49], [294, 98], [294, 196], [295, 59], [297, 198], [298, 149], [325, 13], [341, 143], [345, 138], [392, 49], [392, 98], [395, 79]]

对于n=80这种版画[[64, 16], [65, 26]],但显然65 + 26 = 91 > 80
IngoBürk2014年

把所有的ifs转换为单一大ifand连接的所有条件S' 我认为可以节省很多字符。
Soham Chowdhury 2014年

@Soham是的,是的,谢谢!
Beta Decay

您还可以包括我添加的测试用例吗?(也许您能看看是否也找到一些我也应该添加的有趣的测试用例吗?)
瑕疵的

2
在哪里10/7020/6030/50
John Dvorak 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.