Skip to content

Instantly share code, notes, and snippets.

@jO-Osko
Created April 19, 2020 11:02
Show Gist options
  • Save jO-Osko/53298b73e0204edae4255905e19d2bc0 to your computer and use it in GitHub Desktop.
Save jO-Osko/53298b73e0204edae4255905e19d2bc0 to your computer and use it in GitHub Desktop.
Priprave IOI
digraph G {
//rankdir="LR";
subgraph cluster_0{
style=filled;
color=lightgray;
//1;
}
subgraph cluster_1{
style=filled;
color=lightgray;
//2;
}
subgraph cluster_2{
style=filled;
//color=lightgray;
color=white;
style=filled;
color=lightgray;
//3 4 5 6 7;
}
1[xlabel="1,1", style=filled, fillcolor=yellow]
2[xlabel="2,2", style=filled, fillcolor=yellow]
3[xlabel="3,3", style=filled, fillcolor=green]
4[xlabel="4,3", style=filled, fillcolor=gray]
5[xlabel="5,3", style=filled, fillcolor=gray]
6[xlabel="6,4", style=filled, fillcolor=gray]
7[xlabel="7,4", style=filled, fillcolor=gray]
1 -> 2;
2 -> 3 -> 4 -> 5 -> 3;
4 -> 6 -> 7 -> 4;
stack[label="1,2,3,4,5,6,7", shape=rectangle]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment