Handshaking lemma
In graph theory, a branch of mathematics, the handshaking lemma is the statement that every finite undirected graph has an even number of vertices with odd degree (the number of edges touching the vertex).
Railroad is one of the challenges that can be solved using this lemma.
Solution is if 4X +3Y ≡ 0 mod 2, then possible. Otherwise, it is impossible.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int x = sc.nextInt(); | |
int y = sc.nextInt(); | |
int res = 4 * x + 3 * y; | |
if (res % 2 != 0) { | |
System.out.println("impossible"); | |
} else { | |
System.out.println("possible"); | |
} | |
sc.close(); | |
} | |
} |
And it can be reduced to just checking whether Y is even or odd.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int x = sc.nextInt(); | |
int y = sc.nextInt(); | |
if (y % 2 != 0) { | |
System.out.println("impossible"); | |
} else { | |
System.out.println("possible"); | |
} | |
sc.close(); | |
} | |
} |
Comments
Post a Comment