• <button id="ecio8"></button>
  • <li id="ecio8"></li>
    <s id="ecio8"></s>
    <dl id="ecio8"></dl>
    <center id="ecio8"><noscript id="ecio8"></noscript></center>
    • <table id="ecio8"><source id="ecio8"></source></table>
      <bdo id="ecio8"></bdo>
    • <s id="ecio8"></s>

      代寫COMP3411/9814 Bridge Puzzle編程代做

      時間:2024-03-13  來源:  作者: 我要糾錯



      COMP3411/9814 Project 1
       1/4
      COMP3411/9814 Artificial Intelligence
      Term 1, 2024
      Assignment 1 – Bridge Puzzle
      Due: Friday 15 March, 10pm
      Marks: 12% of final assessment
      Specification
      This project is based on a popular puzzle, variously known as "Hashiwokakero",
      "Hashi" or "Bridges". You will need to write a program to solve this puzzle, and
      provide a brief description of the algorithm and data structures you have used. The
      input to your program will be a rectangular array of numbers and dots, for example:
      .1...6...7....4.4.2.
      ..4.2..2...3.8...6.2
      .....2..............
      5.c.7..a.a..5.6..8.5
      .............2......
      ...5...9.a..8.b.8.4.
      4.5................3
      ....2..4..1.5...2...
      .2.7.4...7.2..5...3.
      ............4..3.1.2
      Each number represents an "island", while the dots represent the empty space (water)
      between the islands. Numbers larger than 9 are indicated by 'a' (10), 'b' (11) or 'c'
      (12). The aim is to connect all the islands with a network of bridges, satisfying these
      rules:
      1. all bridges must run horizontally or vertically
      2. bridges are not allowed to cross each other, or other islands
      3. there can be no more than three bridges connecting any pair of islands
      4. the total number of bridges connected to each island must be equal to the
      number on the island
      COMP3411/9814 Project 1
       2/4
      For example, after reading the 10-line input above, your program should produce this
      output:
      1---6EEE7====4=4=2
      4-2" 2 " 3E8EEE6 2
      # |2 " " " # "
      5EcE7EEaEa==5"6EE8=5
      " # " # #2# |
      " #5===9Ea--8=bE8E4|
      4=5# " # " # " |3
      #2==4 #1-5 # 2 |"
      2=7=4===7=2" 5===3"
      4==3-1 2
      Note that single bridges are indicated by the characters '-' or '|', pairs of bridges by
      '=' or '"' and triples by 'E' or '#', depending on whether they run horizontally or
      vertically. Water between bridges and islands is indicated by space characters ' '.
      In some cases, there may be many solutions, in which case your program should only
      print one solution. More details about the puzzle can be found on this Wikipedia
      page. Note, however, that our version allows up to 3 bridges instead of 2; also, we do
      not insist that the entire graph be connected.
      Tools
      An executable file called bridgen is provided in the tools directory which can be
      used to generate sample data of any specified size (type bridgen -help for details).
      Another executable called bridgecheck is also provided, to help you test the validity
      of your solutions (see FAQ for details).
      Questions
      At the top of your code, in a block of comments, you must provide a brief answer (one
      or two paragraphs) to this Question:
      Briefly describe how your program works, including any algorithms and data
      structures employed, and explain any design decisions you made along the way.
      Language Options
      You are free to write the code in a language of your choosing.
      If you write in C, C++, or another compiled languge, your program will be invoked
      by: ./hashi
      COMP3411/9814 Project 1
       3/4
      You should submit your source files (no object files) as well as a Makefile which,
      when invoked with the command make , will produce an executable called hashi
      If you write in Python, your program will be invoked by: ./hashi.py
      You should submit your .py files (including hashi.py ).
      The first line of your code must specify which version of Python you are using, e.g.
      #!/usr/bin/python3
      If you write in Java, your program will be invoked by: java Hashi
      You should submit your .java files (no .class files).
      The main file must be called Hashi.java
      If you wish to write in some language not covered by the above options, let us
      know and we will try to accommodate you.
      Regardless of the language, you are not allowed to use dedicated constraint
      programming packages like python-constraint , etc. You are expected to
      implement the search method(s) yourself.
      Submission
      You should submit by typing
      give cs3411 hashi ...
      Remember to include all necessary files in your submission (including the one with the
      answer to the Question).
      You can submit as many times as you like – later submissions will overwrite earlier
      ones. You can check that your submission has been received by using the following
      command:
      3411 classrun -check
      The submission deadline is Friday 15 March, 10 pm.
      5% penalty will be applied to the mark for every 24 hours late after the deadline, up to
      a maximum of 5 days (in accordance with UNSW policy).
      Additional information may be found in the FAQ and will be considered as part of the
      specification for the project.
      Questions relating to the project can also be posted to the Forums on WebCMS.
      If you have a question that has not already been answered on the FAQ or the Forums,
      you can email it to cs3411@cse.unsw.edu.au
      Assessment
      Your program will be tested on a series of sample inputs of successively increasing
      size and difficulty. There will be:
      6 marks for functionality (automarking)
      COMP3411/9814 Project 1
       4/4
      4 marks for your algorithm and implementation
      2 marks for answer to the Question
      You should always adhere to good coding practices and style. In general, a program
      that attempts a substantial part of the job but does that part correctly will receive
      more marks than one attempting to do the entire job but with many errors.
      Groups
      This assignment may be done individually, or in groups of two students. Groups are
      determined by an SMS field called pair1 . Every student has initially been assigned a
      unique pair1 which is "h" followed by their student ID number, e.g. h1234567 .
      1. If you plan to complete the assignment individually, you don't need to do
      anything (but, if you do create a group with only you as a member, that's ok too).
      2. If you wish to team up with someone, you should go to the WebCMS page and
      click on "Groups" in the left hand column, then click "Create". Click on the menu
      for "Group Type" and select "pair". After creating a group, click "Edit", search for
      the other member, and click "Add". WebCMS assigns a unique group ID to each
      group, in the form of "g" followed by six digits (e.g. g012345 ). We will
      periodically run a script to load these values into SMS.
      Plagiarism Policy
      Your program must be entirely your own work. In addition, soliciting another person
      (or an AI bot) to write code for you – either in person or through the Internet – is
      never permitted. Generally, the copying of code already available on the Internet is
      also forbidden. If you find some piece of "standard" code in a textbook, or on the
      Internet, which you would like to adapt and incorporate into your own assignment,
      you must email the lecturer in charge to ask if it is permissible to do so in the
      particular circumstances – in which case the source would have to be acknowledged
      in your submission, and you would need to demonstrate that you had done a
      substantial amount of work for the assignment yourself. Plagiarism detection software
      will be used to compare all submissions pairwise and serious penalties will be applied,
      particularly in the case of repeat offences.
      DO NOT COPY FROM OTHERS; DO NOT ALLOW ANYONE TO SEE YOUR CODE
      Please refer to the UNSW Policy on Academic Integrity and Plagiarism if you require
      further clarification on this matter.
      請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

      標簽:

      掃一掃在手機打開當前頁
    • 上一篇:代寫CISC221、Java/Python設計編程代做
    • 下一篇:代寫AIML 2023-2024 Coursework
    • 無相關信息
      昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲
      油炸竹蟲
      酸筍煮魚(雞)
      酸筍煮魚(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚
      香茅草烤魚
      檸檬烤魚
      檸檬烤魚
      昆明西山國家級風景名勝區
      昆明西山國家級風景名勝區
      昆明旅游索道攻略
      昆明旅游索道攻略
    • 高仿包包訂製 幣安官網下載

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

      Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
      ICP備06013414號-3 公安備 42010502001045

      欧美成人免费全部观看天天性色,欧美日韩视频一区三区二区,欧洲美女与动性zozozo,久久久国产99久久国产一
    • <button id="ecio8"></button>
    • <li id="ecio8"></li>
      <s id="ecio8"></s>
      <dl id="ecio8"></dl>
      <center id="ecio8"><noscript id="ecio8"></noscript></center>
      • <table id="ecio8"><source id="ecio8"></source></table>
        <bdo id="ecio8"></bdo>
      • <s id="ecio8"></s>
        主站蜘蛛池模板: 又粗又硬又爽的三级视频| 欧美又黄又嫩大片a级| 最近中文字幕免费mv视频7| 国产精品永久免费视频| 亚洲精品中文字幕无码av| free性video西欧极品| 足本玉蒲团在线观看| 日本高清免费一本视频在线观看| 城中村找个白皙丰满妇女在线播放 | 亚洲人成7777影视在线观看| 97人洗澡人人澡人人爽人人模 | 欧美xxxx喷水| 特级毛片a级毛片在线播放www| 日本一区二区三区欧美在线观看| 国产偷窥女洗浴在线观看| 久久大香伊蕉在人线国产h| 91av电影在线观看| 精品不卡一区二区| 日本xxxwww| 国产欧美综合一区二区| 人人爽人人澡人人高潮| a一级毛片免费高清在线| 精品人妻一区二区三区四区在线| 日本在线色视频| 国产成人精品免高潮在线观看| 久久综合狠狠综合久久97色| 4虎1515hh永久免费| 欧美两性人xxxx高清免费| 国内精品久久久久国产盗摄| 亚洲日韩乱码久久久久久| xxxwww欧美性| 法国性经典xxxxhd| 国产精品免费综合一区视频| 伊人久久综合精品无码AV专区| 中文字幕免费在线看| 黄色免费一级片| 无码欧精品亚洲日韩一区| 国产午夜福利在线观看红一片| 丰满少妇大力进入| 男人的肌肌捅女人的肌肌| 国产精品视频第一区二区三区|