結果
問題 | No.1817 Reversed Edges |
ユーザー | kusagame12 |
提出日時 | 2023-11-16 18:42:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,889 ms / 2,000 ms |
コード長 | 3,670 bytes |
コンパイル時間 | 2,636 ms |
コンパイル使用メモリ | 79,520 KB |
実行使用メモリ | 101,936 KB |
最終ジャッジ日時 | 2024-09-26 05:13:36 |
合計ジャッジ時間 | 36,623 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
41,184 KB |
testcase_01 | AC | 138 ms
41,156 KB |
testcase_02 | AC | 143 ms
41,120 KB |
testcase_03 | AC | 146 ms
41,492 KB |
testcase_04 | AC | 145 ms
41,316 KB |
testcase_05 | AC | 138 ms
41,052 KB |
testcase_06 | AC | 140 ms
41,236 KB |
testcase_07 | AC | 1,738 ms
81,024 KB |
testcase_08 | AC | 1,231 ms
66,064 KB |
testcase_09 | AC | 1,721 ms
80,032 KB |
testcase_10 | AC | 1,308 ms
70,932 KB |
testcase_11 | AC | 1,585 ms
74,708 KB |
testcase_12 | AC | 1,877 ms
85,204 KB |
testcase_13 | AC | 1,840 ms
85,252 KB |
testcase_14 | AC | 1,793 ms
84,776 KB |
testcase_15 | AC | 1,764 ms
84,516 KB |
testcase_16 | AC | 1,785 ms
84,568 KB |
testcase_17 | AC | 1,800 ms
84,880 KB |
testcase_18 | AC | 1,889 ms
84,116 KB |
testcase_19 | AC | 1,791 ms
85,152 KB |
testcase_20 | AC | 1,850 ms
85,876 KB |
testcase_21 | AC | 1,838 ms
82,688 KB |
testcase_22 | AC | 1,708 ms
88,184 KB |
testcase_23 | AC | 1,690 ms
88,668 KB |
testcase_24 | AC | 1,688 ms
101,936 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); List<Edge> edges = new ArrayList<>(); for(int i = 0 ; i < n - 1 ; i++){ int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; Edge edge = new Edge(a , b); edges.add(edge); } Graph graph = new Graph(edges , n); int[] ansArr = new int[n]; boolean[] seen = new boolean[n]; int ans = 0; ansArr[0] = dfs(graph , 0 , seen , ans); seen = new boolean[n]; seen[0] = true; ansArr = dfs(graph , 0 , seen , ansArr); for(int i = 0 ; i < n ; i++){ System.out.println(ansArr[i]); } } private static int dfs(Graph graph , int v , boolean[] seen , int ans){ seen[v] = true; for(Edge edge : graph.getEdgsList(v)){ int next_v = edge.getTo(); if(seen[next_v]){ continue; } if(next_v < v){ ans++; } ans = dfs(graph , next_v , seen , ans); } return ans; } private static int[] dfs(Graph graph , int v , boolean[] seen , int[] ansArr){ seen[v] = true; for(Edge edge : graph.getEdgsList(v)){ int next_v = edge.getTo(); if(seen[next_v]){ continue; } if(next_v > v){ ansArr[next_v] = ansArr[v] + 1; }else{ ansArr[next_v] = ansArr[v] - 1; } ansArr = dfs(graph , next_v , seen , ansArr); } return ansArr; } } //グラフのエッジ(辺)を格納するクラス class Edge { private int from, to; /**コンストラクタ * @param : from 頂点 * @param : to つながっている頂点 */ Edge(int from, int to) { this.from = from; this.to = to; } public int getFrom(){ return from; } public int getTo(){ return to; } public void setFrom(int from){ this.from = from; } public void setTo(int to){ this.to = to; } } //無向グラフクラス class Graph { //隣接リストを表すリストのリスト(ある頂点が、どの頂点とつながっているかを保持するリスト) Map<Integer , List<Edge>> edgeMap = new HashMap<>(); /**コンストラクタ * @param edges : 辺 * @param n : 頂点の個数 * */ Graph(List<Edge> edges, int n) { for (int i = 0; i < n; i++) { edgeMap.put(i ,new ArrayList<>()); } //無向グラフにエッジを追加します for (Edge edge: edges) { int from = edge.getFrom(); int to = edge.getTo(); List<Edge> tmp1 = edgeMap.get(from); tmp1.add(edge); edgeMap.put(from , tmp1); List<Edge> tmp2 = edgeMap.get(to); Edge tmpEdge = new Edge(to , from); tmp2.add(tmpEdge); edgeMap.put(to , tmp2); } } public int size() { return edgeMap.size(); } public List<Edge> getEdgsList(int vNum) { return edgeMap.get(vNum); } }