blob: 8a8c120a1fd3348a426fe4ae81b34c4e73d984a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<level title="Maximal Eulerian Cycle" description="Add as many edges as possible while still having an Eulerian cycle" objective="+1 point per edge, +3 points per edge in cycle"/>
<global-vertex-protections protect="acd"/>
<global-edge-protections protect="c"/>
<colors>
<color color="#FF0000" name="red"/>
</colors>
<graph>
<vertex x="200" y="450" id="l"/>
<vertex x="300" y="400" id="top-l"/>
<vertex x="400" y="350" id="top-m"/>
<vertex x="500" y="400" id="top-r"/>
<vertex x="300" y="500" id="bot-l"/>
<vertex x="400" y="550" id="bot-m"/>
<vertex x="500" y="500" id="bot-r"/>
<vertex x="600" y="450" id="r"/>
</graph>
<rules/>
<cycle points="0">
<edge color="any" op="+" val="3"/>
</cycle>
<values>
<op id="points" op="-" val1="E" val2="20"/>
<var id="objective" val="44"/>
</values>
|