Difference between revisions of "2001 PMWC Problems"

(Problem I11)
(Problem I14)
 
Line 123: Line 123:
 
== Problem I14 ==
 
== Problem I14 ==
  
 +
<asy>
 +
size(9cm);
 +
real horiscale=11/8;
 +
for(int i = 0; i < 4; ++i)
 +
{
 +
for(int j = 0; j < 3; ++j)
 +
{
 +
draw((i*horiscale,j)--((i+1)*horiscale,j)--((i+1)*horiscale,j+1)--(i*horiscale,j+1)--cycle);
 +
if((i == 0 && j == 1) || (j == 0 && i > 0) || (i == 2 && j == 2))
 +
{
 +
label( "$\bullet$",((i*horiscale,j)+((i+1)*horiscale,j)+((i+1)*horiscale,j+1)+(i*horiscale,j+1))/4 );
 +
}
 +
else
 +
{
 +
label( "$\circ$",((i*horiscale,j)+((i+1)*horiscale,j)+((i+1)*horiscale,j+1)+(i*horiscale,j+1))/4 );
 +
}
 +
}
 +
}
 +
draw(origin--(-1.3*3,0)--(-1.3*3,3)--(0,3)--cycle);
 +
label("Hotel",(-1.3*3/2,5/2));
 +
label("This side up",(-1.3*3/2,3/2));
 +
label("(This is an example of one possibility)", ((-1.3*3+1.3*4)/2,-.4),fontsize(11));
 +
//Credit to dasobson for the diagram</asy>
 
[[2001 PMWC Problems/Problem I14|Solution]]
 
[[2001 PMWC Problems/Problem I14|Solution]]
  

Latest revision as of 21:24, 21 April 2014