結果
問題 | No.583 鉄道同好会 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2017-10-27 23:07:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 985 ms / 2,000 ms |
コード長 | 1,374 bytes |
コンパイル時間 | 3,000 ms |
コンパイル使用メモリ | 77,932 KB |
実行使用メモリ | 68,592 KB |
最終ジャッジ日時 | 2024-11-21 23:02:18 |
合計ジャッジ時間 | 11,007 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
41,260 KB |
testcase_01 | AC | 127 ms
41,084 KB |
testcase_02 | AC | 117 ms
40,268 KB |
testcase_03 | AC | 127 ms
41,676 KB |
testcase_04 | AC | 118 ms
40,700 KB |
testcase_05 | AC | 126 ms
41,392 KB |
testcase_06 | AC | 121 ms
41,336 KB |
testcase_07 | AC | 130 ms
41,368 KB |
testcase_08 | AC | 134 ms
41,296 KB |
testcase_09 | AC | 138 ms
41,316 KB |
testcase_10 | AC | 179 ms
42,076 KB |
testcase_11 | AC | 444 ms
47,624 KB |
testcase_12 | AC | 591 ms
50,196 KB |
testcase_13 | AC | 554 ms
50,176 KB |
testcase_14 | AC | 539 ms
49,568 KB |
testcase_15 | AC | 632 ms
50,656 KB |
testcase_16 | AC | 825 ms
57,672 KB |
testcase_17 | AC | 883 ms
60,024 KB |
testcase_18 | AC | 985 ms
68,592 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(); } }