99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代做ECM2418、代寫 java,Python 程序設計

時間:2023-12-10  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



ECM2418 Computer Languages and Representations Continuous Assessment
Functional and Logic Programming
Dr David Wakeling
Handed out Handed in
Thursday 26th October 2023 (T1:05) Thursday 14th December 2023 (T1:12)
This Continuous Assessment is worth 40% of the module mark.
Question 1: Light Show
Every week, The Sunday Times newspaper publishes a Teaser. Teaser 3172, of Sunday 9th July 2023, was as follows.
My bedside clock displays the time and date using eight digits; for example, at 9.43am on 28th June, the display would be
Each digit in the electronic display lights up some (or all) of seven light seg- ments, the above display lighting up a total of 45 segments.
On one occasion recently, the displayed digits were all different and the total number of lit segments was prime. The same was true exactly one day later. Then, just one minute after the second occasion, the number of lit segments was the average of the numbers of lit segments on those two previous occasions.
What was that third display?
    1

Question 1.1
Show a Haskell function generator1 that returns a list of tuples (HR,MN,DY,MT) that may be solutions to the Teaser. That is, for which, HR, MN, DY and MT are valid hours, minutes, days (assume a non-leap year) and months.
This function will be assessed by the number of tests that it passes, as counted by the function x_generator1 below. The expected answer is 10.
 x_generator1 :: Int x_generator1 =
length [t | t <- ts, t ‘elem‘ g] where
 g = ts =
generator1
[ ( 2,15,14,11)
, ( 4,31,27, 9)
, ( 6,**,10, 8)
 , ( 9, 3,23, 6) , (11,19, 6, 5) , (13,35,19, 3) , (15,51, 2, 2) , (18, 6,16,12)
 , (20 ,22 ,29 ,10) , (22,38,11, 9) ]
Question 1.2
Show a Haskell function tester1 that returns true for tuples (HR,MN,DY,MT) that are solutions to the Teaser. That is, for which the tuple is “magic”, a second tuple exactly one day later is also “magic”, and just one minute on from this second tuple the number of lit segments on the display is the average of the number of lit segments of these two tuples. A tuple (HR,MN,DY,MT) is “magic” if the displayed digits of HR, MN, DY and MT are all be different, and the total number of lit segments in the display is prime.
This function will be assessed by the number of tests that it passes, as counted by the func- tion x_tester1 below. Note that these test cases were NOT produced by generator1. The expected answer is 10.
 x_tester1 :: Int x_tester1 =
length [t | t <- ts, tester1 t] where
 ts =
[ ( 6,59,17,24)
2

 , ( 6,59,17,34)
 , ( 6,59,27,14) , ( 6,59,27,41) , ( 8,59,12,46) , (16,59, 7,24) , (16,59, 7,42)
 , (16,59, 7,43) , (16 ,59 ,27 ,40) , (18,59, 2,46) ]
Question 1.3
On blue18.ex.ac.uk, my program
computes [(16,59,27,4)], from which one can deduce the answer to Teaser 3172 is
in 0.004 seconds. Tune your program so that on the same machine, it computes this answer within 1.000 seconds.
(5 marks)
Question 2: Digital Trio
Teaser 3158, of Sunday 5th May 2023, was as follows.
“I have a couple of subtraction problems for you”, George told Martha. Look: N**N2=N3andN3-N4=N5. CanyousolvethemifItellyouthatN1, N3 and N5 are all three-digit whole numbers whose sum is less than 2000, the same three non-zero digits appearing in all three numbers but no digit being repeated within any of those numbers? N2 and N4 are both two-digit whole numbers using two of the three digits mentioned above, and the first digit of N1 is not equal to the first digit of N2.
What is N1?
 main :: IO () main =
 print (filter tester1 generator1)
 3

Question 2.1
Show a Haskell function generator2 that returns a list of tuples (N1,N2,N3,N4,N5) that may be solutions to the Teaser. That is, for which, N1, N3 and N5 are three-digit numbers, and N2 and N4 are two-digit numbers. The same three digits appear in N1, N3 and N5, two of these digits appear in N2, and two of them appear in N4. In each number, no digit is zero and none is repeated. The first digit of N1 is not equal to the first digit on N2.
This function will be assessed by the number of tests that it passes, as counted by the function x_generator2 below. The expected answer is 10.
 x_generator2 :: Int x_generator2 =
 length [t | t <- ts, t ‘elem‘ g] where
g = generator2
ts =
[ ("123","21","123","12","123")
 , ("**","26","261","12","621") , ("219","19","912","21","291") , ("**9","92","9**","**","239") , ("439","94","394","43","394") , ("549","95","945","95","945")
 , ("568","68","586","56","586")
, ("769","67","679","97","796")
, ("879","79","897","98","789")
, ("987","79","789","79","789") ]
(10 marks)
Question 2.2
Show a Haskell function tester2 that returns true for tuples (N1 , N2 , N3 , N4 , N5 ) that are solutions to the Teaser. That is, for which N1 − N2 = N3, N3 − N4 = N5 and N1 + N3 + N5 < 2000.
This function will be assessed by the number of tests that it passes, as counted by the function x_tester2 below. The expected answer is 10.
 x_tester2 :: Int x_tester2 =
length [t | t <- ts, tester2 t] where
 ts =
[ ("138","01","137","50","87")
4

 , ("143","01","142","52","**")
 , ("171","02","169","79","**") , ("152","03","149","54","95") , ("159","04","155","61","94") , ("161","05","156","63","93") , ("182","06","176","80","96")
 , ("151","07","144","57","87") , ("165","08","157","64","93") , ("174","09","165","71","94") ]
(10 marks)
Question 2.3
On blue18.ex.ac.uk, my program
computes [("594","45","549","54","495")] in 0.003 seconds. Tune your program so that on the same machine, it computes this answer within 1.000 seconds.
(5 marks)
Question 3: Easier to Ask the Audience
Teaser 3145, of Sunday 1st January 2023, was as follows.
“I have forgotten the phone number!” complained Martha, about to phone a friend. “So have I!” replied George, “but I have some vague memories of it. It is a perfect square with all the digits different, and the last digit is equal to the number of digits to be dialled. The last-but-one digit is odd and one of the digits is zero. Also the second and third and last-but-one digits are all exact multiples of the first digit. Maybe you can work it out.”
Martha proceeded to dial the number correctly.
What number did she dial?
 main :: IO () main =
 print (filter tester2 generator2)
5

Question 3.1
Show a Prolog predicate generator3 that yields successive numbers N between 1,000 to 1,000,000 (inclusive) that may be solutions to the Teaser. That is, integers N that are perfect squares.
This predicate will be assessed by the number of tests that it passes, as counted by the predicate x_generator3 below. The expected answer is 10.
 x_generator3( N ) :- x_generator3_loop(
[ 1024 , 9409 , 23716 , 51529 , 123**4 , 185761 , 868624 , 962361
 , 982081, 1000000 ], 0, N ).
x_generator3_loop( [], C, C ). x_generator3_loop( [T|TS], C, N ) :-
generator3( T ),
 C1 is C + 1,
x_generator3_loop( TS, C1, N ). x_generator3_loop( [_|TS], C, N ) :-
x_generator3_loop( TS, C, N ).
(10 marks)
Question 3.2
Show a Prolog predicate tester3 that is true for phone numbers N that are solutions to the Teaser. That is, for integers N where all of the digits are different, the last digit is equal to the number of digits, the last-but-one digit is odd and one of the digits is zero. In addition, the second and third and last-but-one digits are all exact multiples of the first digit.
This predicate will be assessed by the number of tests that it passes, as counted by a predicate x_tester3 below. The expected answer is 10.
 x_tester3( N ) :- x_tester3_loop(
[ 123056 , 128036 , 13**76 , 142076 , 148056 , 15**76 , 1**096 , 18**36
 , 193056, 198076 ], 0, N ).
x_tester3_loop( [], C, C ). x_tester3_loop( [T|TS], C, N ) :-
tester3( T ),
 C1 is C + 1,
x_tester3_loop( TS, C1, N ).
6

 x_tester3_loop( [_|TS], C, N ) :-
 x_tester3_loop( TS, C, N ).
(10 marks)
Question 3.3
On Swish Prolog, my program
computes 1**056 in 0.40 seconds. Tune your program so that on the same system, it computes this answer within 2.00 seconds.
(5 marks)
Question 4: Cube Route
Teaser 3149, of Sunday 29th January 2023, was as follows.
I have a set of ten cards, each of which has a different digit written on it. All the cards have been used to make a set of prime numbers. After discarding the smallest prime, and without changing the order of any cards, I have placed the remaining primes in order of decreasing size to give a large number. It is possible, without changing the order of any cards, to break this number into a set composed entirely of cubes. Neither set contains a number with more than four digits.
List, in order of decreasing size, my set of prime numbers.
Question 4.1
Show a Prolog predicate generator4 that yields arrangements of the digits 0 to 9 divided into runs of one, two, three or four digits that form prime numbers. Importantly (and somewhat surprisingly) leading zero digits do not count, so “251” is considered to be prime, but “0251” is not.
This predicate will be assessed by the number of tests that it passes, as counted by a predicate x_generator4 below. The expected answer is 10.
 main :-
generator3( N ), tester3( N ), write( N ).
7

 x_generator4( N ) :-
 x_generator4_loop(
[ [[9 ,6 ,7] ,[4 ,0 ,1] ,[2 ,8 ,3] ,[5]]
, [[9 ,8 ,3] ,[6 ,0 ,1] ,[5] ,[4 ,7] ,[2]]
, [[9 ,8 ,3] ,[6 ,7] ,[4 ,2 ,0 ,1] ,[5]]
, [[9 ,8 ,5 ,1] ,[2] ,[4 ,3] ,[6 ,0 ,7]]
 , [[9 ,8 ,5 ,1] ,[2] ,[3] ,[6 ,0 ,4 ,7]]
, [[9 ,8 ,5 ,1] ,[2] ,[7] ,[4 ,6 ,0 ,3]]
, [[8 ,9] ,[7] ,[6 ,0 ,1] ,[2 ,5 ,4 ,3]]
, [[8 ,9] ,[7] ,[5 ,6 ,3] ,[4 ,0 ,2 ,1]]
, [[8 ,9] ,[5] ,[4 ,7] ,[6 ,0 ,1] ,[3] ,[2]]
 , [[3],[5],[6,0,7],[2],[4,1],[8,9]] ], 0, N ).
x_generator4_loop( [], C, C ). x_generator4_loop( [T|TS], C, N ) :-
generator4( T ),
 C1 is C + 1,
x_generator4_loop( TS, C1, N ). x_generator4_loop( [_|TS], C, N ) :-
x_generator4_loop( TS, C, N ).
(10 marks)
Question 4.2
Show a Prolog predicate tester4 that is true for lists of lists of digits that form prime numbers and may be solutions to the Teaser. That is, for collections of prime numbers that after discarding the smallest prime, may be arranged in order of decreasing size to give a large number that may be divided into runs of one, two three or four digits that form cubes.
This predicate will be assessed by the number of tests that it passes, as counted by the predicate x_tester4 below. The expected answer is 10.
 x_tester4( N ) :- x_tester4_loop(
[ [[8 ,2 ,7] ,[6 ,1] ,[5 ,3] ,[4 ,0 ,9]] , [[8 ,2 ,7] ,[6 ,1] ,[4 ,0 ,9] ,[5 ,3]]
 , [[8 ,2 ,7] ,[5 ,3] ,[6 ,1] ,[4 ,0 ,9]]
, [[8 ,2 ,7] ,[4 ,0 ,9] ,[6 ,1] ,[5 ,3]]
, [[6 ,1] ,[8 ,2 ,7] ,[4 ,0 ,9] ,[5 ,3]]
, [[6 ,1] ,[4 ,0 ,9] ,[5 ,3] ,[8 ,2 ,7]]
, [[5 ,3] ,[6 ,1] ,[4 ,0 ,9] ,[8 ,2 ,7]]
 , [[5 ,3] ,[4 ,0 ,9] ,[6 ,1] ,[8 ,2 ,7]]
, [[4 ,0 ,9] ,[5 ,3] ,[8 ,2 ,7] ,[6 ,1]]
, [[4,0,9],[8,2,7],[6,1],[5,3]] ], 0, N ).
8

  x_tester4_loop( [], C, C ). x_tester4_loop( [T|TS], C, N ) :-
tester4( T ),
C1 is C + 1,
x_tester4_loop( TS, C1, N ).
 x_tester4_loop( [_|TS], C, N ) :- x_tester4_loop( TS, C, N ).
(10 marks)
Question 4.3
On Swish Prolog, my program
computes a first result in in 33.0 seconds, from which one can deduce the answer to the Teaser is 827, 409, 61, 53. Tune your program so that on the same system, it computes this answer within 120.0 seconds.
(5 marks)
Submission
You should submit a single “.zip” file to the ELE system. Other compression formats, such as “.rar”, “.7z”, “.gz” and “.bz2” are unacceptable, and will receive a mark of zero. The “.zip” file should contain four completed text files “Light.hs” (containing the answer to Question 1), “Trio.hs” (containing the answer to Question 2), “Audience.pl” (con- taining the answer to Question 3) and “Cube.pl” (containing the answer to Question 4).
If there is any question as to whether your functional programs compute the correct result, these questions will be answered on the implementation at
   https://www.tutorialspoint.com/compile_haskell_online.php
If there is any question as to whether your logic programs compute the correct result, these questions will be answered on the implementation at
   https://swish.swi-prolog
 main :-
generator4( XS ), tester4( XS ), write( XS ).
9

All students are reminded of the University regulations on academic honesty and plagiarism.
In particular, functions an predicates clearly intended ONLY to pass the given tests will be treated as malpractice (“an attempt to deceive the examiners”).
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:CSC8204 代寫、Secure Software程序
  • 下一篇:INT305 代做、代寫 Python 語言編程
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                欧美成人vps| 国产午夜久久久久| 日韩免费高清av| 色八戒一区二区三区| eeuss鲁片一区二区三区在线看| 亚洲福中文字幕伊人影院| 亚洲一区二区三区不卡国产欧美| 一本色道**综合亚洲精品蜜桃冫| 久久久久亚洲综合| 亚洲精品国产成人久久av盗摄| 成人黄色在线视频| 亚洲精品一区二区在线观看| 自拍偷自拍亚洲精品播放| 色婷婷激情一区二区三区| www久久精品| 石原莉奈在线亚洲三区| 精品久久久久av影院| 亚洲一区二区3| 五月天国产精品| 国产亚洲精久久久久久| 亚洲.国产.中文慕字在线| 日韩午夜激情电影| 日韩vs国产vs欧美| 欧美这里有精品| 美女网站在线免费欧美精品| 午夜激情一区二区三区| 99久久久免费精品国产一区二区| 亚州成人在线电影| 欧美久久一二区| 国产精品网站在线| 欧美三级蜜桃2在线观看| 亚洲乱码一区二区三区在线观看| 欧美一区二区免费观在线| 自拍av一区二区三区| 99精品国产热久久91蜜凸| 午夜欧美电影在线观看| 91免费版pro下载短视频| 国模套图日韩精品一区二区| 日韩午夜中文字幕| 日韩国产欧美三级| 久久久久国产精品麻豆ai换脸| 国内一区二区在线| 日韩欧美一卡二卡| 在线观看91精品国产入口| 自拍偷在线精品自拍偷无码专区| 国产精品一级片| 亚洲色图19p| caoporen国产精品视频| 欧美日韩一区二区电影| 麻豆91精品视频| 精品国产青草久久久久福利| av日韩在线网站| 综合久久久久综合| 色欲综合视频天天天| 粉嫩嫩av羞羞动漫久久久| 中文字幕一区二| 99精品久久免费看蜜臀剧情介绍| 成人午夜av影视| 亚洲男人的天堂网| 精品精品欲导航| 99久精品国产| 亚洲一区二区三区影院| 国产区在线观看成人精品| 成人av资源网站| 91传媒视频在线播放| 国内精品免费**视频| 日本一区二区高清| 欧美日韩精品二区第二页| 久久99精品久久久久| 国产午夜三级一区二区三| 欧美一区二区视频观看视频| 激情国产一区二区| 91视频国产观看| aa级大片欧美| 久久国产精品免费| 亚洲成人av中文| 欧美电视剧免费全集观看| 欧美日韩国产在线观看| 91国模大尺度私拍在线视频| 人妖欧美一区二区| 亚洲高清免费视频| 欧美成人乱码一区二区三区| 成人免费av网站| 一本大道久久a久久精二百 | 精品三级在线看| 欧美挠脚心视频网站| 国产精品一二三在| 欧美一区二区网站| 久久亚洲影视婷婷| 欧美一区二区三区公司| 午夜国产精品影院在线观看| 国产网站一区二区三区| 日韩一区二区三区av| 色综合久久久久综合体| 亚洲欧美电影院| 日韩精品中文字幕一区| 欧美亚洲一区二区在线观看| 欧美一区二区三区视频在线 | 91网站最新地址| 懂色中文一区二区在线播放| 六月丁香婷婷色狠狠久久| 国产夫妻精品视频| 韩国av一区二区三区| 成人国产精品视频| 成人黄色在线视频| 亚洲另类一区二区| 蜜臀久久久99精品久久久久久| 亚洲视频香蕉人妖| 毛片不卡一区二区| 麻豆精品视频在线| 日本怡春院一区二区| 美国毛片一区二区三区| 香蕉久久夜色精品国产使用方法 | 欧美成人免费网站| 国产亚洲婷婷免费| 成人h精品动漫一区二区三区| 亚洲成人tv网| 经典一区二区三区| 国产成人日日夜夜| 日韩欧美在线不卡| 国产精品99久久久久久宅男| 一区二区三区不卡视频 | 一区二区三区国产豹纹内裤在线| 日韩黄色一级片| 久草在线在线精品观看| 国产精品一区二区91| 日韩欧美色综合网站| 欧美大片在线观看一区二区| 亚洲精品菠萝久久久久久久| 亚洲另类在线视频| 免费看日韩精品| 欧美日本乱大交xxxxx| 欧美亚洲动漫精品| 国产精品久久久久aaaa樱花| 一区二区三区在线看| 国产精品欧美一级免费| 国产一区二区精品久久91| 色欧美乱欧美15图片| 中文一区在线播放| 日精品一区二区| 国产亚洲精品久| 国内精品免费**视频| 欧美午夜片在线观看| 洋洋成人永久网站入口| 加勒比av一区二区| 一区二区三区丝袜| 欧美专区在线观看一区| 久久免费视频色| 国产很黄免费观看久久| 欧美精品电影在线播放| 五月婷婷另类国产| 国产69精品久久久久毛片| 欧美日韩美少妇| 日韩av网站免费在线| 91影视在线播放| 亚洲一区影音先锋| 91丝袜呻吟高潮美腿白嫩在线观看| 一本高清dvd不卡在线观看 | 久久只精品国产| 亚洲免费av观看| 一本色道久久综合亚洲精品按摩| 欧美成人aa大片| 久久久久久夜精品精品免费| 日本中文一区二区三区| 欧美日韩中文字幕一区二区| 日韩av电影免费观看高清完整版在线观看 | 欧美第一区第二区| 亚洲三级视频在线观看| 欧美亚洲另类激情小说| 亚洲欧美一区二区三区久本道91| 欧美丝袜丝交足nylons图片| 国产精品女同一区二区三区| 成人激情图片网| 视频一区中文字幕| 制服视频三区第一页精品| 青青草国产成人av片免费| 欧美日韩亚洲综合在线| 蜜臀久久久久久久| 欧美喷水一区二区| 日韩一区二区三区视频在线| 国产91高潮流白浆在线麻豆| 精品国产伦理网| 在线视频你懂得一区| 国产亚洲福利社区一区| 51午夜精品国产| 99精品视频中文字幕| 日本一区二区三区四区| 欧美一区二区女人| 精品在线观看免费| 亚洲视频一区在线观看| 欧美色网一区二区| 欧美激情综合五月色丁香小说| 在线精品观看国产| 美女视频网站黄色亚洲| 亚洲另类在线制服丝袜| 欧美日韩高清一区二区| 一本到高清视频免费精品| 偷偷要91色婷婷| 亚洲蜜臀av乱码久久精品蜜桃| 日韩视频在线你懂得|