We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b79e216 commit fd6afb9Copy full SHA for fd6afb9
6/dijkstra/Main.java
@@ -16,6 +16,9 @@ public int compareTo(Node arg0) {
16
return this.W - arg0.W; // 오름차순 정렬
17
}
18
19
+/**
20
+ * BOJ 1753 최단경로
21
+ */
22
public class Main{
23
public static void main(String[] args) throws IOException{
24
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
0 commit comments