国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫(xiě)comp2022、代做c/c++,Python程序設(shè)計(jì)
代寫(xiě)comp2022、代做c/c++,Python程序設(shè)計(jì)

時(shí)間:2024-10-11  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



comp2022 Assignment 3 (70 marks) s2 2024
This assignment is due in Week 10 and should be submitted to Gradescope.
All work must be done individually without consulting anyone else’s solutions in accordance
with the University’s “Academic Dishonesty and Plagiarism” policies.
Go to the last page of this document and read the Submission Instructions. For clariffcations
and updates, monitor “Assignment FAQ”.
Problem 1. (10 marks) Consider the following deterministic Turing Machine M
over input alphabet Σ = {a, b}:
0 _ _ L 1
0 * * R 0
1 b _ L 2
2 a _ L 3
1 _ _ * halt_accept
3 _ _ R 0
3 * * L 3
1. (5 marks) State ffve strings that are in L(M), and ffve that are not. The
strings should be over Σ.
2. (5 marks) Provide a low level description in Morphett notation of a (**tape
deterministic) Turing Machine for the language that has time complexity at
most 5n + 5.
Problem 2. (10 marks) Consider the following nondeterministic Turing Machine
N over input alphabet Σ = {a, b}:
0 _ _ * halt-reject
0 a a r 0
0 b b r 0
0 b x l 1
1 x x l 1
1 a x r 2
1 b x r 2
1 _ _ r 4
1comp2022 Assignment 3 (70 marks) s2 2024
2 x x r 2
2 a x r 3
2 b x r 3
2 _ _ * halt-reject
3 x x r 3
3 a x l 1
3 b x l 1
3 _ _ * halt-reject
4 x x r 4
4 a a * halt-reject
4 b b * halt-reject
4 _ _ * halt-accept
1. (5 marks) State ffve strings that are in L(N), and ffve that are not. The
strings should be over Σ.
2. (5 marks) Provide a low level description in Morphett notation of a (**tape
deterministic) Turing Machine for the language.
Note: Morphett’s simulator of nondeterministic TMs uses randomness to resolve
nondeterminism. This is not the semantics of NTMs.
Problem 3. (30 marks) For each of the following languages over the input alphabet
Σ = {a, b, c}, provide a low level description in Morphett notation of a
(**tape deterministic) TM for the language.
1. The language of non-empty strings where the ffnal character appears at
most 3 times in the string (including the ffnal character).
E.g., abccaba is in the language, while abcbcbab is not.
2. The language of strings of the form a
E.g., aabbccaa is in the language, while abc is not.
3. The language of strings that can be turned into a palindrome by replacing
at most two characters by other characters.
E.g., aba is in the language because it is a palindrome, abb is in the language
 because we can change one character to get a palindrome (e.g., aba),
and aabc is in the language because we can change two characters to get a
palindrome (e.g., aaaa); however aabbccc is not in the language.
4. The language of strings for which the longest substring that matches a

is
longer than the longest substring that matches b

.
E.g., caaaccbbaabaaac, baaacbbcaaabb and aaaa are in the language, while
aabbbcacacacaca is not.
2comp2022 Assignment 3 (70 marks) s2 2024
5. The language of strings of the form uvcvu where u, v ∈ {a, b}

.
E.g., aabbacbaaab is in the language (take u = aab, v = ba), while aabbcabab
is not.
6. The language of strings of the form uvw where v is a non-empty string with
the same number of as, bs, and cs. E.g., bbaabbbccaccbc is in the language,
while bbaabbbcc is not.
Problem 4. (5 marks + 5 bonus marks)
Your robot buddy GNPT-4 has come up with a revolutionary new strategy to
prove that it is in fact equal in computational power to its more well-known
cousin. It has a simple yet brilliant proof strategy: it will start by proving that
P in fact equals the set of Turing-decidable languages, by showing that every
decider runs in polynomial time. Once it has done this, it will obtain as a corollary
 that NP is also equal to this set, and the result will follow. GNPT-4 would
like you to check its generated proof, and has generously offered you half of the
million dollar bounty for doing so.
Unfortunately, you’re starting to have some concerns about the claim that every
decider runs in polynomial time. GNPT-4’s proof of this claim is 2123 pages
long, so you don’t really feel like checking it in detail for a ffaw. Instead, you
have a much better idea: you’ll provide an explicit counterexample of a machine
that does not run in polynomial time.
1. (5 marks) Provide a low level description in Morphett notation of a (**tape
deterministic) TM over input alphabet Σ = {a} that accepts every string, has
at most 20 states, and has time complexity f(n) such that 2
n ≤ f(n) ≤ 2
2n+1
for all n.
2. (5 bonus marks) Provide a low level description in Morphett notation of a
(**tape deterministic) TM over input alphabet Σ = {a} that accepts every
string, has at most 40 states, and has time complexity exactly 2
n
.
Problem 5. (15 marks)
You’re a budding cartoonist, trying to create the next great TV animation. You’ve
come up with the perfect idea, but now you need to pitch it to the executives.
You know from your experience in the industry how the process works: you
make a proposal with a string over Σ = {a, b} and the network runs a Turing
machine Q on it. If Q accepts, your show will be ready for broadcast, but if
it doesn’t, you will be shown the door, fflled with eternal regret at what could
have been. Of course, as Q is a Turing machine, there is also the possibility that
Q will diverge. (For example, this is what happened after season 7 of Futurama.)
One of your shady contacts (apparently they’re a secret agent who uses ffnite automata,
 or something?) has managed to obtain a copy of the network’s machine
Q for you. You now want to analyse Q to ffgure out how to pitch your show
3comp2022 Assignment 3 (70 marks) s2 2024
so it will be accepted. Furthermore, you’ve heard that it’s considered especially
fortuitous if Q runs in a number of steps that is a multiple of 77, and such shows
will be given air during the network’s prime timeslots. So you’d like a machine
that will analyse Q and your proposal to see if that will be the case.
1. (5 marks) Prove that the language {M, x: M halts on x in exactly 77n steps
for some integer n > 0} is undecidable.
Okay, so that was a bust. You’ve set your sights lower: at this point you just want
any description that will be accepted, and you’re willing to retool your proposal
to make it work. Rather than focusing on your speciffc string, you’d like a
machine that will analyse just Q, and ffnd some string, any string, that it will
accept. There is, however, the possibility that Q doesn’t accept any string. (That
would explain why there are no decent new shows these days.) In this event,
your endeavour is doomed and you don’t care about the output, but you’d like
the analysing machine to at least halt, so you’re not stuck waiting forever.
2. (10 marks) Consider the following speciffcation. The inputs are Turing machines
 over input alphabet Σ = {a, b}.
(a) If the input is a Turing machine M that accepts some input, the output
should be any string x that M accepts.
(b) If the input is a Turing machine M that does not accept any input, the
output should be any string x. (There still must be an output, ie. the
machine satisfying this speciffcation must halt.)
Prove or disprove whether there exists a Turing Machine that halts on every
input and satisffes this speciffcation.
4comp2022 Assignment 3 (70 marks) s2 2024
Submission Instructions
You will submit answers to all the problems on Gradescope.
Problems 1, 2, 3 and 4 are autograded.
It is essential that you ensure that your submission is formatted so that the autograder can
understand it. Upon submitting your responses, you should wait for the autograder to provide
feedback on whether your submission format was correct. An incorrectly formatted submission
for a question will receive zero marks for that question. A scaffold will be provided on Ed
with the ffle names the autograder expects.
Problem 1.1, 2.1 format:
The ffrst line of each answer should contain a comma separated sequence of ffve strings that are
in the language, and the second line should contain a comma separated sequence of ffve strings
that are not in the language. For example, if the language consists of all strings that only contain
b’s, an example of a correct text ffle would be:
epsilon, b, bb, bbb, bbbb
a, aa, aaa, aaaa, aaaaa
Problem 1.2, 2.2, 3, 4 format (TMs):
All TMs that you are required to provide in this assignment are deterministic and have a single
tape, and that tape is doubly-inffnite. When asked to give a low-level description use Morphett’s
format. The initial state must be 0
Note that your machine should use an explicit transition to halt-reject when rejecting a string. If
the machine has no transition on a (state, input) pair, this will be treated as an error, and will not
be treated as rejecting the string. You may wish to include the following line in your machines,
to treat all undeffned transitions as rejects: * * * * halt-reject
Problem 5 format:
Problem 5 is handgraded. You will submit a single typed pdf (no pdf containing text as images,
no handwriting). Start by typing your student ID at the top of the ffrst page of each pdf. Do not
type your name. Do not include a cover page. Submit only your answers to the questions. Do
not copy the questions. Your pdf must be readable by Turnitin.



請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp










 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:ELX304編程代寫(xiě)、代做Python/Java程序語(yǔ)言
  • 下一篇:代寫(xiě)INFS3208、代做Python語(yǔ)言編程
  • ·CVEN9612代寫(xiě)、代做Java/Python程序設(shè)計(jì)
  • ·代寫(xiě)COMP90049、代做Java/python程序設(shè)計(jì)
  • ·代做48730-32548,、c/c++,Python程序設(shè)計(jì)代寫(xiě)
  • ·代做SCI 3004、c++/Python程序設(shè)計(jì)代寫(xiě)
  • ·FINC5090代寫(xiě)、代做Python程序設(shè)計(jì)
  • ·COMP9414代做、代寫(xiě)Python程序設(shè)計(jì)
  • ·代寫(xiě)COMP9417、Python程序設(shè)計(jì)代做
  • ·FINS5510代寫(xiě)、c/c++,Python程序設(shè)計(jì)代做
  • ·COMP3009J代做、代寫(xiě)Python程序設(shè)計(jì)
  • ·CSSE7030代做、代寫(xiě)Python程序設(shè)計(jì)
  • 合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久久久一区二区三区| 久久精品国产亚洲7777| 成人精品一区二区三区电影黑人| 北条麻妃一区二区三区中文字幕 | 国产婷婷一区二区三区| 日韩在线精品一区| 日产国产精品精品a∨| 国产精品一二三在线| 国产精品视频免费观看| 日韩免费中文字幕| 久久久久久欧美| 日本高清不卡在线| 久久99精品久久久久久三级| 色女人综合av| 久久综合中文色婷婷| 懂色av一区二区三区在线播放| 成人精品在线视频| 欧美激情一区二区三级高清视频 | 久久成人免费观看| 日本一区二区三区视频在线观看| 久久影院理伦片| 日本一区二区三区视频在线观看| 国产不卡视频在线| 日本不卡一二三区| 精品国产依人香蕉在线精品| 欧美影院在线播放| 国产精品日本精品| 国产主播在线看| 久久999免费视频| 国产精品一区二区三区成人| 一区二区精品国产| 久久久一本二本三本| 日本一区免费看| 日韩在线视频二区| 黄色网页免费在线观看| 欧美成人免费va影院高清| 国产欧美日本在线| 亚洲欧美日韩国产成人综合一二三区 | 美女av一区二区三区| 成人国产精品日本在线| 婷婷久久青草热一区二区| 国产不卡一区二区在线播放| 青青草综合在线| 国产精品美女网站| 国产精品午夜一区二区欲梦| 大波视频国产精品久久| 久激情内射婷内射蜜桃| 国外色69视频在线观看| 伊人久久大香线蕉综合75| 久久人人爽人人爽人人片av高清 | 久久日韩精品| 国内精品久久久久久久果冻传媒 | 国产区一区二区| 亚洲欧美日韩另类精品一区二区三区| 国产传媒一区二区三区| 欧美国产日韩在线播放| 一区二区三区四区免费观看 | 国产精品免费久久久久久| 国产精品永久免费在线| 午夜精品三级视频福利| 国产精品视频男人的天堂| αv一区二区三区| 欧在线一二三四区| 中文字幕av导航| 久久99九九| 国产精品亚洲不卡a| 日av中文字幕| 一区二区三区在线视频看| 久久成人资源| av动漫在线免费观看| 欧美一级大片视频| 一区二区三区观看| 国产精品入口免费| 久久人妻精品白浆国产| 国产在线资源一区| 日韩高清专区| 一区二区三区四区在线视频| 日韩中文字幕网址| 国产日韩欧美大片| 日本一区二区视频| 永久免费看av| 国产精品免费一区二区三区在线观看| 99伊人久久| 美女精品国产| 青青青在线视频播放| 亚洲欧美日韩精品久久久| 国内精品久久久久久久果冻传媒| 日本欧美黄网站| 一区二区三区电影| 国产精品精品一区二区三区午夜版| 久久综合久久色| 国产情侣av自拍| 青青在线视频免费观看| 亚洲免费视频播放| 国产精品对白刺激久久久| 欧美 日韩 国产一区| 日本电影亚洲天堂| 日韩在线一级片| 中文字幕一区二区三区乱码 | 蜜桃免费区二区三区| 日本精品视频网站| 亚洲国产精品www| 一区二区三区四区欧美| 免费97视频在线精品国自产拍| 精品激情国产视频| 久久99精品久久久久久秒播放器| 国产精品aaa| 91九色蝌蚪成人| 成人免费91在线看| 国产精品一区二区三区免费| 国产肉体ⅹxxx137大胆| 麻豆av一区二区三区久久| 欧美一区亚洲一区| 精品国产乱码久久久久久蜜柚| 国内自拍在线观看| 久久久亚洲天堂| 日韩精品在线中文字幕| 亚洲一区二区三区视频播放| 国产精品久久久久久久久电影网| 蜜桃91精品入口| 国产一区二区在线网站| 日韩无套无码精品| 欧洲精品在线一区| 欧美日韩天天操| 含羞草久久爱69一区| 激情小说综合区| 黄色网在线视频| 国产亚洲欧美另类一区二区三区| 国内精品在线一区| 欧美精品123| 久久国产精品-国产精品| 久久综合伊人77777蜜臀| 蜜臀久久99精品久久久无需会员| 欧美一区二区影院| 亚洲a级在线播放观看| 在线观看亚洲视频啊啊啊啊| 国产精品久久久久9999爆乳| 国产精品对白一区二区三区| 国产精品久久久久久久久久新婚 | 91精品视频在线免费观看| 91精品国产综合久久久久久蜜臀 | 无码人妻丰满熟妇区96| 日本国产在线播放| 欧美一级大片视频| 国产又黄又大又粗视频| 国产欧美韩日| av免费中文字幕| 久久人人九九| 久久久精品免费视频| 国产精品久久久久久久久久| 精品中文字幕在线观看| 久久99精品久久久久久噜噜| 亚洲一区二区三区乱码| 色一情一乱一伦一区二区三区| 青青草视频国产| 国产一区红桃视频| av无码久久久久久不卡网站| 国产激情视频一区| 久久久久久久久国产精品| 久久视频在线看| 久久国产精品偷| 亚洲成人网上| 欧美动漫一区二区| 国产美女精品在线观看| 国产脚交av在线一区二区| 日韩中文字幕在线视频| 色综合久久88色综合天天看泰| 午夜精品在线观看| 男人添女人下部高潮视频在观看| 国产噜噜噜噜噜久久久久久久久 | 国产一区二区在线视频播放| 91精品在线影院| 日韩在线中文字幕| 久久久久久国产精品三级玉女聊斋| 欧美一区二区大胆人体摄影专业网站| 男人添女人下部视频免费| 91久久久在线| 国产精品美女在线播放| 无码中文字幕色专区| 国产主播一区二区三区四区| 久久人人爽人人爽人人片av高清| 精品国产免费久久久久久尖叫| 日本久久中文字幕| 国产精品一二区| 国产精品嫩草在线观看| 亚洲精品高清视频| 男女午夜激情视频| 91成人免费观看| 国产精品吊钟奶在线| 日韩av黄色网址| 国产免费黄视频| 久久久成人av| 欧美日韩国产成人| 国产精品久久久久9999| 中文字幕av日韩精品| 国产在线久久久| 日韩亚洲欧美精品| 性高湖久久久久久久久aaaaa| 国产精品国产精品国产专区不卡 | 亚洲一区二区三区色|