結果
問題 | No.583 鉄道同好会 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2017-10-27 23:07:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,108 ms / 2,000 ms |
コード長 | 1,374 bytes |
コンパイル時間 | 2,290 ms |
コンパイル使用メモリ | 78,628 KB |
実行使用メモリ | 66,828 KB |
最終ジャッジ日時 | 2024-05-01 17:34:27 |
合計ジャッジ時間 | 10,788 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,520 KB |
testcase_01 | AC | 134 ms
41,264 KB |
testcase_02 | AC | 138 ms
41,360 KB |
testcase_03 | AC | 136 ms
41,616 KB |
testcase_04 | AC | 141 ms
41,052 KB |
testcase_05 | AC | 141 ms
41,056 KB |
testcase_06 | AC | 140 ms
41,292 KB |
testcase_07 | AC | 148 ms
41,452 KB |
testcase_08 | AC | 140 ms
41,280 KB |
testcase_09 | AC | 143 ms
41,472 KB |
testcase_10 | AC | 187 ms
41,728 KB |
testcase_11 | AC | 537 ms
49,124 KB |
testcase_12 | AC | 619 ms
49,856 KB |
testcase_13 | AC | 606 ms
49,940 KB |
testcase_14 | AC | 620 ms
49,684 KB |
testcase_15 | AC | 671 ms
50,736 KB |
testcase_16 | AC | 869 ms
57,572 KB |
testcase_17 | AC | 965 ms
59,792 KB |
testcase_18 | AC | 1,108 ms
66,828 KB |
ソースコード
import java.util.*; class Main { ArrayList<Integer>[] graph; @SuppressWarnings("unchecked") Main() { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); this.graph = new ArrayList[n]; for (int i = 0; i < n; ++i) { this.graph[i] = new ArrayList(); } int m = scan.nextInt(); for (int i = 0; i < m; ++i) { int sa = scan.nextInt(); int sb = scan.nextInt(); this.graph[sa].add(sb); this.graph[sb].add(sa); } int numberOfOddVertices = 0; for (int i = 0; i < n; ++i) { if (graph[i].size() % 2 != 0) { numberOfOddVertices += 1; } } if (numberOfOddVertices > 2) { System.out.println("NO"); return; } // Henga renketu ka douka siraberu int start = 0; for (int i = 0; i < n; ++i) { if (graph[i].size() >= 1) { start = i; break; } } boolean[] visited = new boolean[n]; Queue<Integer> queue = new ArrayDeque(); queue.add(start); while (queue.size() >= 1) { int vertex = queue.poll(); if (visited[vertex]) { continue; } visited[vertex] = true; for (int target: this.graph[vertex]) { queue.add(target); } } for (int i = 0; i < n; ++i) { if (graph[i].size() >= 1 && !visited[i]) { System.out.println("NO"); return; } } System.out.println("YES"); } public static void main(String[] args) { new Main(); } }