quiz 6

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

what does polynomial-time mean

O(n^k)

2
New cards

true or false: problems that can be solved in polynomial time belong to NP complexity class

true

3
New cards

if a problem’s solutions can be verified in __, the complexity class is NP (nondeterministic polynomial class)

polynomial time

4
New cards

true or false: All problems in P are not in NP

false

5
New cards

algorithmica is __

P=NP

6
New cards

heuristica is

NP problems are hard in worst case but easy on average

7
New cards

pessiland is __

NP problems are hard in some case but easy on at least some

8
New cards

minicrypt is __

one-way functions exist but we do not have public key cryptography

9
New cards

cryptomania is

public-key cryptography is possible

10
New cards

determining whether a graph has a hamiltonian cycle is __

np-complete

11
New cards

on the graph on the quiz, what did the edges mean

showing each NPC problem in the graph can be reduced to its parent

12
New cards

what does the spawn keyword in parallelization mean

allows a function call to run in parallel, but it does not have to run in parallel

13
New cards

what decides if a function runs in parallel if the spawn keyword is used?

a scheduler

14
New cards

what does the sync keyword do

waits for spawned process to complete before the code continues

15
New cards

what is work

runtime with only one processor available

16
New cards

what is span

minimum amount of runtime required from the start to end of program execution when there is no limit on the number of processors available

17
New cards

what is work law

span >= work / number of processors

18
New cards

what is span law

span >= work unlimited processors available

19
New cards

how do you calculate parallelism using work and span?

work / span

20
New cards

what is a maximum bipartite matching

matching with a maximum number of edges