Title: IEEEXtreme 24 Hour Programming Challenge Post by: Καλλισθένης on January 20, 2008, 13:35:46 pm (http://www.ieee.org/portal/cms_docs_iportals/iportals/membership/students/scholarshipsawardscontests/Xtreme2.gif) Στο ακόλουθο λινκ θα βρείτε περισσότερες πληροφορίες για τον παραπάνω διαγωνισμό προγραμματισμού του ΙΕΕΕ http://www.ieee.org/web/membership/students/scholarshipsawardscontests/ieeextreme.html Αν υπάρχει κάποια ομάδα φοιτητών που ενδιαφέρεται να πάρει μέρος, ας επικοινωνήσει με το φοιτητικό μας παράρτημα (στο sb.auth@ieee.org ή στο ieee_auth_sb@ee.auth.gr) για να τους βοηθήσουμε με τα διαδικαστικά. Εκ μέρους του φοιτητικού παραρτήματος ΙΕΕΕ Α.Π.Θ. Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Nessa NetMonster on January 20, 2008, 15:11:22 pm C και Java; Μέσα! :D
Ποιος ψήνεται να κάνουμε μια ομάδα; Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on January 20, 2008, 17:18:38 pm Μέσα!!
Τους έχουμε όλους, χαλαρά! :D Να περιμένουμε μήπως δηλώσει κανένας τρίτος και μιλάμε με το παράρτημα Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on January 20, 2008, 17:25:52 pm IEEE Xtreme 2006 Sample Problems
Below are sample problems used in the IEEEXtreme 2006 challenge. Cosine simmilarities Value rank: 40 Simple matching, Jaccard, Tanimoto and cosine similarities are statistics used for comparing the similarity and diversity of sample sets. They are used in data mining for tasks ranging from classifying diverse chemical compounds to text processing and searching in large databases. The sample sets for comparison are represented with vectors of the attributes we want to compare. Given 2 vectors of attributes, A and B, the cosine similarity, θ, can be calculated using the dot product and the magnitudes as: Equation θ=arccos(AB / |A||B|) Since the angle, θ, is in the range of [0,π], the resulting similarity will yield the value of π as meaning exactly opposite, π / 2 meaning independent, 0 meaning exactly the same, with in between values indicating intermediate similarities or dissimilarities. Your task is to write a program that receives A and B, attribute vectors, and outputs the cosine similarity of those vectors A and B will be entered as parameters in the command line, as square-brackets-delimited, comma-separated lists of integer values, separated by a space. The output should be a single line containing the cosine simmilarity value with 4 decimals of precision, or the word ERROR if any of the entries is not valid or the operation cannot be performed examples > program [3,2,0,5,0,0,0,2,0,0] [1,0,0,0,0,0,0,1,0,2] 1.2503 > program [6,5,5] [1,1] Error > program [,] [] Error Telephone keyboard input recognition Value rank: 60 On a standard telephone, the numbers 1-9 can be used to correspond to a set of letters: 1: space 2: ABC 3: DEF 4: GHI 5: JKL 6: MNO 7: PQRS 8: TUV 9: WXYZ Using the keypad, you can 'spell' words by entering the digits that correspond to each letter of the word. For example, 'words' is spelled 96737. For this problem, we are given a dictionary file called with no more than 100,000 words, one per line, sorted in alphabetical order. Each word is comprised of no more than 18 characters, all lowercase letters from the phone keypad. Here is a (very short!) example of a dictionary file we will use in the examples: Your program should read a string of digits (from 2 to 9, not using 1 as space) from the console and find the words in the dictionary whose spellings contain that series of consecutive digits anywhere within the word. • If there are no matches, print the string 'No matches' • If there is one match, print the matching word. • If there are n>1 matches, print the string 'n matches:' followed by the matching words, one per line. NOTE: To make it easier to read the examples below, these are the 'spellings' of the words in words.txt, in digits: cappuccino: 2277822466 chocolate: 246265283 cinnamon: 24662666 coffee: 263333 latte: 52883 vanilla: 8264554 examples contents of words.txt: cappuccino chocolate cinnamon coffee latte vanilla > program words.txt 22222 No matches > program words.txt 3333 coffee > program words.txt 626 2 matches: chocolate cinnamon Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: stratis on January 20, 2008, 20:10:35 pm Αν και από τις 02.01 μέχρι τις 02.01 την άλλη μέρα θα είναι πολύ κάψιμο, ακούγεται ενδιαφέρον... ::)
Υπάρχει καθηγητής - μέλος της ΙΕΕΕ που θα αντέξει να μας επιτηρήσει? :P Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on January 20, 2008, 20:50:49 pm Αν και από τις 02.01 μέχρι τις 02.01 την άλλη μέρα θα είναι πολύ κάψιμο, ακούγεται ενδιαφέρον... ::) Υπάρχει καθηγητής - μέλος της ΙΕΕΕ που θα αντέξει να μας επιτηρήσει? :P Λεπτομέρειες! Για το αν θα αντέξουμε εμείς... θα μπορούσαμε να κοιμόμαστε με βάρδιες ::) Επικοινωνούμε με το παράρτημα λοιπόν; Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Nessa NetMonster on January 20, 2008, 22:06:10 pm ^hello^
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: stratis on January 20, 2008, 22:38:47 pm Οκ, επικοινωνούμε... :)
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on January 21, 2008, 00:34:08 am Έστειλα mail και περιμένω απάντηση
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: digitally cursed on January 22, 2008, 20:35:46 pm Κατι ακουστηκε για μια ομαδα μονο... Αληθευει?
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on January 23, 2008, 13:05:06 pm Μπορεί και να διέδωσα εγώ αυτή τη φήμη...
Αλλά δεν πρέπει να ισχύει. Στο mail που μου απάντησαν πρότειναν να γίνει συνάντηση 18:30 την Παρασκευή για όποιους ενδιαφέρονται. Αλλά δεν ξέρω αν είναι βέβαιο και περιμένω καινούρια απάντηση να το επιβεβαιώσω. Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: rainmaker on January 26, 2008, 23:08:45 pm Ρε παιδιά, εγώ έστειλα 2 e-mail και δεν μου έχουν απαντήσει. Έγινε τελικά η συνάντηση;
Title: deleted Post by: BOBoMASTORAS on January 27, 2008, 00:02:50 am deleted
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Καμένος on January 29, 2008, 12:18:49 pm Για όσους ενδιαφέρονται, η συναντηση θα γίνει την Παρασκευή στις 6.30 στην αίθουσα 2
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Καλλισθένης on January 30, 2008, 15:26:15 pm Την Παρασκευή 01/02/2008 και ώρα 18:30 θα γίνει στην αίθουσα 2 συνάντηση σχετικά με το διαγωνισμό προγραμματισμού IEEEXtreme (http://ieeextreme.org/)
Εκ μέρους του φοιτητικού παραρτήματος ΙΕΕΕ του Α.Π.Θ. Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Junior on February 02, 2008, 01:10:18 am Τι ειπώθηκε σήμερα; Δεν μπόρεσα να πάω
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Nessa NetMonster on February 02, 2008, 01:19:32 am Θα πρέπει να γραφτείς στην ΙΕΕΕ και από εκεί και πέρα θα βγει ανακοίνωση στο site τους για το διαγωνισμό.
Title: Re: IEEEXtreme 24 Hour Programming Challenge Post by: Nessa NetMonster on February 02, 2008, 01:26:43 am Α κι επίσης ειπώθηκε ότι πρέπει κάποιος να αναλάβει να θέσει το θέμα στη συνέλευση τμήματος για να πάρουμε έγκριση για τη χρήση της Βεργίνας και να αναλάβει κάποιος καθηγητής το ρόλο του επιβλέποντα, έστω και τυπικά.
|