Peggy Posted September 22, 2015 Share Posted September 22, 2015 (edited) [Rule]1. A start would be to get this excel spreadsheet, people called the group, a total divided into two groups: Mary, Sam2. Every person eating a fruit, but each times can not eat the same fruit 3. Last eaten fruit can not eat4. so be scheduledPicture:1. The first time Mary eat Apple, Sam can not eat Apple, so Sam chose to eat tomato 2. The second Mary eat Banana, Sam choose to eat Apple 3. Third Mary eat tomato, Sam for the first time has been eaten tomato, so Sam chose to eat Strawberry 4. Fourth Mary eat watermelon, Sam all eat so do not choose 5. Fifth Mary eat Strawberry, Sam all eat so do not choose Currently only think of using arrary and for next loop to write it, but I do not know to write Detailing, want to please help me, thank you very much !!!! Thank you! Edited October 27, 2015 by markwu Link to comment Share on other sites More sharing options...
mLipok Posted September 22, 2015 Share Posted September 22, 2015 start with this:_Excel_Open() Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted September 22, 2015 Moderators Share Posted September 22, 2015 peggy,I cannot help with the Excel bit, but here is some logic to help you with the scheduling part:expandcollapse popup#include <Array.au3> Global $aArray[8][7] ; Arrays of group and choices Global $aMaryChoice[] = ["Mary", "Apple", "Banana", "Tomato", "Watermelon", "Strawberry"] Global $aSamChoice[] = ["Sam", "Apple", "Tomato", "Strawberry"] ; Fill array with choices and group For $i = 0 To UBound($aMaryChoice) - 2 $aArray[$i][0] = $aMaryChoice[$i + 1] $aArray[$i][1] = $aMaryChoice[0] Next For $j = $i To $i + UBound($aSamChoice) - 2 $aArray[$j][0] = $aSamChoice[$j - $i + 1] $aArray[$j][1] = $aSamChoice[0] Next ; And here it is _ArrayDisplay($aArray, "Initial fill", Default, 8, Default, "Fruit|Name|1|2|3|4|5") ; Make choices for next 5 turns For $i = 1 To 5 ; Mary chooses randomly Do $iMarySelection = Random(1, UBound($aMaryChoice) - 1, 1) ; Check that choice has not already been made - choice is empty if already chosen Until $aMaryChoice[$iMarySelection] <> "" ; Get choice content $sMarySelection = $aMaryChoice[$iMarySelection] ; Clear choice to p[revent repeat $aMaryChoice[$iMarySelection] = "" ; Mark choice $aArray[$iMarySelection - 1][$i + 1] = "M" ; if Sam still has a choice If $i <= UBound($aSamChoice) - 1 Then ; Sam chooses randomly Do $iSamSelection = Random(1, UBound($aSamChoice) - 1, 1) ; Check selection is still available AND that is not the same as Mary Until $aSamChoice[$iSamSelection] <> "" And $aSamChoice[$iSamSelection] <> $sMarySelection ; Clear choice to prevent repeat $aSamChoice[$iSamSelection] = "" ; Mark choice $aArray[$iSamSelection - 1 + UBound($aMaryChoice) - 1][$i + 1] = "S" EndIf ; Here is what was chosen in this round _ArrayDisplay($aArray, "Choice " & $i, Default, 8, Default, "Fruit|Name|1|2|3|4|5") NextI hope it helps.M23 Peggy 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Peggy Posted September 23, 2015 Author Share Posted September 23, 2015 Hi Melba23,Thanks for your help very much!!!!If I want to add new name and Fruit,how can i to do? Thank you very much!!!! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted September 23, 2015 Moderators Share Posted September 23, 2015 peggy,That was fun! Here is a script which takes any number of groups and choices and tries t fit them together.The key is the $aData array - you need a separate row for each group which holds the group name, number of choices and actual choices as shown. The groups are in priority order - the lower down the list then the more chance they will not get a valid choice (but see below). Once you have entered the groups and their choices just let it rip!expandcollapse popup#include <Array.au3> ; Array of groups (in priority order) and possible choices Global $aData[][] = [["Mary", 5, "Apple", "Banana", "Tomato", "Watermelon", "Strawberry"], _ ["Sam", 3, "Apple", "Tomato", "Strawberry"], _ ["Jack", 3, "Banana", "Watermelon", "Strawberry"]] ; Determine the size of the display Global $iRows = 0 For $i = 0 To UBound($aData) - 1 $iRows += $aData[$i][1] Next Global $iCols = UBound($aData, $UBOUND_COLUMNS) ; Create array to hold display Global $aDisplay[$iRows][$iCols] ; Create array to hold Start row data and choices left for each group Global $aGroupInfo[UBound($aData)][2] = [[0]] $iRow = 0 For $i = 0 To UBound($aData) - 1 If $i Then $iRow += $aData[$i - 1][1] $aGroupInfo[$i][0] = $iRow EndIf $aGroupInfo[$i][1] = $aData[$i][1] Next ; Fill array with choices and group $iRow = 0 For $i = 0 To UBound($aData) - 1 For $j = 2 To $aData[$i][1] + 1 $aDisplay[$iRow][0] = $aData[$i][$j] $aDisplay[$iRow][1] = $aData[$i][0] $iRow += 1 Next Next ; Run through choices For $iChoice = 2 To $iCols - 1 ; Row of display to fill $iRow = 0 ; Choices already made $sChoicesMade = ":" ; For each group in turn For $iGroup = 0 To UBound($aData) - 1 ; Check choices still available If $aGroupInfo[$iGroup][1] Then ; Set counter to check for cases where no choices are unique $iCounter = 0 While 1 ; Choose randomly within the group choices $iSelection = Random(2, $iCols - 1, 1) ; Increase counter and check for infinite loop $iCounter += 1 If $iCounter > ($iCols - 1) * 10 Then ; No available unique choice for this group ExitLoop EndIf ; Check selection is still available $sSelection = $aData[$iGroup][$iSelection] If $sSelection <> "" Then ; Check that it has not already been chosen If StringInStr($sChoicesMade, ":" & $sSelection & ":") = 0 Then ; Unique choice so add to selections made $sChoicesMade &= $sSelection & ":" ; And add to display $aDisplay[$aGroupInfo[$iGroup][0] + $iSelection - 2][$iChoice] = $sSelection ; Clear from data to prevent repeat $aData[$iGroup][$iSelection] = "" ; And reduce count of remaining choices $aGroupInfo[$iGroup][1] -= 1 ; And continue with next group ExitLoop EndIf EndIf WEnd EndIf Next NextThe rather clever little wrinkle (even if I say it myself) is that when there are no valid choices left for a group in a particular round, they can keep their option ready for another round when they might be able to use it. Try running it a few times and you will see the lower groups not getting a selection in column 4 (third choice) but using the value in a later column .M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Peggy Posted October 6, 2015 Author Share Posted October 6, 2015 Sorry, I was quite busy some time ago.Thanks for your help!!This Help me solve a large problem, really thank you for your help!!!!!! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted October 6, 2015 Moderators Share Posted October 6, 2015 peggy,Glad I could help - it was a fun problem to solve.M23 Peggy 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now