Studying at the University of Verona
Here you can find information on the organisational aspects of the Programme, lecture timetables, learning activities and useful contact details for your time at the University, from enrolment to graduation.
Academic calendar
The academic calendar shows the deadlines and scheduled events that are relevant to students, teaching and technical-administrative staff of the University. Public holidays and University closures are also indicated. The academic year normally begins on 1 October each year and ends on 30 September of the following year.
Course calendar
The Academic Calendar sets out the degree programme lecture and exam timetables, as well as the relevant university closure dates..
Period | From | To |
---|---|---|
I semestre | Oct 1, 2012 | Jan 31, 2013 |
II semestre | Mar 4, 2013 | Jun 14, 2013 |
Session | From | To |
---|---|---|
Sessione straordinaria | Feb 4, 2013 | Feb 28, 2013 |
Sessione estiva | Jun 17, 2013 | Jul 31, 2013 |
Sessione autunnale | Sep 2, 2013 | Sep 30, 2013 |
Session | From | To |
---|---|---|
Sessione autunnale | Oct 18, 2012 | Oct 18, 2012 |
Sessione straordinaria | Dec 12, 2012 | Dec 12, 2012 |
Sessione invernale | Mar 21, 2013 | Mar 21, 2013 |
Sessione estiva | Jul 16, 2013 | Jul 16, 2013 |
Period | From | To |
---|---|---|
Festa di Ognissanti | Nov 1, 2012 | Nov 1, 2012 |
Festa dell'Immacolata Concezione | Dec 8, 2012 | Dec 8, 2012 |
Vacanze di Natale | Dec 21, 2012 | Jan 6, 2013 |
Vacanze di Pasqua | Mar 29, 2013 | Apr 2, 2013 |
Festa della Liberazione | Apr 25, 2013 | Apr 25, 2013 |
Festa del Lavoro | May 1, 2013 | May 1, 2013 |
Festa del Santo Patrono di Verona - San Zeno | May 21, 2013 | May 21, 2013 |
Festa della Repubblica | Jun 2, 2013 | Jun 2, 2013 |
Vacanze estive | Aug 9, 2013 | Aug 16, 2013 |
Exam calendar
Exam dates and rounds are managed by the relevant Science and Engineering Teaching and Student Services Unit.
To view all the exam sessions available, please use the Exam dashboard on ESSE3.
If you forgot your login details or have problems logging in, please contact the relevant IT HelpDesk, or check the login details recovery web page.
Academic staff
Study Plan
The Study Plan includes all modules, teaching and learning activities that each student will need to undertake during their time at the University. Please select your Study Plan based on your enrolment year.
Modules | Credits | TAF | SSD |
---|
Modules | Credits | TAF | SSD |
---|
1° Year
Modules | Credits | TAF | SSD |
---|
2° Year activated in the A.Y. 2013/2014
Modules | Credits | TAF | SSD |
---|
Modules | Credits | TAF | SSD |
---|
Legend | Type of training activity (TTA)
TAF (Type of Educational Activity) All courses and activities are classified into different types of educational activities, indicated by a letter.
Algorithms - COMPLESSITÀ (2012/2013)
Teaching code
4S02709
Teacher
Credits
6
Language
Italian
Scientific Disciplinary Sector (SSD)
ING-INF/05 - INFORMATION PROCESSING SYSTEMS
Period
I semestre dal Oct 1, 2012 al Jan 31, 2013.
Learning outcomes
The goal of this module is to introduce students to computational complexity theory in general, to the NP-completeness theory in detail and to computational analysis of problems with respect to their approximability.
Recommended Prerequisite
------------------------
To attend the course lessons in a productive way, a student should be confident with the following concepts:
1. Basic data structures as list, stack, queue, tree, heap.
2. Graph representation and fundamental graph algorithms:
2.1 Graph visit: BFS, DFS.
2.2 Topological ordering. Connected component.
2.3 Minimal spanning tree. Kruskal and Prim algorithm.
2.4 Single-source shortest path: Dijkstra algorithm and Bellman-Ford one.
2.5 All-pairs shortest path: Floyd-Warshall algorithm and Johnson one.
2.6 Max flow: Ford-Fulkerson algorithm.
A recommended book to revise the above concepts is ``Introduction to Algorithms" di T. H. Cormen, C. E. Leiserson, R. L. Rivest e C. Stein (3 ed.).
Program
Introduction.
Computational model concept, computational resource, efficient algorithm and tractable problem.
Computational models
Turing Machine (MdT): definition, behavior, configuration, production and computation concepts. MdT examples. MdT and languages: the difference between accepting and deciding a language. MdT extension: multi-tape MdT (k-MdT)
Time Complexity
Time computational resource. Computational class TIME(). Theorem about polynomial relation between k-MdT computations and MdT ones (sketch of proof).
Introduction to Random Access Machine (RAM) computational model: configuration, program and computation concepts. RAM: computation time by uniform cost criterion and by logarithmic cost one. Example of a RAM program that determines the product of two integers.
Theorem about simulation cost of a MdT by a RAM.
Theorem about simulation cost of a RAM program by a MdT.
Sequential Computation Thesis and its consequences.
Linear Speed-up Theorem and its consequences.
P Computational Class.
Problems in P: PATH, MAX FLOW, PERFECT MATCHING.
Extension of MdT: non-deterministic MdT (NMdT).
Time resource for k-NMdT. NTIME() computational class.
Example of non-deterministic algorithm computable by a NMdT: algorithm for Satisfiability (SAT).
Relation between MdT and NMdT.
NP Computational Class.
Relation between P and NP. Example of a problem into NP: Travel-salesman Problem (TSP).
An alternative characterization of NP: polynomial verifiers.
EXP Computation Class.
Space Complexity.
Space complexity concept. MdT with I/O. Computational Classes: SPACE() and NSPACE().
Compression Theorem.
Computational Classes: L and NL.
Example of problems: PALINDROME ∈ L and PATH ∈ NL.
Theorems about relations between space and time for a MdT with I/O.
Relations betwee complexity classes.
Proper function concept and example of proper functions.
Borodin Gap Theorem.
Reachability method. Theorem about space-time classes: NTIME(f(n)) ⊆ SPACE(f(n)), NSPACE(f(n)) ⊆ TIME(k(log n+f(n))).
Universal MdT.
The Hf set.
Lemma 1 and 2 for time hierarchy theorem.
Time Hierarchy Theorem: strict and no-strict versions.
P ⊂ EXP Corollary.
Space Hierarchy Theorem. L ⊂ PSPACE Corollary.
Savitch Theorem. SPACE(f(n))=SPACE(f(n)^2) corollary. PSPACE=NPSPACE Corollary.
Reductions and completeness.
Reduction concept and logarithmic space reduction. HAMILTON PATH ≤log SAT, PATH ≤log CIRCUIT VALUE, CIRCUIT SAT ≤log SAT.
Language completeness concept.
Closure concept with respect to reduction.
Class reduction of L, NL, P, NP, PSPACE and EXP.
Computation Table concept.
Theorem about P-completeness of CIRCUIT VALUE problem.
Cook Theorem: an alternative proof.
Gadget concept and completeness proof of: INDEPENDENT SET, CLIQUE, VERTEX COVER and others.
Approximation algorithms and approximate complexity classes.
Author | Title | Publishing house | Year | ISBN | Notes |
---|---|---|---|---|---|
Christos H. Papadimitriou | Computational complexity | Addison Wesley | 1994 | 0201530821 | |
S. Arora, B. Barak | Computational Complexity. A modern approach (Edizione 1) | Cambridge University Press | 2009 | 9780521424264 |
Examination Methods
The examination consists of a written test. The grade in this module is worth 1/3 of the grade in the Algorithms examination.
Type D and Type F activities
Documents and news
-
SE1 - Curriculum Sistemi Embedded: presentazione (Embedded systems: curriculum presentation) (pdf, it, 873 KB, 09/07/12)
-
SE2 - Curriculum Sistemi Embedded: formazione (Embedded Systems: programme) (pdf, it, 212 KB, 09/07/12)
-
SE3 - Curriculum Sistemi Embedded: ricerca avanzata (Embedded Systems: research) (pdf, it, 641 KB, 09/07/12)
-
SE4 - Curriculum Sistemi Embedded: esempi reali (Embedded Systems: practical cases) (pdf, it, 1046 KB, 09/07/12)
-
SE5 - Curriculum Sistemi Embedded: relazioni aziendali (Embedded Systems: cooperations with companies) (pdf, it, 1941 KB, 09/07/12)
-
SWE&S1 - Curriculum Ingegneria del Software e sicurezza: presentazione (Ingegneria del Software e sicurezza: curriculum presentation) (pdf, it, 11261 KB, 09/07/12)
-
SWE&S2 - Curriculum Ingegneria del Software e sicurezza: ricerca avanzata (Ingegneria del Software e sicurezza: research) (pdf, it, 4044 KB, 09/07/12)
-
SWE&S3 - Curriculum Ingegneria del Software e sicurezza: relazioni aziendali (Ingegneria del Software e sicurezza: collaborations with companies) (pdf, it, 2764 KB, 09/07/12)
-
VC1 - Curriculum Visual Computing: didattica (pdf, it, 5505 KB, 24/09/12)
-
VC2 - Curriculum Visual Computing: ricerca (pdf, it, 3299 KB, 09/07/12)
-
VC3 - Curriculum Visual Computing: aziende (pdf, it, 1907 KB, 09/07/12)
Modules not yet included
Career prospects
Module/Programme news
News for students
There you will find information, resources and services useful during your time at the University (Student’s exam record, your study plan on ESSE3, Distance Learning courses, university email account, office forms, administrative procedures, etc.). You can log into MyUnivr with your GIA login details: only in this way will you be able to receive notification of all the notices from your teachers and your secretariat via email and soon also via the Univr app.
Graduation
Deadlines and administrative fulfilments
For deadlines, administrative fulfilments and notices on graduation sessions, please refer to the Graduation Sessions - Science and Engineering service.
Need to activate a thesis internship
For thesis-related internships, it is not always necessary to activate an internship through the Internship Office. For further information, please consult the dedicated document, which can be found in the 'Documents' section of the Internships and work orientation - Science e Engineering service.
Final examination regulations
List of theses and work experience proposals
Attendance
As stated in the Teaching Regulations for the A.Y. 2022/2023, attendance at the course of study is not mandatory.
Please refer to the Crisis Unit's latest updates for the mode of teaching.