Baking CupcakesProblem code: MUFFINS |
All submissions for this problem are available.
The Chef is planning on serving cupcakes for dessert. However, time is running out and the Chef has only enough time to bake one batch. Thankfully, the cupcake baking tin the Chef plans on using has barely enough spaces to ensure each guest receives one cupcake.
To the Chef's dismay, some of the spaces in the cupcake tin are too close to each other. If cupcake batter is placed in two such spaces then they will bake together and neither will have the aesthetically pleasing round shape one expects from gourmet cupcakes.
The Chef wants to impress his guests with this dessert, so he wants all cupcakes to be perfectly round. You must determine if it is possible for the desired number of cupcakes to be baked without any two baking in to each other.
Input
The first line consists of a single integer T ? 30 denoting the number of test cases to follow. Each test case begins with a single line consisting of three integers n,m, and g. Here, n is the number of spaces in the cupcake tin, m is the number of conflicting pairs of spaces in the tin, and g is the number of guests. Following this line is m lines describing the conflicting pairs. Each line consists of two distinct integers i and j, both between 0 and n-1. This means spaces i and j are conflicting so batter may only be placed in at most one of them.
The bounds are 1 ? n ? 1,000, 1 ? m ? 20,000, and 0 ? g ? n. Since the cupcake tin has barely more spaces than guests (if any), then we also have n-g ? 15.
Output
The output for each test case consists of a single line containing "Possible" if the Chef can bake all cupcakes perfectly round or "Impossible" if the Chef must settle for some cupcakes being imperfect.
Example
Input: 2 3 2 2 0 1 1 2 3 3 2 0 1 1 2 2 0 Output: Possible Impossible
| Author: | friggstad |
| Date Added: | 9-08-2010 |
| Time Limit: | 3 sec |
| Source Limit: | 50000 Bytes |
| Languages: | ADA, ASM, BASH, BF, C, C99 strict, CAML, CLOJ, CLPS, CPP 4.0.0-8, CPP 4.3.2, D, ERL, F#, FORT, GO, HASK, ICK, ICON, JAR, JAVA, JS, LISP clisp, LISP sbcl, LUA, NEM, NICE, PAS fpc, PAS gpc, PERL, PERL6, PHP, PIKE, PRLG, PYTH, PYTH 3.1.2, RUBY, SCALA, SCM guile, SCM qobi, ST, TEXT, WSPC |
Comments

Fetching successful submissions

guys i am done with code it
guys i am done with code
it was compiles in turbo c++
but codechef app isnt acceptin syntax from dt format pls help me out fast
Please
Please read
http://www.codechef.com/wiki/faq#Why_do_I_get_a_compile_error
what is cupcake baking tin ?
what is cupcake baking tin ?
@iman: A cupcake baking tin
@iman: A cupcake baking tin is a large piece of metal with a number of round indentations that can hold batter. When filled with batter and placed in an appropriately hot oven for an appropriate amount of time, a delicious treat emerges, which is cooled and often covered with frosting before serving (and makes a far better treat than muffins).
Nice problem, learnt
Nice problem, learnt something new - how cupcakes is baked :) .
Does the problem not reduce
Does the problem not reduce to finding an independent set of size at least G?